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 |
|---|---|---|---|---|
.event-wrapper {
position: relative;
}
button[id^=delete-event] {
position: absolute;
right: 0;
top: -90px;
background-color: #ff3d3d;
font-size: 72px;
color: honeydew;
border: solid 8px white;
border-bottom: none;
padding: 5px 25px;
border-radius: 25px 25px 0 0;
}
.event {
position: relative;
width: 85vw;
background-color: firebrick;
padding: 15px;
font-size: 3rem;
color: honeydew;
text-align: center;
border-radius: 30px;
}
.event h2 {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
display: inline-block;
}
.event .date {
font-size: 2rem;
}
.event .items {
margin-top: 50px;
}
.event .items h3 {
text-align: center;
font-size: 36px;
}
.event ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 10px;
}
.event li {
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;
background-color: rgba(255, 255, 255, 0.2);
list-style-type: none;
padding: 20px;
border-radius: 30px;
}
.event li .price {
background-color: rgba(255, 255, 255, 0.4);
padding: inherit;
border-radius: inherit;
}
[id^=new-name],
[id^=new-price] {
font-size: inherit;
border: none;
line-height: 1.5em;
padding: 15px;
border-radius: 30px;
color: honeydew;
}
[id^=new-name]::-webkit-input-placeholder,
[id^=new-price]::-webkit-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::-moz-placeholder,
[id^=new-price]::-moz-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]:-ms-input-placeholder,
[id^=new-price]:-ms-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::-ms-input-placeholder,
[id^=new-price]::-ms-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::placeholder,
[id^=new-price]::placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name] {
background-color: transparent;
border: none;
outline: none;
width: 100%;
}
[id^=new-price] {
width: 28%;
}
.item-wrapper {
width: 60%;
display: grid;
grid-template-columns: auto 1fr;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 9999px;
background-color: rgba(255, 255, 255, 0.5);
padding: 0 5px;
}
.item-wrapper [id^=add-item] {
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 30px;
font-weight: bold;
background-color: white;
border: solid 2px #a7a7a7;
-webkit-transition: background-color 300ms;
transition: background-color 300ms;
}
.item-wrapper [id^=add-item]:hover {
background-color: #e6e6e6;
}
button[id^=delete-item-] {
-webkit-transition: left 300ms, background-color 250ms;
transition: left 300ms, background-color 250ms;
position: absolute;
left: -30px;
background-color: #f26e89;
color: honeydew;
width: 30px;
height: 100%;
border-radius: 0 50px 50px 0;
border: none;
font-size: 20px;
z-index: 3;
}
.item-list {
position: relative;
overflow: hidden;
}
.item-list:hover button[id^=delete-item-] {
left: 0;
}
.item-list:hover button[id^=delete-item-]:hover {
background-color: #f37c94;
}
.item-list:hover label {
left: 0;
}
label,
button[id^=delete-item-] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[dir=ltr] label {
text-align: right;
}
label:dir(ltr) {
text-align: right;
}
[dir=rtl] label {
text-align: left;
}
label:dir(rtl) {
text-align: left;
}
label {
position: absolute;
left: -65px;
display: grid;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 0 50px 50px 0;
background-color: lightsalmon;
height: 100%;
width: 65px;
text-align: end;
padding-right: 5px;
-webkit-transition: left 300ms 100ms, background-color 200ms;
transition: left 300ms 100ms, background-color 200ms;
z-index: 2;
cursor: pointer;
}
label:hover {
background-color: #ffab89;
}
.include + .item::before {
content: "";
top: 50%;
left: 0;
position: absolute;
height: 2px;
width: 0%;
background-color: rgba(255, 255, 255, 0.8);
-webkit-transition: width 300ms;
transition: width 300ms;
}
.include:not(:checked) + .item::before {
width: 100%;
}
.total {
padding: 10px;
border-radius: 15px;
font-size: 42px;
margin: auto;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
background-color: #77de77;
-webkit-transition: background-color 350ms;
transition: background-color 350ms;
}
.total .value {
color: green;
}
.total .budget {
font-size: inherit;
color: #646464;
}
.total.over-budget {
background-color: #ff8a8a;
}
.total.over-budget .value {
color: red;
}
@media screen and (min-width: 1025px) {
button[id^=delete-event-] {
display: grid;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
place-content: center;
top: 10px;
right: 10px;
padding: 0;
width: 60px;
height: 60px;
font-size: 27px;
border-radius: 50%;
border: solid 5px white;
z-index: 3;
-webkit-transition: background-color 300ms;
transition: background-color 300ms;
}
button[id^=delete-event-]:hover {
background-color: #ff7070;
}
.event {
width: 650px;
text-align: left;
z-index: 2;
/* .budget {*/
/* font-size: 30px;*/
/* }*/
}
.event h2 {
font-size: 45px;
margin: unset;
}
.event li {
padding: 10px;
font-size: 1.5rem;
}
.total {
font-size: 24px;
margin: unset;
}
} | public/assets/css/event.css | .event-wrapper {
position: relative;
}
button[id^=delete-event] {
position: absolute;
right: 0;
top: -90px;
background-color: #ff3d3d;
font-size: 72px;
color: honeydew;
border: solid 8px white;
border-bottom: none;
padding: 5px 25px;
border-radius: 25px 25px 0 0;
}
.event {
position: relative;
width: 85vw;
background-color: firebrick;
padding: 15px;
font-size: 3rem;
color: honeydew;
text-align: center;
border-radius: 30px;
}
.event h2 {
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
display: inline-block;
}
.event .date {
font-size: 2rem;
}
.event .items {
margin-top: 50px;
}
.event .items h3 {
text-align: center;
font-size: 36px;
}
.event ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
gap: 10px;
}
.event li {
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;
background-color: rgba(255, 255, 255, 0.2);
list-style-type: none;
padding: 20px;
border-radius: 30px;
}
.event li .price {
background-color: rgba(255, 255, 255, 0.4);
padding: inherit;
border-radius: inherit;
}
[id^=new-name],
[id^=new-price] {
font-size: inherit;
border: none;
line-height: 1.5em;
padding: 15px;
border-radius: 30px;
color: honeydew;
}
[id^=new-name]::-webkit-input-placeholder,
[id^=new-price]::-webkit-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::-moz-placeholder,
[id^=new-price]::-moz-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]:-ms-input-placeholder,
[id^=new-price]:-ms-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::-ms-input-placeholder,
[id^=new-price]::-ms-input-placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name]::placeholder,
[id^=new-price]::placeholder {
color: rgba(240, 255, 240, 0.75);
}
[id^=new-name] {
background-color: transparent;
border: none;
outline: none;
width: 100%;
}
[id^=new-price] {
width: 28%;
}
.item-wrapper {
width: 60%;
display: grid;
grid-template-columns: auto 1fr;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 9999px;
background-color: rgba(255, 255, 255, 0.5);
padding: 0 5px;
}
.item-wrapper [id^=add-item] {
border-radius: 50%;
width: 50px;
height: 50px;
font-size: 30px;
font-weight: bold;
background-color: white;
border: solid 2px #a7a7a7;
-webkit-transition: background-color 300ms;
transition: background-color 300ms;
}
.item-wrapper [id^=add-item]:hover {
background-color: #e6e6e6;
}
button[id^=delete-item-] {
-webkit-transition: left 300ms, background-color 250ms;
transition: left 300ms, background-color 250ms;
position: absolute;
left: -30px;
background-color: #f26e89;
color: honeydew;
width: 30px;
height: 100%;
border-radius: 0 50px 50px 0;
border: none;
font-size: 20px;
z-index: 3;
}
.item-list {
position: relative;
overflow: hidden;
}
.item-list:hover button[id^=delete-item-] {
left: 0;
}
.item-list:hover button[id^=delete-item-]:hover {
background-color: #f37c94;
}
.item-list:hover label {
left: 0;
}
label,
button[id^=delete-item-] {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
[dir=ltr] label {
text-align: right;
}
label:dir(ltr) {
text-align: right;
}
[dir=rtl] label {
text-align: left;
}
label:dir(rtl) {
text-align: left;
}
label {
position: absolute;
left: -65px;
display: grid;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 0 50px 50px 0;
background-color: lightsalmon;
height: 100%;
width: 65px;
text-align: end;
padding-right: 5px;
-webkit-transition: left 300ms 100ms, background-color 200ms;
transition: left 300ms 100ms, background-color 200ms;
z-index: 2;
cursor: pointer;
}
label:hover {
background-color: #ffab89;
}
.include + .item::before {
content: "";
top: 50%;
left: 0;
position: absolute;
height: 2px;
width: 0%;
background-color: rgba(255, 255, 255, 0.8);
-webkit-transition: width 300ms;
transition: width 300ms;
}
.include:not(:checked) + .item::before {
width: 100%;
}
.total {
padding: 10px;
border-radius: 15px;
font-size: 42px;
margin: auto;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
background-color: #77de77;
-webkit-transition: background-color 350ms;
transition: background-color 350ms;
}
.total .value {
color: green;
}
.total .budget {
font-size: inherit;
color: #646464;
}
.total.over-budget {
background-color: #ff8a8a;
}
.total.over-budget .value {
color: red;
}
@media screen and (min-width: 1025px) {
button[id^=delete-event-] {
display: grid;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
place-content: center;
top: 10px;
right: 10px;
padding: 0;
width: 60px;
height: 60px;
font-size: 27px;
border-radius: 50%;
border: solid 5px white;
z-index: 3;
-webkit-transition: background-color 300ms;
transition: background-color 300ms;
}
button[id^=delete-event-]:hover {
background-color: #ff7070;
}
.event {
width: 650px;
text-align: left;
z-index: 2;
/* .budget {*/
/* font-size: 30px;*/
/* }*/
}
.event h2 {
font-size: 45px;
margin: unset;
}
.event li {
padding: 10px;
font-size: 1.5rem;
}
.total {
font-size: 24px;
margin: unset;
}
} | 0.346762 | 0.055978 |
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Lato", sans-serif;
}
img {
max-width: 100%;
height: auto;
}
.header {
padding: 15px 0;
}
.navigation {
list-style: none;
padding: 0;
margin: 0;
}
.navigation-link {
text-decoration: none;
text-transform: uppercase;
color: #939699;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
letter-spacing: 0.5px;
}
button {
cursor: pointer;
}
.button {
padding: 10px 20px;
background: #4592ff;
border-radius: 20px;
border: none;
color: #fff;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
display: flex;
align-items: center;
}
.button-icon,
.button-price {
margin-right: 10px;
}
.button-icon {
margin-left: 10px;
}
.button-icon:last-child {
margin-right: 0;
}
.button-text {
}
.btn-danger {
background-color: tomato;
border-color: tomato;
display: block; /* inline-block;*/
margin-left: 10px; /*auto;*/
height: 40px;
}
}
.cart-count {
margin-left: 10px;
}
.show-goods .slider,
.show-goods .special-offers {
display: none;
}
.long-goods {
display: none;
}
.show-goods .long-goods {
display: block;
}
.slide {
padding-top: 90px;
padding-bottom: 110px;
min-height: 568px;
}
.slide-1 {
background: #b4d1e0 url("../img/slide-image-1.png") no-repeat top right 30%;
}
.slide-2 {
background: #b9e0b4 url("../img/slide-image-1.png") no-repeat top right 30%;
}
.label {
background-color: #3dc47e;
border-radius: 3px;
padding: 5px 12px;
color: #fff;
font-size: 12px;
line-height: 15px;
}
.slide-title {
color: #262d33;
font-size: 55px;
line-height: 70px;
font-family: "Roboto Slab", serif;
margin-top: 20px;
margin-bottom: 15px;
}
.slide-description {
font-size: 18px;
line-height: 30px;
color: #4b5157;
max-width: 335px;
margin-bottom: 40px;
}
.slider {
position: relative;
}
.slider-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
z-index: 9;
}
.slider-button {
background-color: transparent;
border: none;
cursor: pointer;
}
.card {
min-height: 370px;
border-radius: 10px;
padding-top: 60px;
padding-left: 46px;
padding-right: 46px;
padding-bottom: 80px;
}
.card-1 {
background: #e3e2e3 url("../img/card-image-1.jpg") no-repeat top right;
background-size: cover;
}
.card-2 {
background: #000 url("../img/card-image-2.jpg") no-repeat top right;
background-size: cover;
}
.card-3 {
padding-top: 35px;
background: #ccd5e6 url("../img/card-image-3.png") no-repeat top right 10%;
background-size: contain;
}
.card-4 {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-top: 35px;
padding-left: 25px;
background: #ff4f52 url("../img/card-image-4.png") no-repeat top right;
background-size: contain;
}
.goods-card-btn {
display: block;
width: 100px;
margin: auto auto 0;
}
.goods-card-btn .button-price {
margin: 0;
}
.card-title {
color: #262d33;
font-size: 25px;
line-height: 30px;
font-family: "Roboto Slab", serif;
max-width: 222px;
margin: 0;
}
.card-title.large {
max-width: 420px;
font-size: 40px;
line-height: 50px;
margin-top: 30px;
margin-bottom: 20px;
}
.card-text {
max-width: 176px;
color: #4b5157;
font-size: 14px;
line-height: 20px;
margin-bottom: 25px;
}
.card-text.large {
max-width: 320px;
}
.card-price {
color: #ffffff;
font-size: 14px;
line-height: 20px;
font-weight: 900;
}
.text-light {
color: #fff;
}
.section-title {
font-family: "Roboto Slab", serif;
font-size: 25px;
line-height: 30px;
color: #262d33;
}
.more {
text-decoration: none;
color: #262d33;
font-weight: 900;
font-size: 14px;
line-height: 20px;
padding: 10px;
}
.goods-card {
display: flex;
flex-direction: column;
position: relative;
text-align: center;
padding: 30px 35px 35px;
min-height: 440px;
}
.goods-card .label {
position: absolute;
left: 18px;
top: 18px;
}
.goods-title {
margin-top: 15px;
margin-bottom: 5px;
color: #262d33;
font-size: 16px;
line-height: 25px;
font-family: "Roboto Slab", serif;
}
.goods-image {
object-fit: contain;
height: 190px;
}
.goods-description {
color: #4b5157;
font-size: 14px;
line-height: 20px;
}
.goods-price {
color: #262d33;
margin-top: 30px;
font-size: 18px;
line-height: 30px;
font-weight: 900;
}
.button-four {
margin-top: auto;
}
.footer-menu {
list-style-type: none;
margin: 0;
padding: 0;
}
.footer {
background: #8f79d4;
padding-top: 45px;
padding-bottom: 40px;
color: #fff;
}
.footer-menu-item:not(:last-child) {
margin-right: 40px;
}
.footer-menu-link {
color: #fff;
text-decoration: none;
font-weight: 900;
font-size: 14px;
line-height: 20px;
}
.social-link {
text-decoration: none;
margin-left: 15px;
}
.footer-text {
color: #e7d9ff;
font-size: 14px;
line-height: 20px;
}
.footer-line {
opacity: 0.5;
}
.top-link {
text-decoration: none;
color: #fff;
}
.top-link-text {
margin-right: 15px;
}
.payment-logo {
vertical-align: middle;
margin-right: 25px;
}
.overlay {
display: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
background-color: rgba(0, 0, 0, 0.3);
}
.overlay.show {
display: flex;
}
.modal {
background-color: #e0e0ff;
min-width: 600px;
max-height: 400px;
padding: 30px;
overflow: scroll;
position: relative;
}
.modal-header {
display: flex;
justify-content: space-between;
}
.modal-title {
margin-top: 0;
margin-bottom: 15px;
}
.modal-close {
position: absolute;
background-color: transparent;
right: 15px;
top: 15px;
font-size: 24px;
border: none;
}
.modal-form {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.modal-input {
margin-right: 30px;
height: 40px;
padding: 10px;
border-radius: 20px;
border-style: none;
margin-bottom: 30px;
}
.cart-table {
border-collapse: collapse;
min-width: 540px;
margin-bottom: 15px;
}
.cart-table th,
.cart-table td {
text-align: left;
border: 1px solid black;
}
.cart-buy {
background-color: #28a745;
border-color: #28a745;
display: block;
margin-left: auto;
height: 40px;
}
.mw-160 {
max-width: 160px;
}
.col-price {
width: 100px;
}
.col-minus {
width: 15px;
}
.col-qty {
width: 15px;
}
.col-plus {
width: 15px;
}
.col-total-price {
width: 120px;
}
.col-delete {
width: 5px;
}
@media (max-width: 1200px) {
.slide-1 {
background-size: cover;
}
.card-3 {
background-size: cover;
}
}
@media (max-width: 992px) {
.slider-nav {
display: none;
}
.modal {
min-width: 400px;
max-height: 300px;
padding: 20px;
}
}
@media (max-width: 576px) {
.slide-title {
font-size: 36px;
line-height: 1.4;
margin-bottom: 0;
}
.card {
background-position: left top;
}
.card-4 {
background-position: right top;
}
.card {
padding: 30px;
min-height: 300px;
}
.modal {
min-width: 300px;
max-height: 400px;
padding: 20px;
}
} | projects/willberis/css/style.css | * {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Lato", sans-serif;
}
img {
max-width: 100%;
height: auto;
}
.header {
padding: 15px 0;
}
.navigation {
list-style: none;
padding: 0;
margin: 0;
}
.navigation-link {
text-decoration: none;
text-transform: uppercase;
color: #939699;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
letter-spacing: 0.5px;
}
button {
cursor: pointer;
}
.button {
padding: 10px 20px;
background: #4592ff;
border-radius: 20px;
border: none;
color: #fff;
font-family: "Lato", sans-serif;
font-style: normal;
font-weight: 900;
font-size: 14px;
line-height: 20px;
display: flex;
align-items: center;
}
.button-icon,
.button-price {
margin-right: 10px;
}
.button-icon {
margin-left: 10px;
}
.button-icon:last-child {
margin-right: 0;
}
.button-text {
}
.btn-danger {
background-color: tomato;
border-color: tomato;
display: block; /* inline-block;*/
margin-left: 10px; /*auto;*/
height: 40px;
}
}
.cart-count {
margin-left: 10px;
}
.show-goods .slider,
.show-goods .special-offers {
display: none;
}
.long-goods {
display: none;
}
.show-goods .long-goods {
display: block;
}
.slide {
padding-top: 90px;
padding-bottom: 110px;
min-height: 568px;
}
.slide-1 {
background: #b4d1e0 url("../img/slide-image-1.png") no-repeat top right 30%;
}
.slide-2 {
background: #b9e0b4 url("../img/slide-image-1.png") no-repeat top right 30%;
}
.label {
background-color: #3dc47e;
border-radius: 3px;
padding: 5px 12px;
color: #fff;
font-size: 12px;
line-height: 15px;
}
.slide-title {
color: #262d33;
font-size: 55px;
line-height: 70px;
font-family: "Roboto Slab", serif;
margin-top: 20px;
margin-bottom: 15px;
}
.slide-description {
font-size: 18px;
line-height: 30px;
color: #4b5157;
max-width: 335px;
margin-bottom: 40px;
}
.slider {
position: relative;
}
.slider-nav {
position: absolute;
top: 50%;
width: 100%;
transform: translateY(-50%);
z-index: 9;
}
.slider-button {
background-color: transparent;
border: none;
cursor: pointer;
}
.card {
min-height: 370px;
border-radius: 10px;
padding-top: 60px;
padding-left: 46px;
padding-right: 46px;
padding-bottom: 80px;
}
.card-1 {
background: #e3e2e3 url("../img/card-image-1.jpg") no-repeat top right;
background-size: cover;
}
.card-2 {
background: #000 url("../img/card-image-2.jpg") no-repeat top right;
background-size: cover;
}
.card-3 {
padding-top: 35px;
background: #ccd5e6 url("../img/card-image-3.png") no-repeat top right 10%;
background-size: contain;
}
.card-4 {
display: flex;
flex-direction: column;
align-items: flex-start;
padding-top: 35px;
padding-left: 25px;
background: #ff4f52 url("../img/card-image-4.png") no-repeat top right;
background-size: contain;
}
.goods-card-btn {
display: block;
width: 100px;
margin: auto auto 0;
}
.goods-card-btn .button-price {
margin: 0;
}
.card-title {
color: #262d33;
font-size: 25px;
line-height: 30px;
font-family: "Roboto Slab", serif;
max-width: 222px;
margin: 0;
}
.card-title.large {
max-width: 420px;
font-size: 40px;
line-height: 50px;
margin-top: 30px;
margin-bottom: 20px;
}
.card-text {
max-width: 176px;
color: #4b5157;
font-size: 14px;
line-height: 20px;
margin-bottom: 25px;
}
.card-text.large {
max-width: 320px;
}
.card-price {
color: #ffffff;
font-size: 14px;
line-height: 20px;
font-weight: 900;
}
.text-light {
color: #fff;
}
.section-title {
font-family: "Roboto Slab", serif;
font-size: 25px;
line-height: 30px;
color: #262d33;
}
.more {
text-decoration: none;
color: #262d33;
font-weight: 900;
font-size: 14px;
line-height: 20px;
padding: 10px;
}
.goods-card {
display: flex;
flex-direction: column;
position: relative;
text-align: center;
padding: 30px 35px 35px;
min-height: 440px;
}
.goods-card .label {
position: absolute;
left: 18px;
top: 18px;
}
.goods-title {
margin-top: 15px;
margin-bottom: 5px;
color: #262d33;
font-size: 16px;
line-height: 25px;
font-family: "Roboto Slab", serif;
}
.goods-image {
object-fit: contain;
height: 190px;
}
.goods-description {
color: #4b5157;
font-size: 14px;
line-height: 20px;
}
.goods-price {
color: #262d33;
margin-top: 30px;
font-size: 18px;
line-height: 30px;
font-weight: 900;
}
.button-four {
margin-top: auto;
}
.footer-menu {
list-style-type: none;
margin: 0;
padding: 0;
}
.footer {
background: #8f79d4;
padding-top: 45px;
padding-bottom: 40px;
color: #fff;
}
.footer-menu-item:not(:last-child) {
margin-right: 40px;
}
.footer-menu-link {
color: #fff;
text-decoration: none;
font-weight: 900;
font-size: 14px;
line-height: 20px;
}
.social-link {
text-decoration: none;
margin-left: 15px;
}
.footer-text {
color: #e7d9ff;
font-size: 14px;
line-height: 20px;
}
.footer-line {
opacity: 0.5;
}
.top-link {
text-decoration: none;
color: #fff;
}
.top-link-text {
margin-right: 15px;
}
.payment-logo {
vertical-align: middle;
margin-right: 25px;
}
.overlay {
display: none;
justify-content: center;
align-items: center;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
background-color: rgba(0, 0, 0, 0.3);
}
.overlay.show {
display: flex;
}
.modal {
background-color: #e0e0ff;
min-width: 600px;
max-height: 400px;
padding: 30px;
overflow: scroll;
position: relative;
}
.modal-header {
display: flex;
justify-content: space-between;
}
.modal-title {
margin-top: 0;
margin-bottom: 15px;
}
.modal-close {
position: absolute;
background-color: transparent;
right: 15px;
top: 15px;
font-size: 24px;
border: none;
}
.modal-form {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.modal-input {
margin-right: 30px;
height: 40px;
padding: 10px;
border-radius: 20px;
border-style: none;
margin-bottom: 30px;
}
.cart-table {
border-collapse: collapse;
min-width: 540px;
margin-bottom: 15px;
}
.cart-table th,
.cart-table td {
text-align: left;
border: 1px solid black;
}
.cart-buy {
background-color: #28a745;
border-color: #28a745;
display: block;
margin-left: auto;
height: 40px;
}
.mw-160 {
max-width: 160px;
}
.col-price {
width: 100px;
}
.col-minus {
width: 15px;
}
.col-qty {
width: 15px;
}
.col-plus {
width: 15px;
}
.col-total-price {
width: 120px;
}
.col-delete {
width: 5px;
}
@media (max-width: 1200px) {
.slide-1 {
background-size: cover;
}
.card-3 {
background-size: cover;
}
}
@media (max-width: 992px) {
.slider-nav {
display: none;
}
.modal {
min-width: 400px;
max-height: 300px;
padding: 20px;
}
}
@media (max-width: 576px) {
.slide-title {
font-size: 36px;
line-height: 1.4;
margin-bottom: 0;
}
.card {
background-position: left top;
}
.card-4 {
background-position: right top;
}
.card {
padding: 30px;
min-height: 300px;
}
.modal {
min-width: 300px;
max-height: 400px;
padding: 20px;
}
} | 0.39946 | 0.093678 |
.healthy {
color: #26ae61;
background: #d5ffe7;
}
.pending {
color: #635a05;
background: #f0e797;
}
.healthy,.pending {
font-size: 11px;
font-weight: 500;
display: inline-block;
padding: 5px 15px;
border-radius: 50px;
cursor: pointer;
text-transform: uppercase;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
button,
a {
cursor: pointer;
}
.project-dashbox-wrapper {
padding: 0px 0px 0px 0px !important ;
}
.app-dashcontent {
display: flex;
overflow: hidden;
padding: 16px 24px 24px 0;
}
.projects-dashsection {
flex: 2;
background-color: #fff;
border-radius: 32px;
padding: 0px 32px 0 32px;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
margin: 10px;
}
.messages-dashsection {
padding-bottom: 32px;
background-color: #fff;
margin-left: 24px;
flex: 1;
width: 100%;
border-radius: 30px;
overflow: auto;
margin: 10px;
transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
}
.projects-section-dashheader {
position: sticky;
top: 0;
z-index: 1;
padding: 32px 24px 0 24px;
background-color: #fff;
}
.message-dashbox {
border-top: 1px solid #e9ebf0;
padding: 16px;
display: flex;
align-items: flex-start;
width: 100%;
}
.message-dashheader {
/*display: flex;*/
align-items: center;
justify-content: space-between;
width: 100%;
}
.message-dashcontent {
/*padding-left: 16px;*/
width: 100%;
}
.dashbox-content-header {
font-size: 20px;
line-height: 24px;
font-weight: 700;
opacity: 1;
}
.dashbox-content-subheader {
font-size: 16px;
line-height: 24px;
opacity: 0.8;
}
.project-dashbox {
/* padding: 0px 0px 0px 5px !important ; */
min-height: 125px;
margin: 5px;
border-radius : 5px;
padding : 10px !important;
height: auto;
}
@media screen and (max-width: 980px) {
.project-dashboxes.jsGridView .project-dashbox-wrapper {
width: 50%;
}
}
@media screen and (max-width: 880px) {
.messages-dashsection {
transform: translateX(100%);
position: absolute;
opacity: 0;
top: 0;
z-index: 2;
height: 100%;
width: 100%;
}
}
@media screen and (max-width: 520px) {
.projects-dashsection {
overflow: auto;
}
.project-dashboxes {
overflow-y: visible;
}
.app-dashcontent {
padding: 16px 12px 24px 12px;
}
.project-dashboxes.jsGridView .project-dashbox-wrapper {
width: 100%;
}
.projects-dashsection {
padding: 24px 16px 0 16px;
}
.dashbox-content-header {
font-size: 12px;
line-height: 16px;
}
.dashbox-content-subheader {
font-size: 12px;
line-height: 16px;
}
}
.custom-btn {
width: 100%;
height: auto;
border-radius: 5px;
padding: 10px 0px;
font-weight: 600;
background-color : #47a0cdad;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
}
.btn-16 {
border: none;
color: #212529;
}
.btn-16:after {
position: absolute;
content: "";
width: 100%;
height: auto;
top: 0;
left: 0;
z-index: -1;
box-shadow:
-7px -7px 20px 0px #fff9,
-4px -4px 5px 0px #fff9,
7px 7px 20px 0px #0002,
4px 4px 5px 0px #0001;
}
.btn-16:hover {
color: #000;
}
.btn-16:hover:after {
left: auto;
right: 0;
width: 100%;
}
.btn-16:active {
top: 2px;
} | public/assets/admin/css/style.css | .healthy {
color: #26ae61;
background: #d5ffe7;
}
.pending {
color: #635a05;
background: #f0e797;
}
.healthy,.pending {
font-size: 11px;
font-weight: 500;
display: inline-block;
padding: 5px 15px;
border-radius: 50px;
cursor: pointer;
text-transform: uppercase;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
-o-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
button,
a {
cursor: pointer;
}
.project-dashbox-wrapper {
padding: 0px 0px 0px 0px !important ;
}
.app-dashcontent {
display: flex;
overflow: hidden;
padding: 16px 24px 24px 0;
}
.projects-dashsection {
flex: 2;
background-color: #fff;
border-radius: 32px;
padding: 0px 32px 0 32px;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
margin: 10px;
}
.messages-dashsection {
padding-bottom: 32px;
background-color: #fff;
margin-left: 24px;
flex: 1;
width: 100%;
border-radius: 30px;
overflow: auto;
margin: 10px;
transition: all 300ms cubic-bezier(0.19, 1, 0.56, 1);
}
.projects-section-dashheader {
position: sticky;
top: 0;
z-index: 1;
padding: 32px 24px 0 24px;
background-color: #fff;
}
.message-dashbox {
border-top: 1px solid #e9ebf0;
padding: 16px;
display: flex;
align-items: flex-start;
width: 100%;
}
.message-dashheader {
/*display: flex;*/
align-items: center;
justify-content: space-between;
width: 100%;
}
.message-dashcontent {
/*padding-left: 16px;*/
width: 100%;
}
.dashbox-content-header {
font-size: 20px;
line-height: 24px;
font-weight: 700;
opacity: 1;
}
.dashbox-content-subheader {
font-size: 16px;
line-height: 24px;
opacity: 0.8;
}
.project-dashbox {
/* padding: 0px 0px 0px 5px !important ; */
min-height: 125px;
margin: 5px;
border-radius : 5px;
padding : 10px !important;
height: auto;
}
@media screen and (max-width: 980px) {
.project-dashboxes.jsGridView .project-dashbox-wrapper {
width: 50%;
}
}
@media screen and (max-width: 880px) {
.messages-dashsection {
transform: translateX(100%);
position: absolute;
opacity: 0;
top: 0;
z-index: 2;
height: 100%;
width: 100%;
}
}
@media screen and (max-width: 520px) {
.projects-dashsection {
overflow: auto;
}
.project-dashboxes {
overflow-y: visible;
}
.app-dashcontent {
padding: 16px 12px 24px 12px;
}
.project-dashboxes.jsGridView .project-dashbox-wrapper {
width: 100%;
}
.projects-dashsection {
padding: 24px 16px 0 16px;
}
.dashbox-content-header {
font-size: 12px;
line-height: 16px;
}
.dashbox-content-subheader {
font-size: 12px;
line-height: 16px;
}
}
.custom-btn {
width: 100%;
height: auto;
border-radius: 5px;
padding: 10px 0px;
font-weight: 600;
background-color : #47a0cdad;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
display: inline-block;
outline: none;
}
.btn-16 {
border: none;
color: #212529;
}
.btn-16:after {
position: absolute;
content: "";
width: 100%;
height: auto;
top: 0;
left: 0;
z-index: -1;
box-shadow:
-7px -7px 20px 0px #fff9,
-4px -4px 5px 0px #fff9,
7px 7px 20px 0px #0002,
4px 4px 5px 0px #0001;
}
.btn-16:hover {
color: #000;
}
.btn-16:hover:after {
left: auto;
right: 0;
width: 100%;
}
.btn-16:active {
top: 2px;
} | 0.402862 | 0.109849 |
*{
padding:0px;
margin: 0px;
}
body{
width: 100%;
max-width: 900px;
margin: 0 0 0 25%;
}
hr{
padding: 5px 0px 5px 0px;
background-color: grey;
opacity: .6;
width: 100%;
}
.head-wrapper{
float: left;
margin: 5px 0px 25px 0px;
}
h1, .headers{
font-family: "Pacifico";
float: left;
position:relative;
top: 10px;
right:5px;
}
h6{
font-size: 9px;
position: relative;
float: left;
font-family: Arial, Helvetica, sans-serif;
right: 70px;
top: 50px;
text-transform: capitalize;
}
#delish{
top:25px;
}
#logo{
float: left;
top: 50px;
margin: 15px 15px 0px 0px
}
.social-media{
position: relative;
float: right;
top: 30px;
}
#rss{
margin-left: 10px;
}
.print{
position: relative;
float: right;
top: 100px;
font-size: 12px;
color: lightgray;
font-family: Arial, Helvetica, sans-serif;
}
.pizza-wrapper{
font-size: 24px;
font-family: Arial, Helvetica, sans-serif;
margin: 70px 0 30px 0;
transform: scale(1, 1.5);
}
h2{
font-weight:bolder;
}
h3{
text-transform: uppercase;
font-size: 11px;
color: lightgray;
}
p{
margin: 25px 0 25px 0;
font-size: 20px;
line-height: 1.4em;
color: black;
text-indent: 1.6em;
font-family: 'Times New Roman', Times, serif;
}
.list-wrapper{
position: relative;
line-height: 1.55em;
width: 90%;
margin-left: 10%;
font-size: 20px;
bottom: 272px;
font-family: 'Ubuntu', sans-serif;
color:grey;
}
#list-text-left{
position: relative;
float: left;
font-family: 'Ubuntu', sans-serif;
}
#list-text-right{
float:right;
position: relative;
width: 50%;
}
footer{
position: relative;
bottom: 200px;
}
.button{
float: right;
padding: 12px 25px 12px 25px;
text-align: center;
color: white;
background-color: rgb(221, 71, 2);
}
.vanessa-wrapper{
position: relative;
display: inline-block;
margin: 30px 0 10px 0;
}
#person{
float: left;
}
#name{
width: 500px;
display: block;
float: left;
font-size: 28px;
left: 100px;
margin: 0 0 10px 10px;
text-indent: 0;
}
#about-me{
width: 600px;
display: block;
float: left;
font-size: 18px;
margin: 0 0 0 10px;
text-indent: 0;
}
#sm-logo{
position: absolute;
margin: 15% 0 0 50%;
}
#copyright{
width: 275px;
text-align: center;
position: relative;
margin: 20% 0 0 36%;
font-size: 14px;
} | css/style.css | *{
padding:0px;
margin: 0px;
}
body{
width: 100%;
max-width: 900px;
margin: 0 0 0 25%;
}
hr{
padding: 5px 0px 5px 0px;
background-color: grey;
opacity: .6;
width: 100%;
}
.head-wrapper{
float: left;
margin: 5px 0px 25px 0px;
}
h1, .headers{
font-family: "Pacifico";
float: left;
position:relative;
top: 10px;
right:5px;
}
h6{
font-size: 9px;
position: relative;
float: left;
font-family: Arial, Helvetica, sans-serif;
right: 70px;
top: 50px;
text-transform: capitalize;
}
#delish{
top:25px;
}
#logo{
float: left;
top: 50px;
margin: 15px 15px 0px 0px
}
.social-media{
position: relative;
float: right;
top: 30px;
}
#rss{
margin-left: 10px;
}
.print{
position: relative;
float: right;
top: 100px;
font-size: 12px;
color: lightgray;
font-family: Arial, Helvetica, sans-serif;
}
.pizza-wrapper{
font-size: 24px;
font-family: Arial, Helvetica, sans-serif;
margin: 70px 0 30px 0;
transform: scale(1, 1.5);
}
h2{
font-weight:bolder;
}
h3{
text-transform: uppercase;
font-size: 11px;
color: lightgray;
}
p{
margin: 25px 0 25px 0;
font-size: 20px;
line-height: 1.4em;
color: black;
text-indent: 1.6em;
font-family: 'Times New Roman', Times, serif;
}
.list-wrapper{
position: relative;
line-height: 1.55em;
width: 90%;
margin-left: 10%;
font-size: 20px;
bottom: 272px;
font-family: 'Ubuntu', sans-serif;
color:grey;
}
#list-text-left{
position: relative;
float: left;
font-family: 'Ubuntu', sans-serif;
}
#list-text-right{
float:right;
position: relative;
width: 50%;
}
footer{
position: relative;
bottom: 200px;
}
.button{
float: right;
padding: 12px 25px 12px 25px;
text-align: center;
color: white;
background-color: rgb(221, 71, 2);
}
.vanessa-wrapper{
position: relative;
display: inline-block;
margin: 30px 0 10px 0;
}
#person{
float: left;
}
#name{
width: 500px;
display: block;
float: left;
font-size: 28px;
left: 100px;
margin: 0 0 10px 10px;
text-indent: 0;
}
#about-me{
width: 600px;
display: block;
float: left;
font-size: 18px;
margin: 0 0 0 10px;
text-indent: 0;
}
#sm-logo{
position: absolute;
margin: 15% 0 0 50%;
}
#copyright{
width: 275px;
text-align: center;
position: relative;
margin: 20% 0 0 36%;
font-size: 14px;
} | 0.292494 | 0.065815 |
@import url("~golden-layout/src/css/goldenlayout-dark-theme.css");
body {
background-color: #333 !important;
}
.navbar-inverse {
background-color: #333 !important;
}
.navbar-inverse .navbar-brand {
color: #aaa !important;
}
.nav.navbar-nav.navbar-left li:hover {
color: #ccc !important;
}
.nav.nav-tabs li a {
color: #eee !important;
background-color: #666 !important;
}
.nav.nav-tabs li:not(.active) a {
border-bottom: 1px solid #fff !important;
}
.nav.nav-tabs li.active a {
background-color: #666 !important;
}
.float-link {
color: #eee !important;
background-color: rgba(128, 128, 128, 0.5) !important;
}
.float-link:hover {
background-color: rgba(128, 128, 160, 0.5) !important;
}
.modal-header {
color: #eee !important;
background-color: #333 !important;
-webkit-border-radius: 3px 3px 0px 0px;
-moz-border-radius: 3px 3px 0px 0px;
border-radius: 3px 3px 0px 0px;
}
.modal-body {
background-color: #333 !important;
color: #eee !important;
}
.modal-content .well {
background-color: #222 !important;
color: #eee !important;
}
.modal-footer {
background-color: #333 !important;
-webkit-border-radius: 0px 0px 3px 3px;
-moz-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px;
}
.linked-code-decoration-margin {
background: #433b4b !important;
}
.opcode {
color: #066 !important;
}
.opcode:nth-child(odd) {
color: #060 !important;
}
.highlighted {
background-color: rgba(255, 0, 0, 0.2) !important;
color: #0000b0 !important;
}
.linked-code-decoration {
background: #555657 !important;
}
.selectize-control.single .selectize-input {
color: #eee !important;
background: #666 linear-gradient(to bottom, #555, #222) !important;
}
.selectize-dropdown {
color: #aaa !important;
background-color: #666 !important;
}
.selectize-control.single .selectize-input.disabled {
color: #eee !important;
background: #000 !important;
}
.dropdown-menu {
color: #eee !important;
background-color: #303030 !important;
}
.dropdown-menu li a {
color: #eee !important;
}
.dropdown-menu li a:hover {
background-color: #333 !important;
color: #fff !important;
}
.popover {
background-color: #333 !important;
color: #fff !important;
border: 2px solid #464545 !important;
}
.font-option {
color: #eee !important;
background: #303030 !important;
}
.font-option:hover {
color: #fff !important;
background: #887788 !important;
}
.font-option-active {
background: #474747 !important;
}
.font-option-active:hover {
background: #998899 !important;
}
.notification {
background-color: gray !important;
}
.notification-error {
background-color: #aa3333 !important;
color: #000;
}
.notification-on {
background-color: #33aa33 !important;
color: black;
}
.notification-off {
background-color: #222 !important;
color: #fff;
}
pre.content {
color: #aaa !important;
background-color: #333 !important;
}
.bottom-bar {
color: #aaa !important;
background-color: #333 !important;
}
.btn {
color: #ccc !important;
background-color: #464545 !important;
border: 2px solid #464545 !important;
}
.btn.active {
color: #ccc !important;
background-color: #464545 !important;
border: 2px solid #464545 !important;
}
.btn.active:hover {
color: #aaa !important;
background-color: #464545 !important;
box-shadow: inset 0 0.5px 1.5px rgba(0, 0, 0, 0.125) !important;
border: 2px solid #464545 !important;
}
.btn:not(.active):hover {
background-color: #464545 !important;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.125) !important;
border: 2px solid #464545 !important;
color: #aaa !important;
}
select {
color: #000 !important;
}
input {
color: #eee !important;
background-color: #474747 !important;
border: 0 !important;
}
input.permalink {
margin-top: 1px !important;
}
.analysis,
.mixed {
background: #fdfd96 !important;
}
.passed {
background: #77dd77 !important;
}
.missed {
background: #ff6961 !important;
}
.conformance-wrapper {
background-color: #1e1e1e !important;
}
.graph-placeholder {
background-color: #333333 !important;
}
.text-count {
color: green !important;
}
.err-count {
color: orange !important;
}
.optgroup-header {
background-color: #555 !important;
color: #EEE !important;
text-shadow: none !important;
} | static/themes/dark-theme.css | @import url("~golden-layout/src/css/goldenlayout-dark-theme.css");
body {
background-color: #333 !important;
}
.navbar-inverse {
background-color: #333 !important;
}
.navbar-inverse .navbar-brand {
color: #aaa !important;
}
.nav.navbar-nav.navbar-left li:hover {
color: #ccc !important;
}
.nav.nav-tabs li a {
color: #eee !important;
background-color: #666 !important;
}
.nav.nav-tabs li:not(.active) a {
border-bottom: 1px solid #fff !important;
}
.nav.nav-tabs li.active a {
background-color: #666 !important;
}
.float-link {
color: #eee !important;
background-color: rgba(128, 128, 128, 0.5) !important;
}
.float-link:hover {
background-color: rgba(128, 128, 160, 0.5) !important;
}
.modal-header {
color: #eee !important;
background-color: #333 !important;
-webkit-border-radius: 3px 3px 0px 0px;
-moz-border-radius: 3px 3px 0px 0px;
border-radius: 3px 3px 0px 0px;
}
.modal-body {
background-color: #333 !important;
color: #eee !important;
}
.modal-content .well {
background-color: #222 !important;
color: #eee !important;
}
.modal-footer {
background-color: #333 !important;
-webkit-border-radius: 0px 0px 3px 3px;
-moz-border-radius: 0px 0px 3px 3px;
border-radius: 0px 0px 3px 3px;
}
.linked-code-decoration-margin {
background: #433b4b !important;
}
.opcode {
color: #066 !important;
}
.opcode:nth-child(odd) {
color: #060 !important;
}
.highlighted {
background-color: rgba(255, 0, 0, 0.2) !important;
color: #0000b0 !important;
}
.linked-code-decoration {
background: #555657 !important;
}
.selectize-control.single .selectize-input {
color: #eee !important;
background: #666 linear-gradient(to bottom, #555, #222) !important;
}
.selectize-dropdown {
color: #aaa !important;
background-color: #666 !important;
}
.selectize-control.single .selectize-input.disabled {
color: #eee !important;
background: #000 !important;
}
.dropdown-menu {
color: #eee !important;
background-color: #303030 !important;
}
.dropdown-menu li a {
color: #eee !important;
}
.dropdown-menu li a:hover {
background-color: #333 !important;
color: #fff !important;
}
.popover {
background-color: #333 !important;
color: #fff !important;
border: 2px solid #464545 !important;
}
.font-option {
color: #eee !important;
background: #303030 !important;
}
.font-option:hover {
color: #fff !important;
background: #887788 !important;
}
.font-option-active {
background: #474747 !important;
}
.font-option-active:hover {
background: #998899 !important;
}
.notification {
background-color: gray !important;
}
.notification-error {
background-color: #aa3333 !important;
color: #000;
}
.notification-on {
background-color: #33aa33 !important;
color: black;
}
.notification-off {
background-color: #222 !important;
color: #fff;
}
pre.content {
color: #aaa !important;
background-color: #333 !important;
}
.bottom-bar {
color: #aaa !important;
background-color: #333 !important;
}
.btn {
color: #ccc !important;
background-color: #464545 !important;
border: 2px solid #464545 !important;
}
.btn.active {
color: #ccc !important;
background-color: #464545 !important;
border: 2px solid #464545 !important;
}
.btn.active:hover {
color: #aaa !important;
background-color: #464545 !important;
box-shadow: inset 0 0.5px 1.5px rgba(0, 0, 0, 0.125) !important;
border: 2px solid #464545 !important;
}
.btn:not(.active):hover {
background-color: #464545 !important;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.125) !important;
border: 2px solid #464545 !important;
color: #aaa !important;
}
select {
color: #000 !important;
}
input {
color: #eee !important;
background-color: #474747 !important;
border: 0 !important;
}
input.permalink {
margin-top: 1px !important;
}
.analysis,
.mixed {
background: #fdfd96 !important;
}
.passed {
background: #77dd77 !important;
}
.missed {
background: #ff6961 !important;
}
.conformance-wrapper {
background-color: #1e1e1e !important;
}
.graph-placeholder {
background-color: #333333 !important;
}
.text-count {
color: green !important;
}
.err-count {
color: orange !important;
}
.optgroup-header {
background-color: #555 !important;
color: #EEE !important;
text-shadow: none !important;
} | 0.267504 | 0.084531 |
.container-q0mjim9E {
display: inline-flex;
position: relative;
box-sizing: border-box;
align-items: center;
border-radius: 4px;
border: var(--control-border-width, 1px) solid var(--intent-color, #d1d4dc);
color: #131722;
outline: none;
}
.container-q0mjim9E,
html.theme-dark .container-q0mjim9E {
--default-slot-color: #787b86;
}
html.theme-dark .container-q0mjim9E {
color: #d1d4dc;
border-color: var(--intent-color, #50535e);
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.intent-default-1iFRsAl_:hover {
border-color: #a3a6af;
--default-slot-color: #131722;
}
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.intent-default-1iFRsAl_:hover {
--default-slot-color: #d1d4dc;
border-color: #6a6d78;
}
}
.container-q0mjim9E.focused-3_QrLayY {
border-color: #2196f3;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.focused-3_QrLayY:hover {
border-color: #2196f3;
}
}
html.theme-dark .container-q0mjim9E.focused-3_QrLayY {
border-color: #1976d2;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.focused-3_QrLayY:hover {
border-color: #1976d2;
}
}
.container-q0mjim9E.readonly-2O87siLj {
border-color: #d1d4dc;
background-color: #f0f3fa;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.readonly-2O87siLj:hover {
border-color: #d1d4dc;
background-color: #f0f3fa;
}
}
html.theme-dark .container-q0mjim9E.readonly-2O87siLj {
background-color: #2a2e39;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.readonly-2O87siLj:hover {
background-color: #2a2e39;
}
}
html.theme-dark .container-q0mjim9E.readonly-2O87siLj {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.readonly-2O87siLj:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.disabled-1IdBwvKU {
border-color: #d1d4dc;
background-color: #f0f3fa;
color: #b2b5be;
--default-slot-color: #787b86;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.disabled-1IdBwvKU:hover {
border-color: #d1d4dc;
background-color: #f0f3fa;
color: #b2b5be;
--default-slot-color: #787b86;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
--default-slot-color: #787b86;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
--default-slot-color: #787b86;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
color: #50535e;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
background-color: #2a2e39;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
background-color: #2a2e39;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.with-highlight-1fw5sABK,
.container-q0mjim9E.with-highlight-1fw5sABK.focused-3_QrLayY {
border-color: #d1d4dc;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.with-highlight-1fw5sABK:hover {
border-color: #d1d4dc;
}
}
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK,
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK.focused-3_QrLayY {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.grouped-OqOAs_gO.adjust-position-CZNDwrAs:not(.first-row-1TtmkJB5) {
margin-top: calc(-1 * var(--control-border-width, 1px));
}
.container-q0mjim9E.grouped-OqOAs_gO.adjust-position-CZNDwrAs:not(.first-col-3gkQgeTB) {
margin-left: calc(-1 * var(--control-border-width, 1px));
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.grouped-OqOAs_gO:hover {
z-index: 1;
}
}
.container-q0mjim9E.grouped-OqOAs_gO.focused-3_QrLayY {
z-index: 2;
}
.container-q0mjim9E.stretch-1ZwMxhiW {
width: 100%;
}
.container-q0mjim9E.font-size-medium-2X_Vsy16 {
font-weight: 400;
font-style: normal;
font-size: 14px;
line-height: 21px;
}
.container-q0mjim9E.font-size-large-3XsO4Jyv {
font-weight: 400;
font-style: normal;
font-size: 16px;
line-height: 24px;
}
.container-q0mjim9E.size-small-1yttw7pF {
height: 24px;
}
.container-q0mjim9E.size-medium-JO0bzDKQ {
height: 34px;
}
.container-q0mjim9E.size-large-3NHYwkZf {
height: 48px;
}
.container-q0mjim9E.intent-default-1iFRsAl_ {
--intent-color: #d1d4dc;
--intent-highlight-color: #b2b5be;
}
html.theme-dark .container-q0mjim9E.intent-default-1iFRsAl_ {
--intent-highlight-color: #868993;
--intent-color: #50535e;
}
.container-q0mjim9E.intent-success-3d9hoQq6 {
--intent-color: #00897b;
--intent-highlight-color: #00897b;
}
html.theme-dark .container-q0mjim9E.intent-success-3d9hoQq6 {
--intent-color: #00897b;
}
.container-q0mjim9E.intent-warning-2R7B-fcl {
--intent-color: #ff9800;
--intent-highlight-color: #ff9800;
}
html.theme-dark .container-q0mjim9E.intent-warning-2R7B-fcl {
--intent-color: #ffa726;
}
.container-q0mjim9E.intent-danger-2aIQ0kCh {
--intent-color: #f44336;
--intent-highlight-color: #f44336;
}
html.theme-dark .container-q0mjim9E.intent-danger-2aIQ0kCh {
--intent-color: #f44336;
}
.container-q0mjim9E.intent-primary-1uA2IWJE {
--intent-color: #2196f3;
--intent-highlight-color: #2196f3;
}
html.theme-dark .container-q0mjim9E.intent-primary-1uA2IWJE {
--intent-color: #1976d2;
}
.container-q0mjim9E.border-none-1THKKmlu {
--control-border-width: 0px;
}
.container-q0mjim9E.border-thin-xydp6U9V {
--control-border-width: 1px;
}
.container-q0mjim9E.border-thick-2gyRxvRu {
--control-border-width: 2px;
}
.container-q0mjim9E.no-corner-top-left-1CiWWKym {
border-top-left-radius: 0;
}
.container-q0mjim9E.no-corner-top-right-3FhGiM-K {
border-top-right-radius: 0;
}
.container-q0mjim9E.no-corner-bottom-right-7_q0YPc_ {
border-bottom-right-radius: 0;
}
.container-q0mjim9E.no-corner-bottom-left-3MCGXDki {
border-bottom-left-radius: 0;
}
.highlight-1k6YPfiQ {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
margin: calc(-1 * var(--control-border-width, 1px));
pointer-events: none;
border-radius: 4px;
border: 2px solid;
border-color: var(--intent-highlight-color, #b2b5be);
visibility: hidden;
}
html.theme-dark .highlight-1k6YPfiQ {
border-color: var(--intent-highlight-color, #868993);
}
.highlight-1k6YPfiQ.no-corner-top-left-1CiWWKym {
border-top-left-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-top-right-3FhGiM-K {
border-top-right-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-bottom-right-7_q0YPc_ {
border-bottom-right-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-bottom-left-3MCGXDki {
border-bottom-left-radius: 0;
}
.highlight-1k6YPfiQ.shown-2dwiJlCW {
visibility: visible;
}
.inner-slot-2OKMGqSc {
--inner-slot-gap: 2px;
display: flex;
flex-shrink: 0;
box-sizing: border-box;
align-items: center;
justify-content: center;
height: calc(100% - 2 * (3px - var(--control-border-width, 1px)));
margin-top: calc(3px - var(--control-border-width, 1px));
margin-bottom: calc(3px - var(--control-border-width, 1px));
margin-right: var(--inner-slot-gap, 2px);
overflow: hidden;
}
.inner-slot-2OKMGqSc:first-child {
margin-left: calc(3px - var(--control-border-width, 1px));
}
.inner-slot-2OKMGqSc:nth-last-child(2) {
margin-right: calc(3px - var(--control-border-width, 1px));
}
.inner-slot-2OKMGqSc.interactive-3SE8kqul {
color: var(--default-slot-color, currentColor);
}
.inner-slot-2OKMGqSc.icon-2tguASdP {
flex: none;
width: 28px;
}
.inner-middle-slot-FxLdcHA0 {
flex: 1 1 auto;
}
.before-slot-3KAG-INy {
display: flex;
margin-bottom: 2px;
}
.after-slot-34RFQaLb {
display: flex;
margin-top: 4px;
}
.input-3bEGcMc9 {
display: block;
-webkit-appearance: textfield;
appearance: textfield;
width: 100%;
min-width: 0;
height: 100%;
margin: 0;
padding: 0;
border: 0;
outline: 0;
background-color: transparent;
-webkit-text-fill-color: currentColor;
font-size: inherit;
font-family: inherit;
line-height: inherit;
order: 0;
padding: 0
calc(8px - var(--control-border-width, 2px) - var(--inner-slot-gap, 2px));
}
.input-3bEGcMc9::placeholder {
color: #a3a6af;
-webkit-text-fill-color: currentColor;
opacity: 1;
}
html.theme-dark .input-3bEGcMc9::placeholder {
color: #434651;
}
.input-3bEGcMc9::-webkit-calendar-picker-indicator,
.input-3bEGcMc9::-webkit-clear-button,
.input-3bEGcMc9::-webkit-inner-spin-button,
.input-3bEGcMc9::-webkit-outer-spin-button,
.input-3bEGcMc9::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
}
.input-3bEGcMc9::-ms-clear,
.input-3bEGcMc9::-ms-reveal {
display: none;
}
.input-3bEGcMc9:-webkit-autofill,
.input-3bEGcMc9:-webkit-autofill:active,
.input-3bEGcMc9:-webkit-autofill:focus {
border-radius: 3px;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.input-3bEGcMc9:-webkit-autofill:hover {
border-radius: 3px;
}
}
.input-3bEGcMc9.with-start-slot-16sVynIv {
padding-left: calc(4px - var(--inner-slot-gap, 2px));
}
.input-3bEGcMc9.with-end-slot-S5RrC8PC {
padding-right: calc(4px - var(--inner-slot-gap, 2px));
} | src/charting_library/bundles/13.aa76f462cdf22c2b5bc6.css | .container-q0mjim9E {
display: inline-flex;
position: relative;
box-sizing: border-box;
align-items: center;
border-radius: 4px;
border: var(--control-border-width, 1px) solid var(--intent-color, #d1d4dc);
color: #131722;
outline: none;
}
.container-q0mjim9E,
html.theme-dark .container-q0mjim9E {
--default-slot-color: #787b86;
}
html.theme-dark .container-q0mjim9E {
color: #d1d4dc;
border-color: var(--intent-color, #50535e);
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.intent-default-1iFRsAl_:hover {
border-color: #a3a6af;
--default-slot-color: #131722;
}
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.intent-default-1iFRsAl_:hover {
--default-slot-color: #d1d4dc;
border-color: #6a6d78;
}
}
.container-q0mjim9E.focused-3_QrLayY {
border-color: #2196f3;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.focused-3_QrLayY:hover {
border-color: #2196f3;
}
}
html.theme-dark .container-q0mjim9E.focused-3_QrLayY {
border-color: #1976d2;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.focused-3_QrLayY:hover {
border-color: #1976d2;
}
}
.container-q0mjim9E.readonly-2O87siLj {
border-color: #d1d4dc;
background-color: #f0f3fa;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.readonly-2O87siLj:hover {
border-color: #d1d4dc;
background-color: #f0f3fa;
}
}
html.theme-dark .container-q0mjim9E.readonly-2O87siLj {
background-color: #2a2e39;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.readonly-2O87siLj:hover {
background-color: #2a2e39;
}
}
html.theme-dark .container-q0mjim9E.readonly-2O87siLj {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.readonly-2O87siLj:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.disabled-1IdBwvKU {
border-color: #d1d4dc;
background-color: #f0f3fa;
color: #b2b5be;
--default-slot-color: #787b86;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.disabled-1IdBwvKU:hover {
border-color: #d1d4dc;
background-color: #f0f3fa;
color: #b2b5be;
--default-slot-color: #787b86;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
--default-slot-color: #787b86;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
--default-slot-color: #787b86;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
color: #50535e;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
background-color: #2a2e39;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
background-color: #2a2e39;
}
}
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.disabled-1IdBwvKU:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.with-highlight-1fw5sABK,
.container-q0mjim9E.with-highlight-1fw5sABK.focused-3_QrLayY {
border-color: #d1d4dc;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.with-highlight-1fw5sABK:hover {
border-color: #d1d4dc;
}
}
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK,
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK.focused-3_QrLayY {
border-color: #50535e;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
html.theme-dark .container-q0mjim9E.with-highlight-1fw5sABK:hover {
border-color: #50535e;
}
}
.container-q0mjim9E.grouped-OqOAs_gO.adjust-position-CZNDwrAs:not(.first-row-1TtmkJB5) {
margin-top: calc(-1 * var(--control-border-width, 1px));
}
.container-q0mjim9E.grouped-OqOAs_gO.adjust-position-CZNDwrAs:not(.first-col-3gkQgeTB) {
margin-left: calc(-1 * var(--control-border-width, 1px));
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.container-q0mjim9E.grouped-OqOAs_gO:hover {
z-index: 1;
}
}
.container-q0mjim9E.grouped-OqOAs_gO.focused-3_QrLayY {
z-index: 2;
}
.container-q0mjim9E.stretch-1ZwMxhiW {
width: 100%;
}
.container-q0mjim9E.font-size-medium-2X_Vsy16 {
font-weight: 400;
font-style: normal;
font-size: 14px;
line-height: 21px;
}
.container-q0mjim9E.font-size-large-3XsO4Jyv {
font-weight: 400;
font-style: normal;
font-size: 16px;
line-height: 24px;
}
.container-q0mjim9E.size-small-1yttw7pF {
height: 24px;
}
.container-q0mjim9E.size-medium-JO0bzDKQ {
height: 34px;
}
.container-q0mjim9E.size-large-3NHYwkZf {
height: 48px;
}
.container-q0mjim9E.intent-default-1iFRsAl_ {
--intent-color: #d1d4dc;
--intent-highlight-color: #b2b5be;
}
html.theme-dark .container-q0mjim9E.intent-default-1iFRsAl_ {
--intent-highlight-color: #868993;
--intent-color: #50535e;
}
.container-q0mjim9E.intent-success-3d9hoQq6 {
--intent-color: #00897b;
--intent-highlight-color: #00897b;
}
html.theme-dark .container-q0mjim9E.intent-success-3d9hoQq6 {
--intent-color: #00897b;
}
.container-q0mjim9E.intent-warning-2R7B-fcl {
--intent-color: #ff9800;
--intent-highlight-color: #ff9800;
}
html.theme-dark .container-q0mjim9E.intent-warning-2R7B-fcl {
--intent-color: #ffa726;
}
.container-q0mjim9E.intent-danger-2aIQ0kCh {
--intent-color: #f44336;
--intent-highlight-color: #f44336;
}
html.theme-dark .container-q0mjim9E.intent-danger-2aIQ0kCh {
--intent-color: #f44336;
}
.container-q0mjim9E.intent-primary-1uA2IWJE {
--intent-color: #2196f3;
--intent-highlight-color: #2196f3;
}
html.theme-dark .container-q0mjim9E.intent-primary-1uA2IWJE {
--intent-color: #1976d2;
}
.container-q0mjim9E.border-none-1THKKmlu {
--control-border-width: 0px;
}
.container-q0mjim9E.border-thin-xydp6U9V {
--control-border-width: 1px;
}
.container-q0mjim9E.border-thick-2gyRxvRu {
--control-border-width: 2px;
}
.container-q0mjim9E.no-corner-top-left-1CiWWKym {
border-top-left-radius: 0;
}
.container-q0mjim9E.no-corner-top-right-3FhGiM-K {
border-top-right-radius: 0;
}
.container-q0mjim9E.no-corner-bottom-right-7_q0YPc_ {
border-bottom-right-radius: 0;
}
.container-q0mjim9E.no-corner-bottom-left-3MCGXDki {
border-bottom-left-radius: 0;
}
.highlight-1k6YPfiQ {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 3;
margin: calc(-1 * var(--control-border-width, 1px));
pointer-events: none;
border-radius: 4px;
border: 2px solid;
border-color: var(--intent-highlight-color, #b2b5be);
visibility: hidden;
}
html.theme-dark .highlight-1k6YPfiQ {
border-color: var(--intent-highlight-color, #868993);
}
.highlight-1k6YPfiQ.no-corner-top-left-1CiWWKym {
border-top-left-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-top-right-3FhGiM-K {
border-top-right-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-bottom-right-7_q0YPc_ {
border-bottom-right-radius: 0;
}
.highlight-1k6YPfiQ.no-corner-bottom-left-3MCGXDki {
border-bottom-left-radius: 0;
}
.highlight-1k6YPfiQ.shown-2dwiJlCW {
visibility: visible;
}
.inner-slot-2OKMGqSc {
--inner-slot-gap: 2px;
display: flex;
flex-shrink: 0;
box-sizing: border-box;
align-items: center;
justify-content: center;
height: calc(100% - 2 * (3px - var(--control-border-width, 1px)));
margin-top: calc(3px - var(--control-border-width, 1px));
margin-bottom: calc(3px - var(--control-border-width, 1px));
margin-right: var(--inner-slot-gap, 2px);
overflow: hidden;
}
.inner-slot-2OKMGqSc:first-child {
margin-left: calc(3px - var(--control-border-width, 1px));
}
.inner-slot-2OKMGqSc:nth-last-child(2) {
margin-right: calc(3px - var(--control-border-width, 1px));
}
.inner-slot-2OKMGqSc.interactive-3SE8kqul {
color: var(--default-slot-color, currentColor);
}
.inner-slot-2OKMGqSc.icon-2tguASdP {
flex: none;
width: 28px;
}
.inner-middle-slot-FxLdcHA0 {
flex: 1 1 auto;
}
.before-slot-3KAG-INy {
display: flex;
margin-bottom: 2px;
}
.after-slot-34RFQaLb {
display: flex;
margin-top: 4px;
}
.input-3bEGcMc9 {
display: block;
-webkit-appearance: textfield;
appearance: textfield;
width: 100%;
min-width: 0;
height: 100%;
margin: 0;
padding: 0;
border: 0;
outline: 0;
background-color: transparent;
-webkit-text-fill-color: currentColor;
font-size: inherit;
font-family: inherit;
line-height: inherit;
order: 0;
padding: 0
calc(8px - var(--control-border-width, 2px) - var(--inner-slot-gap, 2px));
}
.input-3bEGcMc9::placeholder {
color: #a3a6af;
-webkit-text-fill-color: currentColor;
opacity: 1;
}
html.theme-dark .input-3bEGcMc9::placeholder {
color: #434651;
}
.input-3bEGcMc9::-webkit-calendar-picker-indicator,
.input-3bEGcMc9::-webkit-clear-button,
.input-3bEGcMc9::-webkit-inner-spin-button,
.input-3bEGcMc9::-webkit-outer-spin-button,
.input-3bEGcMc9::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none;
}
.input-3bEGcMc9::-ms-clear,
.input-3bEGcMc9::-ms-reveal {
display: none;
}
.input-3bEGcMc9:-webkit-autofill,
.input-3bEGcMc9:-webkit-autofill:active,
.input-3bEGcMc9:-webkit-autofill:focus {
border-radius: 3px;
}
@media (any-hover: hover), (min--moz-device-pixel-ratio: 0) {
.input-3bEGcMc9:-webkit-autofill:hover {
border-radius: 3px;
}
}
.input-3bEGcMc9.with-start-slot-16sVynIv {
padding-left: calc(4px - var(--inner-slot-gap, 2px));
}
.input-3bEGcMc9.with-end-slot-S5RrC8PC {
padding-right: calc(4px - var(--inner-slot-gap, 2px));
} | 0.399812 | 0.072341 |
@import "fonts/stylesheet.css";
@import "fonts/style.css";
body{
margin: 0px;
padding: 0px;
font-family: 'Vegur Light';
background-color: #535353;
}
#toTopBtn{
display: none;
position: fixed;
bottom: 20px;
right: 33px;
z-index: 99;
font-size: 16px;
border: none;
background-color: #86bb5f;
color: #FFFFFF;
cursor: pointer;
padding: 20px;
border-radius: 2px;
}
#toTopBtn:hover{
background-color: #FFFFFF;
color: #535353;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
}
p#sidenote{
border: #535353 2px solid;
padding: 12px;
}
ul li img{
float: left;
padding-right: 8px;
}
#page-wrap{
margin: 0 auto;
width: 60%;
background-color: #FFFFFF !important;
padding: 2% 6%;
}
#table-wrap {
height: 100%;
width: 70%;
margin: auto;
text-align: center;
border: #86bb5f 3px solid;
}
#table-of-contents{
width: 100%;
display: inline-block;
height: inherit;
}
#table-of-contents ul li{
padding: 12px;
}
ol li{
padding-bottom: 10px;
}
nav {
display: inline-block;
}
nav ul{
width: 100%;
text-align: left !important;
font-size: 23px !important;
}
nav h2{
font-size: 27px;
color: #535353;
}
header img{
text-align: center;
}
h1, h2, h3 {
font-family: 'Vegur Regular' !important;
}
h1, h3, ol, p{
color: #535353;
}
h3 {
font-size: 27px;
}
h1 {
font-family: 'quantifybold' !important;
text-align: center;
color: #86bb5f;
}
h1, h2 {
text-align: center;
}
p, ol {
font-size: 25px;
}
h2 {
color: #86bb5f;
font-weight: bolder;
font-size: 35px;
}
a {
text-decoration: none;
color: #535353;
font-weight: bold;
}
a:hover{
color: #86bb5f;
font-weight: bold;
}
footer h3{
color: #FFFFFF;
font-family: 'Vegur Light' !important;
text-align: center;
font-size: 20px;
font-weight: lighter;
}
@media(max-width: 1530px) and (min-width: 731px){
#page-wrap{
width: 70%;
}
#table-wrap {
width: 80%;
}
#table-of-contents{
width: 90%;
}
#table-wrap ul li {
width: 80%;
}
}
@media(max-width: 730px) and (min-width: 500px){
#page-wrap{
width: 90%;
padding: 20px;
}
#table-of-contents{
width: 90%;
padding-right: 20px;
}
#table-wrap ul li {
padding-right: 20px;
width: 80%;
}
#toTopBtn{
right: 30%;
}
}
@media(max-width: 499px) and (min-width: 350px){
#page-wrap{
width: 90%;
padding: 20px;
}
#table-wrap {
width: 90%;
}
#table-of-contents{
width: 90%;
}
#table-wrap ul li {
width: 80%;
}
#toTopBtn{
right: 30%;
}
} | style.css | @import "fonts/stylesheet.css";
@import "fonts/style.css";
body{
margin: 0px;
padding: 0px;
font-family: 'Vegur Light';
background-color: #535353;
}
#toTopBtn{
display: none;
position: fixed;
bottom: 20px;
right: 33px;
z-index: 99;
font-size: 16px;
border: none;
background-color: #86bb5f;
color: #FFFFFF;
cursor: pointer;
padding: 20px;
border-radius: 2px;
}
#toTopBtn:hover{
background-color: #FFFFFF;
color: #535353;
}
img{
display: block;
margin-left: auto;
margin-right: auto;
}
p#sidenote{
border: #535353 2px solid;
padding: 12px;
}
ul li img{
float: left;
padding-right: 8px;
}
#page-wrap{
margin: 0 auto;
width: 60%;
background-color: #FFFFFF !important;
padding: 2% 6%;
}
#table-wrap {
height: 100%;
width: 70%;
margin: auto;
text-align: center;
border: #86bb5f 3px solid;
}
#table-of-contents{
width: 100%;
display: inline-block;
height: inherit;
}
#table-of-contents ul li{
padding: 12px;
}
ol li{
padding-bottom: 10px;
}
nav {
display: inline-block;
}
nav ul{
width: 100%;
text-align: left !important;
font-size: 23px !important;
}
nav h2{
font-size: 27px;
color: #535353;
}
header img{
text-align: center;
}
h1, h2, h3 {
font-family: 'Vegur Regular' !important;
}
h1, h3, ol, p{
color: #535353;
}
h3 {
font-size: 27px;
}
h1 {
font-family: 'quantifybold' !important;
text-align: center;
color: #86bb5f;
}
h1, h2 {
text-align: center;
}
p, ol {
font-size: 25px;
}
h2 {
color: #86bb5f;
font-weight: bolder;
font-size: 35px;
}
a {
text-decoration: none;
color: #535353;
font-weight: bold;
}
a:hover{
color: #86bb5f;
font-weight: bold;
}
footer h3{
color: #FFFFFF;
font-family: 'Vegur Light' !important;
text-align: center;
font-size: 20px;
font-weight: lighter;
}
@media(max-width: 1530px) and (min-width: 731px){
#page-wrap{
width: 70%;
}
#table-wrap {
width: 80%;
}
#table-of-contents{
width: 90%;
}
#table-wrap ul li {
width: 80%;
}
}
@media(max-width: 730px) and (min-width: 500px){
#page-wrap{
width: 90%;
padding: 20px;
}
#table-of-contents{
width: 90%;
padding-right: 20px;
}
#table-wrap ul li {
padding-right: 20px;
width: 80%;
}
#toTopBtn{
right: 30%;
}
}
@media(max-width: 499px) and (min-width: 350px){
#page-wrap{
width: 90%;
padding: 20px;
}
#table-wrap {
width: 90%;
}
#table-of-contents{
width: 90%;
}
#table-wrap ul li {
width: 80%;
}
#toTopBtn{
right: 30%;
}
} | 0.210848 | 0.071982 |
#optionsframework {
max-width: 840px;
background: #fff;
}
#optionsframework h3 {
cursor: default;
background-color: #f1f1f1;
font-size: 14px;
line-height: 1.4;
color: #555;
margin: 0;
padding: 8px 12px;
border-bottom: 1px solid #ddd;
}
#optionsframework p {
margin-bottom: 0;
padding-bottom: 10px;
}
#optionsframework .section {
padding: 2px 20px 0;
}
#optionsframework .group {
padding-bottom: 40px;
}
#optionsframework .section .controls {
float: left;
margin-bottom: 5px;
padding-right: 2%;
}
#optionsframework .section .explain {
width: 100%;
font-size: 14px;
line-height: 16px;
color: #777;
}
.section-text .explain, .section-select .explain {
line-height: 27px !important;
}
.section-textarea .controls {
width: 100% !important;
}
.section-upload .explain {
float: left;
}
@media screen and (max-width: 550px) {
.section-text .explain {
float: left;
}
}
#optionsframework .section-checkbox .controls {
width: 98%;
}
#optionsframework .section-checkbox .explain {
max-width: 94%;
}
#optionsframework .controls input[type=text] {
width: 100%;
}
#optionsframework .controls input[type=text].wp-color-picker {
width: 65px;
}
#optionsframework .controls select, #optionsframework .controls textarea {
margin-bottom: 10px;
width: 100%;
}
#optionsframework .section-radio label, #optionsframework .section-multicheck label {
float: left;
max-width: 90%;
line-height: 16px;
margin-bottom: 5px;
}
#optionsframework input.checkbox {
margin: 2px 10px 5px 0;
float: left;
clear: both;
}
#optionsframework input.of-radio {
margin: 1px 5px 5px 2px;
float: left;
}
#optionsframework .section-typography .controls {
float: none;
width: auto;
}
#optionsframework .section-typography .explain {
float: none;
width: auto;
}
#optionsframework .controls .of-typography-size {
width: 80px;
float: left
}
#optionsframework .controls .of-typography-unit {
width: 50px;
margin-left: 5px;
float: left
}
#optionsframework .controls .of-typography-face {
width: 100px;
margin-left: 5px;
float: left
}
#optionsframework .controls .of-typography-style {
width: 80px;
margin-left: 5px;
margin-right: 5px;
float: left
}
#optionsframework .section-typography .wp-picker-container {
margin-top: 2px;
}
#optionsframework .of-background-properties {
clear: both;
margin-top: 18px;
}
#optionsframework .controls .of-background-repeat {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .controls .of-background-position {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .controls .of-background-attachment {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .section-background .wp-picker-container {
margin-bottom: 10px;
}
#optionsframework .controls .of-radio-img-img {
border: 3px solid #f9f9f9;
margin: 0 5px 10px 0;
display: none;
cursor: pointer;
float: left;
}
#optionsframework .controls .of-radio-img-selected {
border: 3px solid #ccc
}
#optionsframework .controls .of-radio-img-img:hover {
opacity: .8;
}
#optionsframework .controls .of-border-width {
width: 80px;
float: left
}
#optionsframework .controls .of-border-style {
width: 120px;
float: left
}
#optionsframework .hide {
display: none;
}
#optionsframework .of-option-image {
max-width: 340px;
margin: 3px 0 18px 0;
}
#optionsframework .mini .controls select, #optionsframework .section .mini .controls {
width: 140px;
min-width: 140px;
}
#optionsframework .mini .controls input {
min-width: 50px;
width: 50px;
}
#optionsframework .mini .explain {
max-width: 74%;
}
/* Editor */
#optionsframework .section-editor .explain {
max-width: 98%;
float: none;
margin-bottom: 5px;
}
/* Image Uploader */
#optionsframework .controls input.upload {
width: 80%;
}
#optionsframework .screenshot {
float: left;
margin-left: 1px;
position: relative;
width: 344px;
margin-top: 3px;
}
#optionsframework .screenshot img {
background: #fafafa;
border-color: #ccc #eee #eee #ccc;
border-style: solid;
border-width: 1px;
float: left;
max-width: 334px;
padding: 4px;
margin-bottom: 10px;
}
#optionsframework .screenshot .remove-image {
background: #c40000;
position: absolute;
left: -4px;
bottom: 4px;
border: medium none;
display: block;
float: left;
color: #fff;
height: 20px;
line-height: 17px;
text-align: center;
padding: 0;
width: 20px;
cursor: pointer;
border-radius: 50%;
}
#optionsframework .screenshot .no_image .file_link {
margin-left: 20px;
}
#optionsframework .screenshot .no_image .remove-button {
bottom: 0px;
}
#optionsframework .reset-button {
float: left;
cursor: pointer;
}
/* Bottom Section */
#optionsframework-submit {
padding: 7px 10px;
border-top: 1px solid #ddd;
background-color: #f1f1f1;
}
#optionsframework .button-primary {
float: right;
}
#optionsframework .section:after {
content: "";
display: table;
}
#optionsframework .section:after {
clear: both;
}
/* my */
.file_link a {
text-decoration: none;
}
#catids li, #catid li,
#specialid li, #blog_specialid li {
float: left;
color: #999;
padding: 2px 5px;
}
.themes-inf {
position: fixed;
right: 17px;
bottom: 10px;
line-height: 30px;
z-index: 1;
}
.themes-inf a {
color: #444;
display: block;
text-decoration: none;
}
.themes-inf .cx {
color: #7e8993;
}
@media screen and (max-width: 1366px) {
.themes-inf {
display: none;
}
}
.appearance_page_begin-options #footer-upgrade {
display: none;
}
#facility-submit .button-primary {
position: fixed;
right: 10px;
bottom: 100px;
}
#section-clear {
margin-top: 17px;
padding: 0;
clear: both;
border-top: 1px solid #e5e5e5;
}
#tabt_id, #tabz_n {
min-width: 140px !important;
width: 140px !important;
}
.themes-name {
color: #555;
font-weight: bold !important;
}
.themes-name .cx-begin {
color: #3690cf;
font-size: 28px;
vertical-align: middle;
margin: 0 5px 0 0;
}
#section-img_c .explain {
float: left;
margin: 10px 0;
}
#section-img_w, #section-img_h,
#section-img_k_w, #section-img_k_h,
#section-img_i_w, #section-img_i_h,
#section-img_v_w, #section-img_v_h,
#section-grid_w, #section-grid_h,
#section-img_s_w, #section-img_s_h,
#section-img_h_w, #section-img_h_h,
#section-img_sp_w, #section-img_sp_h,
#section-img_co_w, #section-img_co_h,
#section-sites_w, #section-sites_h,
#section-img_des_w, #section-img_des_h,
#section-img_full_w, #section-img_full_h,
#section-img_t_w, #section-img_t_h {
float: left;
width: 30%;
margin: 0 0 10px 0;
}
#section-img_w .controls, #section-img_h .controls,
#section-img_k_w .controls, #section-img_k_h .controls,
#section-img_i_w .controls, #section-img_i_h .controls,
#section-img_v_w .controls, #section-img_v_h .controls,
#section-grid_w .controls, #section-grid_h .controls,
#section-img_s_w .controls, #section-img_s_h .controls,
#section-img_h_w .controls, #section-img_h_h .controls,
#section-img_sp_w .controls, #section-img_sp_h .controls,
#section-img_co_w .controls, #section-img_co_h .controls,
#section-sites_w .controls, #section-sites_h .controls,
#section-img_des_w .controls, #section-img_des_h .controls,
#section-img_t_w .controls, #section-img_t_h .controls {
width: 60%;
margin: 0 10px 0 0;
}
#section-word_q .controls, #section-pass_h .controls,
#section-year_n .controls, #section-mon_n .controls, #section-cat_up_n .controls {
width: 80px;
margin: 0 10px 0 0;
}
#section-word_q, #section-pass_h,
#section-year_n, #section-mon_n, #section-cat_up_n {
float: left;
width: 140px;
margin: 0 0 10px 0;
}
#section-login_s .explain, #section-up_t .explain, #section-keyword_settings .explain,
#section-front_settings .explain, #section-dean_d .explain, #section-menu_post_sm .explain,
#section-menu_post_my .explain, #section-nav_cat_my .explain, #section-left_explain .explain,
#section-custom_color .explain, #section-avatar_sm .explain {
float: left;
}
/* meta boxes */
#seo-excerpt {
width: 95%;
}
#home_title, #home_info, #dow_tab_a_s, #dow_tab_b_s, #dow_tab_c_s, #not_front_cat, #not_cat_n, #not_news_n, #not_group_new, #exclu_js, #iconfont_url, #l_phone, #cms_special_id, #comment_hint, #copyright_statement, #copyright_indicate, #form_front_cat, #exclude_tag, #link_cat, #menu_cat_cover_id, #menu_cat_e_id, #nav_cat_e_id, #blog_special_id {
height: 35px;
line-height: 30px;
}
#header_contact, #random_image_url, #random_avatar_url, #random_long_url, #allowed_sites {
height: 70px;
}
#optionsframework #section-crop_top label,#optionsframework #section-async_defer label {
float: none;
margin: 0 10px 0 0;
}
#optionsframework #section-crop_top input.of-radio,#optionsframework #section-async_defer input.of-radio {
float: none;
margin: 0 1px 0 0;
}
#section-img_crop .explain {
float: left;
margin: 0;
}
.section-color {
float: left;
width: 45%;
}
.section-color .explain {
padding: 3px;
}
#section-filters_a, #section-filters_b, #section-filters_c, #section-filters_d, #section-filters_e {
float: left;
width: 10px;
margin: 5px 0 0 0;
}
#section-setup_tougao a, #section-keyword_link_settings a {
color: #555;
margin-left: -15px;
padding: 5px 10px;
text-decoration: none;
border: 1px solid #ddd;
}
#section-setup_tougao a:hover, #section-keyword_link_settings a:hover {
color: #fff;
background: #7e8993;
border: 1px solid #7e8993;
}
.be_ico h4 {
font-size: 15px;
margin-left: -24px;
padding-left: 22px;
border-left: 4px solid #7e8993;
}
.be_ico_m h4 {
border-left: 4px solid #7e8993;
}
/* input */
input[type="checkbox"]:focus {
box-shadow: none;
}
.checkbox {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: relative;
width: 24px !important;
height: 14px !important;
outline: 0;
border-radius: 16px !important;
box-sizing: border-box;
background: #dfdfdf;
border: 1px solid #dcdcdc !important;
}
.checkbox:before,.checkbox:after {
content: " ";
position: absolute;
top: 0;
left: 0;
border-radius: 14px;
-webkit-transition: -webkit-transform .3s;
transition: -webkit-transform .3s;
transition: transform .3s;
transition: transform .3s, -webkit-transform .3s;
}
.checkbox:before {
width: 22px;
height: 12px;
background: #fdfdfd;
box-shadow: 1px 1px 4px #dcdcdc inset;
}
.checkbox:after {
width: 12px;
height: 12px;
background: #fff;
box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.checkbox:checked {
border-color: #7e8993;
background: #7e8993;
border: 1px solid #7e8993 !important;
}
.checkbox:checked:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.checkbox:checked:after {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
.checkbox:focus {
outline: 0;
}
#optionsframework .wp-color-result-text {
line-height: 22px;
}
#section-random_image_url h4,
#section-random_avatar_url h4,
#section-random_long_url h4 {
font-weight: normal;
}
input[type="number"].number-text {
width: 70px;
}
input[type="number"].number-text-d {
width: 70px;
}
/* cat id */
.options-caid {
position: fixed;
right: 18px;
top: 156px;
cursor: pointer;
z-index: 999;
}
.options-caid span {
font-size: 18px;
font-size: 1.8rem;
color: #666;
}
.options-caid span:hover {
color: #7e8993;
}
.catid-list {
position: fixed;
right: 40px;
top: 154px;
background: #fff;
width: 35%;
padding: 10px;
z-index: 999;
display: none;
border-radius: 2px;
border: 1px solid #ddd;
border-left: 3px solid #7e8993;
}
.show-id {
float: left;
color: #666;
margin: 0;
padding: 3px 0;
}
.show-id span {
color: #fff;
vertical-align: super;
background: #7e8993;
margin: 0 10px 0 2px;
padding: 0 5px;
border-radius: 50%;
}
#postcustomstuff table, #postcustomstuff thead th {
background-color: #fff;
}
#section-copyright_case h4 {
font-weight: normal;
margin: 1.33em 0 0 0;
}
.begin_file {
margin: 5px 0 0 0 !important;
} | wp-content/themes/begin/css/options.css |
#optionsframework {
max-width: 840px;
background: #fff;
}
#optionsframework h3 {
cursor: default;
background-color: #f1f1f1;
font-size: 14px;
line-height: 1.4;
color: #555;
margin: 0;
padding: 8px 12px;
border-bottom: 1px solid #ddd;
}
#optionsframework p {
margin-bottom: 0;
padding-bottom: 10px;
}
#optionsframework .section {
padding: 2px 20px 0;
}
#optionsframework .group {
padding-bottom: 40px;
}
#optionsframework .section .controls {
float: left;
margin-bottom: 5px;
padding-right: 2%;
}
#optionsframework .section .explain {
width: 100%;
font-size: 14px;
line-height: 16px;
color: #777;
}
.section-text .explain, .section-select .explain {
line-height: 27px !important;
}
.section-textarea .controls {
width: 100% !important;
}
.section-upload .explain {
float: left;
}
@media screen and (max-width: 550px) {
.section-text .explain {
float: left;
}
}
#optionsframework .section-checkbox .controls {
width: 98%;
}
#optionsframework .section-checkbox .explain {
max-width: 94%;
}
#optionsframework .controls input[type=text] {
width: 100%;
}
#optionsframework .controls input[type=text].wp-color-picker {
width: 65px;
}
#optionsframework .controls select, #optionsframework .controls textarea {
margin-bottom: 10px;
width: 100%;
}
#optionsframework .section-radio label, #optionsframework .section-multicheck label {
float: left;
max-width: 90%;
line-height: 16px;
margin-bottom: 5px;
}
#optionsframework input.checkbox {
margin: 2px 10px 5px 0;
float: left;
clear: both;
}
#optionsframework input.of-radio {
margin: 1px 5px 5px 2px;
float: left;
}
#optionsframework .section-typography .controls {
float: none;
width: auto;
}
#optionsframework .section-typography .explain {
float: none;
width: auto;
}
#optionsframework .controls .of-typography-size {
width: 80px;
float: left
}
#optionsframework .controls .of-typography-unit {
width: 50px;
margin-left: 5px;
float: left
}
#optionsframework .controls .of-typography-face {
width: 100px;
margin-left: 5px;
float: left
}
#optionsframework .controls .of-typography-style {
width: 80px;
margin-left: 5px;
margin-right: 5px;
float: left
}
#optionsframework .section-typography .wp-picker-container {
margin-top: 2px;
}
#optionsframework .of-background-properties {
clear: both;
margin-top: 18px;
}
#optionsframework .controls .of-background-repeat {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .controls .of-background-position {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .controls .of-background-attachment {
width: 125px;
margin-right: 5px;
float: left
}
#optionsframework .section-background .wp-picker-container {
margin-bottom: 10px;
}
#optionsframework .controls .of-radio-img-img {
border: 3px solid #f9f9f9;
margin: 0 5px 10px 0;
display: none;
cursor: pointer;
float: left;
}
#optionsframework .controls .of-radio-img-selected {
border: 3px solid #ccc
}
#optionsframework .controls .of-radio-img-img:hover {
opacity: .8;
}
#optionsframework .controls .of-border-width {
width: 80px;
float: left
}
#optionsframework .controls .of-border-style {
width: 120px;
float: left
}
#optionsframework .hide {
display: none;
}
#optionsframework .of-option-image {
max-width: 340px;
margin: 3px 0 18px 0;
}
#optionsframework .mini .controls select, #optionsframework .section .mini .controls {
width: 140px;
min-width: 140px;
}
#optionsframework .mini .controls input {
min-width: 50px;
width: 50px;
}
#optionsframework .mini .explain {
max-width: 74%;
}
/* Editor */
#optionsframework .section-editor .explain {
max-width: 98%;
float: none;
margin-bottom: 5px;
}
/* Image Uploader */
#optionsframework .controls input.upload {
width: 80%;
}
#optionsframework .screenshot {
float: left;
margin-left: 1px;
position: relative;
width: 344px;
margin-top: 3px;
}
#optionsframework .screenshot img {
background: #fafafa;
border-color: #ccc #eee #eee #ccc;
border-style: solid;
border-width: 1px;
float: left;
max-width: 334px;
padding: 4px;
margin-bottom: 10px;
}
#optionsframework .screenshot .remove-image {
background: #c40000;
position: absolute;
left: -4px;
bottom: 4px;
border: medium none;
display: block;
float: left;
color: #fff;
height: 20px;
line-height: 17px;
text-align: center;
padding: 0;
width: 20px;
cursor: pointer;
border-radius: 50%;
}
#optionsframework .screenshot .no_image .file_link {
margin-left: 20px;
}
#optionsframework .screenshot .no_image .remove-button {
bottom: 0px;
}
#optionsframework .reset-button {
float: left;
cursor: pointer;
}
/* Bottom Section */
#optionsframework-submit {
padding: 7px 10px;
border-top: 1px solid #ddd;
background-color: #f1f1f1;
}
#optionsframework .button-primary {
float: right;
}
#optionsframework .section:after {
content: "";
display: table;
}
#optionsframework .section:after {
clear: both;
}
/* my */
.file_link a {
text-decoration: none;
}
#catids li, #catid li,
#specialid li, #blog_specialid li {
float: left;
color: #999;
padding: 2px 5px;
}
.themes-inf {
position: fixed;
right: 17px;
bottom: 10px;
line-height: 30px;
z-index: 1;
}
.themes-inf a {
color: #444;
display: block;
text-decoration: none;
}
.themes-inf .cx {
color: #7e8993;
}
@media screen and (max-width: 1366px) {
.themes-inf {
display: none;
}
}
.appearance_page_begin-options #footer-upgrade {
display: none;
}
#facility-submit .button-primary {
position: fixed;
right: 10px;
bottom: 100px;
}
#section-clear {
margin-top: 17px;
padding: 0;
clear: both;
border-top: 1px solid #e5e5e5;
}
#tabt_id, #tabz_n {
min-width: 140px !important;
width: 140px !important;
}
.themes-name {
color: #555;
font-weight: bold !important;
}
.themes-name .cx-begin {
color: #3690cf;
font-size: 28px;
vertical-align: middle;
margin: 0 5px 0 0;
}
#section-img_c .explain {
float: left;
margin: 10px 0;
}
#section-img_w, #section-img_h,
#section-img_k_w, #section-img_k_h,
#section-img_i_w, #section-img_i_h,
#section-img_v_w, #section-img_v_h,
#section-grid_w, #section-grid_h,
#section-img_s_w, #section-img_s_h,
#section-img_h_w, #section-img_h_h,
#section-img_sp_w, #section-img_sp_h,
#section-img_co_w, #section-img_co_h,
#section-sites_w, #section-sites_h,
#section-img_des_w, #section-img_des_h,
#section-img_full_w, #section-img_full_h,
#section-img_t_w, #section-img_t_h {
float: left;
width: 30%;
margin: 0 0 10px 0;
}
#section-img_w .controls, #section-img_h .controls,
#section-img_k_w .controls, #section-img_k_h .controls,
#section-img_i_w .controls, #section-img_i_h .controls,
#section-img_v_w .controls, #section-img_v_h .controls,
#section-grid_w .controls, #section-grid_h .controls,
#section-img_s_w .controls, #section-img_s_h .controls,
#section-img_h_w .controls, #section-img_h_h .controls,
#section-img_sp_w .controls, #section-img_sp_h .controls,
#section-img_co_w .controls, #section-img_co_h .controls,
#section-sites_w .controls, #section-sites_h .controls,
#section-img_des_w .controls, #section-img_des_h .controls,
#section-img_t_w .controls, #section-img_t_h .controls {
width: 60%;
margin: 0 10px 0 0;
}
#section-word_q .controls, #section-pass_h .controls,
#section-year_n .controls, #section-mon_n .controls, #section-cat_up_n .controls {
width: 80px;
margin: 0 10px 0 0;
}
#section-word_q, #section-pass_h,
#section-year_n, #section-mon_n, #section-cat_up_n {
float: left;
width: 140px;
margin: 0 0 10px 0;
}
#section-login_s .explain, #section-up_t .explain, #section-keyword_settings .explain,
#section-front_settings .explain, #section-dean_d .explain, #section-menu_post_sm .explain,
#section-menu_post_my .explain, #section-nav_cat_my .explain, #section-left_explain .explain,
#section-custom_color .explain, #section-avatar_sm .explain {
float: left;
}
/* meta boxes */
#seo-excerpt {
width: 95%;
}
#home_title, #home_info, #dow_tab_a_s, #dow_tab_b_s, #dow_tab_c_s, #not_front_cat, #not_cat_n, #not_news_n, #not_group_new, #exclu_js, #iconfont_url, #l_phone, #cms_special_id, #comment_hint, #copyright_statement, #copyright_indicate, #form_front_cat, #exclude_tag, #link_cat, #menu_cat_cover_id, #menu_cat_e_id, #nav_cat_e_id, #blog_special_id {
height: 35px;
line-height: 30px;
}
#header_contact, #random_image_url, #random_avatar_url, #random_long_url, #allowed_sites {
height: 70px;
}
#optionsframework #section-crop_top label,#optionsframework #section-async_defer label {
float: none;
margin: 0 10px 0 0;
}
#optionsframework #section-crop_top input.of-radio,#optionsframework #section-async_defer input.of-radio {
float: none;
margin: 0 1px 0 0;
}
#section-img_crop .explain {
float: left;
margin: 0;
}
.section-color {
float: left;
width: 45%;
}
.section-color .explain {
padding: 3px;
}
#section-filters_a, #section-filters_b, #section-filters_c, #section-filters_d, #section-filters_e {
float: left;
width: 10px;
margin: 5px 0 0 0;
}
#section-setup_tougao a, #section-keyword_link_settings a {
color: #555;
margin-left: -15px;
padding: 5px 10px;
text-decoration: none;
border: 1px solid #ddd;
}
#section-setup_tougao a:hover, #section-keyword_link_settings a:hover {
color: #fff;
background: #7e8993;
border: 1px solid #7e8993;
}
.be_ico h4 {
font-size: 15px;
margin-left: -24px;
padding-left: 22px;
border-left: 4px solid #7e8993;
}
.be_ico_m h4 {
border-left: 4px solid #7e8993;
}
/* input */
input[type="checkbox"]:focus {
box-shadow: none;
}
.checkbox {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
position: relative;
width: 24px !important;
height: 14px !important;
outline: 0;
border-radius: 16px !important;
box-sizing: border-box;
background: #dfdfdf;
border: 1px solid #dcdcdc !important;
}
.checkbox:before,.checkbox:after {
content: " ";
position: absolute;
top: 0;
left: 0;
border-radius: 14px;
-webkit-transition: -webkit-transform .3s;
transition: -webkit-transform .3s;
transition: transform .3s;
transition: transform .3s, -webkit-transform .3s;
}
.checkbox:before {
width: 22px;
height: 12px;
background: #fdfdfd;
box-shadow: 1px 1px 4px #dcdcdc inset;
}
.checkbox:after {
width: 12px;
height: 12px;
background: #fff;
box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.checkbox:checked {
border-color: #7e8993;
background: #7e8993;
border: 1px solid #7e8993 !important;
}
.checkbox:checked:before {
-webkit-transform: scale(0);
transform: scale(0);
}
.checkbox:checked:after {
-webkit-transform: translateX(10px);
transform: translateX(10px);
}
.checkbox:focus {
outline: 0;
}
#optionsframework .wp-color-result-text {
line-height: 22px;
}
#section-random_image_url h4,
#section-random_avatar_url h4,
#section-random_long_url h4 {
font-weight: normal;
}
input[type="number"].number-text {
width: 70px;
}
input[type="number"].number-text-d {
width: 70px;
}
/* cat id */
.options-caid {
position: fixed;
right: 18px;
top: 156px;
cursor: pointer;
z-index: 999;
}
.options-caid span {
font-size: 18px;
font-size: 1.8rem;
color: #666;
}
.options-caid span:hover {
color: #7e8993;
}
.catid-list {
position: fixed;
right: 40px;
top: 154px;
background: #fff;
width: 35%;
padding: 10px;
z-index: 999;
display: none;
border-radius: 2px;
border: 1px solid #ddd;
border-left: 3px solid #7e8993;
}
.show-id {
float: left;
color: #666;
margin: 0;
padding: 3px 0;
}
.show-id span {
color: #fff;
vertical-align: super;
background: #7e8993;
margin: 0 10px 0 2px;
padding: 0 5px;
border-radius: 50%;
}
#postcustomstuff table, #postcustomstuff thead th {
background-color: #fff;
}
#section-copyright_case h4 {
font-weight: normal;
margin: 1.33em 0 0 0;
}
.begin_file {
margin: 5px 0 0 0 !important;
} | 0.232571 | 0.057758 |
html,
body {
min-height: 100%;
font-family: 'Microsoft YaHei', 'Source Sans Pro', Arial, sans-serif;
font-size: 12px;
font-weight: 400;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #393939;
}
ul {
-webkit-padding: 0;
-webkit-margin: 0;
padding: 0;
margin: 0;
}
li {
list-style-type: none;
}
@media (min-width: 768px) {
html, body {
height: 100%;
}
.main-shell {
min-height: 100%;
max-width: 50%;
margin-left: 25%;
box-shadow: 0 0 5px #888888;
}
}
@media (max-width: 767px) {
}
.main-header {
}
.nav-bar {
background-color: #44b78b;
color: #f0f0f0;
line-height: 22px;
display: -webkit-flex; /* Safari */
display: flex;
}
.nav-bar div {
padding: 12px 15px;
text-align: center;
}
.nav-bar .btn:hover {
background-color: #319978;
cursor: pointer;
}
.nav-bar p {
margin: 0;
}
.nav-bar i {
font-size: 24px;
vertical-align: middle;
}
.nav-bar span {
font-size: 22px;
font-weight: 600;
vertical-align: middle;
}
.nav-bar .title {
width: 100%;
text-align: center;
}
.nav-bar .home {
}
.main-body {
}
.app-panel {
margin-top: 10px;
}
.app-title {
background-color: #fff;
font-size: 15px;
font-weight: 600;
padding: 10px;
padding-left: 15px;
border-left: 3px solid #44b78b;
}
.app-menu {
background-color: #fff;
}
.app-menu > ul > li {
border-top: 1px solid #e8e8e8;
padding: 10px 0;
display: -webkit-flex; /* Safari */
display: flex;
}
.app-port {
width: 25%;
text-align: center;
}
.app-port .icon-font {
font-size: 20px;
height: 36px;
}
.app-port .iconfont {
color: #66cc99;
font-size: 28px;
cursor: pointer;
}
.app-port .iconfont:hover {
font-size: 32px;
}
.app-port .iconfont:active {
color: #319978;
}
.app-flash {
}
.zone-empty {
margin-top: 10px;
padding: 20px 15px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.main-footer {
}
.main-footer a {
color: #0028fd;
} | css/toolkit.css | html,
body {
min-height: 100%;
font-family: 'Microsoft YaHei', 'Source Sans Pro', Arial, sans-serif;
font-size: 12px;
font-weight: 400;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #393939;
}
ul {
-webkit-padding: 0;
-webkit-margin: 0;
padding: 0;
margin: 0;
}
li {
list-style-type: none;
}
@media (min-width: 768px) {
html, body {
height: 100%;
}
.main-shell {
min-height: 100%;
max-width: 50%;
margin-left: 25%;
box-shadow: 0 0 5px #888888;
}
}
@media (max-width: 767px) {
}
.main-header {
}
.nav-bar {
background-color: #44b78b;
color: #f0f0f0;
line-height: 22px;
display: -webkit-flex; /* Safari */
display: flex;
}
.nav-bar div {
padding: 12px 15px;
text-align: center;
}
.nav-bar .btn:hover {
background-color: #319978;
cursor: pointer;
}
.nav-bar p {
margin: 0;
}
.nav-bar i {
font-size: 24px;
vertical-align: middle;
}
.nav-bar span {
font-size: 22px;
font-weight: 600;
vertical-align: middle;
}
.nav-bar .title {
width: 100%;
text-align: center;
}
.nav-bar .home {
}
.main-body {
}
.app-panel {
margin-top: 10px;
}
.app-title {
background-color: #fff;
font-size: 15px;
font-weight: 600;
padding: 10px;
padding-left: 15px;
border-left: 3px solid #44b78b;
}
.app-menu {
background-color: #fff;
}
.app-menu > ul > li {
border-top: 1px solid #e8e8e8;
padding: 10px 0;
display: -webkit-flex; /* Safari */
display: flex;
}
.app-port {
width: 25%;
text-align: center;
}
.app-port .icon-font {
font-size: 20px;
height: 36px;
}
.app-port .iconfont {
color: #66cc99;
font-size: 28px;
cursor: pointer;
}
.app-port .iconfont:hover {
font-size: 32px;
}
.app-port .iconfont:active {
color: #319978;
}
.app-flash {
}
.zone-empty {
margin-top: 10px;
padding: 20px 15px;
background-color: #fff;
border-bottom: 1px solid #ddd;
}
.main-footer {
}
.main-footer a {
color: #0028fd;
} | 0.379953 | 0.060391 |
html, body {
height: calc(100% - 4px);
overflow: hidden;
}
.body-container {
height: calc(100vh - 100px);
display: flex;
margin-right: 0;
margin-left: 0;
}
.custom-row {
width: 100%;
margin-right: 20px;
margin-left: 5px;
}
#list-users-col {
position: absolute;
width: calc(100% - 5px);
height: calc(100% - 20px);
overflow-y: auto;
margin-top: 3px;
margin-bottom: 0px;
min-height: 200px;
}
.nav-tabs > li {
font-size: 11px;
}
.tab-container {
overflow: auto;
height: 91%;
}
.dropdown-status {
width: 73px;
}
.settings-col {
margin-top: 3px;
}
.user-row[data-disabled="true"] {
color: #b73e3e;
}
.header-row {
width: 100%;
}
.danger-text {
font-weight: bold;
color: #ff0000;
}
.success-text {
color: #308e29;
}
.mid-col {
height: 99%;
min-height: 350px;
}
#right-col-top {
height: 60%;
}
#right-col-bottom {
height: 40%;
}
.list-permissions-col {
height: 92.5%;
}
.role-row i.fa {
margin-top: 10px;
}
.role-row.role-from-team i.fa-users {
display: block !important;
cursor: pointer;
}
.team-row i.fa {
cursor: pointer;
}
.role-row.directly-assigned-role i.fa-user-o {
display: block !important;
}
.clickable-icon.selected {
color: #2e7a24;
}
.team-row {
display: inline;
}
.role-row {
display: inline-block;
width: 95%;
border-top: 1px solid #e5e5e5;
overflow: hidden;
padding-bottom: 2px;
}
.role-row.selected .checkbox-label {
font-weight: bold;
text-decoration: underline;
color: #992626;
}
.role-row:first-child {
border-top: 0;
}
.team-row.selected span {
font-weight: bold;
text-decoration: underline;
color: #992626;
}
.list-group {
position: absolute;
width: calc(100% - 5px);
height: 92%;
overflow-y: auto;
}
.team-row {
display: inline-block;
border: 1px solid #2e8bcc;
margin: 5px;
padding: 3px;
}
.col-header-title {
height: 35px;
overflow: hidden;
max-width: 74%;
}
.col-header-title h1, .col-header-title h2 {
display: inline;
}
.col-header-title h2 {
margin-left: 3px;
width: 70%;
}
.table {
font-size: 11px;
}
.table > thead > tr > th {
font-weight: normal;
text-decoration: underline;
text-align: center;
font-size: 10.5px;
}
.table > thead > tr > th:first-child {
font-weight: bold;
text-decoration: none;
text-align: left;
max-width: 72px;
}
.table > tbody > tr > td {
padding: 3.5px;
height: 23px;
}
.table-span-header {
font-weight: bold;
font-size: 17px;
border-top: 0px solid #fff !important;
}
.privilege_div {
width: 14px;
height: 14px;
display: block;
margin: 0 auto;
cursor: pointer;
}
.chk-roles {
margin-right: 0;
}
.privilege_empty {
background: url('../images/privileges/privilege_empty.png') no-repeat;
background-size: contain;
}
.privilege_user {
background: url('../images/privileges/privilege_user.png') no-repeat;
background-size: contain;
}
.privilege_bunit {
background: url('../images/privileges/privilege_bunit.png') no-repeat;
background-size: contain;
}
.privilege_child_bunit {
background: url('../images/privileges/privilege_child_bunit.png') no-repeat;
background-size: contain;
}
.privilege_organization {
background: url('../images/privileges/privilege_organization.png') no-repeat;
background-size: contain;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
padding: 5px;
}
#html_tooltip_wrapper {
display: none;
}
#tooltip_content {
width: 100%;
}
.privilege_row {
display: block;
width: 100%;
font-size: 13px;
}
.privilege_row>.privilege_empty {
display: inline-block;
}
#tooltip_role_name {
display: inline;
margin-left: 5px;
}
.privilege_row>.privilege_div {
width: 13px;
height: 13px;
cursor: default;
}
.sticky-table>thead>tr {
background-color: white;
}
.header-table {
margin-bottom: 0;
}
#txtSearch {
width: 50%;
display: inline-block;
float: right;
}
@media (max-width: 767px) {
html, body {
height: calc(100% - 3px);
}
html {
min-width: 460px;
overflow: auto;
}
.left-col {
height: 10%;
overflow-y: auto;
}
#list-users-col {
height: 75%;
width: calc(100vw - 40px);
min-height: 100px;
}
.mid-col {
height: 45%;
margin-top: 7px;
border-top: 1px solid #428bca;
margin-bottom: 20px;
min-height: 100px;
}
.right-col {
border-top: 1px solid #428bca;
width: calc(50% - 6px);
}
.role-row {
width: 95%;
}
#right-col-top {
height: 25%;
}
#right-col-bottom {
height: 25%;
}
.body-container {
width: 100%;
}
.custom-row {
margin-right: 5px;
}
.list-permissions-col {
height: 75%;
}
.list-group {
width: initial;
}
.header-row {
width: 98%;
}
} | styles/securityrolescheck.css | html, body {
height: calc(100% - 4px);
overflow: hidden;
}
.body-container {
height: calc(100vh - 100px);
display: flex;
margin-right: 0;
margin-left: 0;
}
.custom-row {
width: 100%;
margin-right: 20px;
margin-left: 5px;
}
#list-users-col {
position: absolute;
width: calc(100% - 5px);
height: calc(100% - 20px);
overflow-y: auto;
margin-top: 3px;
margin-bottom: 0px;
min-height: 200px;
}
.nav-tabs > li {
font-size: 11px;
}
.tab-container {
overflow: auto;
height: 91%;
}
.dropdown-status {
width: 73px;
}
.settings-col {
margin-top: 3px;
}
.user-row[data-disabled="true"] {
color: #b73e3e;
}
.header-row {
width: 100%;
}
.danger-text {
font-weight: bold;
color: #ff0000;
}
.success-text {
color: #308e29;
}
.mid-col {
height: 99%;
min-height: 350px;
}
#right-col-top {
height: 60%;
}
#right-col-bottom {
height: 40%;
}
.list-permissions-col {
height: 92.5%;
}
.role-row i.fa {
margin-top: 10px;
}
.role-row.role-from-team i.fa-users {
display: block !important;
cursor: pointer;
}
.team-row i.fa {
cursor: pointer;
}
.role-row.directly-assigned-role i.fa-user-o {
display: block !important;
}
.clickable-icon.selected {
color: #2e7a24;
}
.team-row {
display: inline;
}
.role-row {
display: inline-block;
width: 95%;
border-top: 1px solid #e5e5e5;
overflow: hidden;
padding-bottom: 2px;
}
.role-row.selected .checkbox-label {
font-weight: bold;
text-decoration: underline;
color: #992626;
}
.role-row:first-child {
border-top: 0;
}
.team-row.selected span {
font-weight: bold;
text-decoration: underline;
color: #992626;
}
.list-group {
position: absolute;
width: calc(100% - 5px);
height: 92%;
overflow-y: auto;
}
.team-row {
display: inline-block;
border: 1px solid #2e8bcc;
margin: 5px;
padding: 3px;
}
.col-header-title {
height: 35px;
overflow: hidden;
max-width: 74%;
}
.col-header-title h1, .col-header-title h2 {
display: inline;
}
.col-header-title h2 {
margin-left: 3px;
width: 70%;
}
.table {
font-size: 11px;
}
.table > thead > tr > th {
font-weight: normal;
text-decoration: underline;
text-align: center;
font-size: 10.5px;
}
.table > thead > tr > th:first-child {
font-weight: bold;
text-decoration: none;
text-align: left;
max-width: 72px;
}
.table > tbody > tr > td {
padding: 3.5px;
height: 23px;
}
.table-span-header {
font-weight: bold;
font-size: 17px;
border-top: 0px solid #fff !important;
}
.privilege_div {
width: 14px;
height: 14px;
display: block;
margin: 0 auto;
cursor: pointer;
}
.chk-roles {
margin-right: 0;
}
.privilege_empty {
background: url('../images/privileges/privilege_empty.png') no-repeat;
background-size: contain;
}
.privilege_user {
background: url('../images/privileges/privilege_user.png') no-repeat;
background-size: contain;
}
.privilege_bunit {
background: url('../images/privileges/privilege_bunit.png') no-repeat;
background-size: contain;
}
.privilege_child_bunit {
background: url('../images/privileges/privilege_child_bunit.png') no-repeat;
background-size: contain;
}
.privilege_organization {
background: url('../images/privileges/privilege_organization.png') no-repeat;
background-size: contain;
}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {
padding: 5px;
}
#html_tooltip_wrapper {
display: none;
}
#tooltip_content {
width: 100%;
}
.privilege_row {
display: block;
width: 100%;
font-size: 13px;
}
.privilege_row>.privilege_empty {
display: inline-block;
}
#tooltip_role_name {
display: inline;
margin-left: 5px;
}
.privilege_row>.privilege_div {
width: 13px;
height: 13px;
cursor: default;
}
.sticky-table>thead>tr {
background-color: white;
}
.header-table {
margin-bottom: 0;
}
#txtSearch {
width: 50%;
display: inline-block;
float: right;
}
@media (max-width: 767px) {
html, body {
height: calc(100% - 3px);
}
html {
min-width: 460px;
overflow: auto;
}
.left-col {
height: 10%;
overflow-y: auto;
}
#list-users-col {
height: 75%;
width: calc(100vw - 40px);
min-height: 100px;
}
.mid-col {
height: 45%;
margin-top: 7px;
border-top: 1px solid #428bca;
margin-bottom: 20px;
min-height: 100px;
}
.right-col {
border-top: 1px solid #428bca;
width: calc(50% - 6px);
}
.role-row {
width: 95%;
}
#right-col-top {
height: 25%;
}
#right-col-bottom {
height: 25%;
}
.body-container {
width: 100%;
}
.custom-row {
margin-right: 5px;
}
.list-permissions-col {
height: 75%;
}
.list-group {
width: initial;
}
.header-row {
width: 98%;
}
} | 0.371365 | 0.081264 |
body {
overflow: hidden;
display: flex;
margin: 0 auto;
justify-content: center;
}
#background-image-div {
left: 0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
filter: blur(20px);
-webkit-filter: blur(20px);
transform: scale(1.2);
z-index: inherit;
transition: background ease 2s;
}
.darken {
left: 0;
right: 0;
top: 0;
bottom: 0;
background-position: center top;
background: rgba(0, 0, 0, 0.3);
position: fixed;
z-index: 1;
height: auto;
}
#playing-div {
max-width: 100%;
min-width: 85%;
z-index: 2;
position: absolute;
display: flex;
align-items: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#playing-img {
border-radius: 20px;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
width: 100%;
height: auto;
}
#img-wrapper{
max-width:45%;
margin-right: 25px;
}
#pause-button{
position:relative;
left:50%;
bottom: 45px;
transform: translateX(-50%);
cursor:pointer;
color: white;
background-color: #00000040;
padding: 5px 10px 5px 10px;
box-shadow: 0 0px 0px rgba(0, 0, 0, 0.30), 0 5px 15px rgba(0, 0, 0, 0.22);
border-radius: 25px;
backdrop-filter: blur(25px);
}
#song-info-div {
margin-left: 25px;
width: 100%;
vertical-align: middle;
align-self: center;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 40px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#seekbar-now {
border-radius: 50px;
background-color: rgba(255, 255, 255, 0.90);
height: 15px;
transition: linear width 1s;
}
.settings-div {
padding: 5px 10px 5px 10px;
margin: 10px;
background-color: #FFFFFF20;
border-radius: 25px;
z-index: 3;
}
.settings-icons {
font-size: 26px;
}
.fadeInOut {
transition-duration: 200ms;
transition-property: visibility, opacity;
transition-delay: 0ms;
}
.hidden {
visibility: hidden;
opacity: 0;
transition-duration: 150ms;
transition-property: opacity, visibility;
transition-delay: 200ms;
}
.material-icons {
vertical-align: middle;
}
span, p, h1, h2, h3, h4, h5, h6, a {
color: #FFFFFF;
}
h1 {
font-size: 70px;
margin: 0px;
}
h2 {
font-size: 50px;
margin: 0px;
}
h3 {
font-size: 25px;
}
i.left {
float: left;
margin-right: 15px;
margin-top: 3px;
}
.left {
float: left;
}
i.right {
float: right;
margin-left: 15px;
margin-top: 3px;
}
.right {
float: right;
}
i.tiny {
font-size: 1rem
}
i.small {
font-size: 2rem
}
i.medium {
font-size: 4rem
}
i.large {
font-size: 6rem
}
.left-align {
text-align: left;
}
.left {
float: left !important;
}
.notbold {
font-weight: normal !important;
}
/* For mobile and tablets */
@media only screen and (max-width:767px) and (orientation: portrait) {
#playing-div {
flex-direction: column;
justify-content: center;
transform: translate(-50%, -50%);
}
#playing-img {
width:100%;
height:auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper {
margin-bottom: 10px;
margin-right: 0px;
max-width: 80%;
max-height: 60%;
}
#song-info-div {
margin-left: 0px;
width: 80%;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 20px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#device-name {
vertical-align: sub;
}
h1 {
font-size: 30px;
margin: 0px;
}
h2 {
font-size: 20px;
margin-top: 8px;
}
h3 {
font-size: 18px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
#playing-div {
flex-direction: column;
justify-content: center;
transform: translate(-50%, -50%);
}
#playing-img {
width:100%;
height: auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper{
margin-bottom: 10px;
margin-right: 0px;
max-width: 80%;
max-height: 60%;
}
#song-info-div {
width: 80%;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 20px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#device-name {
vertical-align: sub;
}
h1 {
font-size: 50px;
margin: 0px;
}
h2 {
font-size: 30px;
margin-top: 8px;
}
h3 {
font-size: 15px;
}
}
@media only screen and (orientation: landscape) and (max-width:767px) {
#playing-div {
flex-direction: row;
}
#playing-img {
width:100%;
height: auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper{
margin-right: 10px;
max-height: 45%;
}
#song-info-div {
margin-left: 5px;
width: 55%;
}
h1 {
font-size: 40px;
margin: 0px;
}
h2 {
font-size: 30px;
margin: 0px;
}
h3 {
font-size: 15px;
}
}
@media only screen and (orientation: landscape) and (max-width:1199px) {
#playing-div {
flex-direction: row;
}
#playing-img {
margin-right: 10px;
height: auto;
max-height: 45%;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#song-info-div {
margin-left: 5px;
width: 50%;
}
h1 {
font-size: 50px;
margin: 0px;
}
h2 {
font-size: 35px;
margin: 0px;
}
h3 {
font-size: 20px;
}
} | playing.css | body {
overflow: hidden;
display: flex;
margin: 0 auto;
justify-content: center;
}
#background-image-div {
left: 0;
right: 0;
top: 0;
bottom: 0;
position: absolute;
filter: blur(20px);
-webkit-filter: blur(20px);
transform: scale(1.2);
z-index: inherit;
transition: background ease 2s;
}
.darken {
left: 0;
right: 0;
top: 0;
bottom: 0;
background-position: center top;
background: rgba(0, 0, 0, 0.3);
position: fixed;
z-index: 1;
height: auto;
}
#playing-div {
max-width: 100%;
min-width: 85%;
z-index: 2;
position: absolute;
display: flex;
align-items: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#playing-img {
border-radius: 20px;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
width: 100%;
height: auto;
}
#img-wrapper{
max-width:45%;
margin-right: 25px;
}
#pause-button{
position:relative;
left:50%;
bottom: 45px;
transform: translateX(-50%);
cursor:pointer;
color: white;
background-color: #00000040;
padding: 5px 10px 5px 10px;
box-shadow: 0 0px 0px rgba(0, 0, 0, 0.30), 0 5px 15px rgba(0, 0, 0, 0.22);
border-radius: 25px;
backdrop-filter: blur(25px);
}
#song-info-div {
margin-left: 25px;
width: 100%;
vertical-align: middle;
align-self: center;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 40px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#seekbar-now {
border-radius: 50px;
background-color: rgba(255, 255, 255, 0.90);
height: 15px;
transition: linear width 1s;
}
.settings-div {
padding: 5px 10px 5px 10px;
margin: 10px;
background-color: #FFFFFF20;
border-radius: 25px;
z-index: 3;
}
.settings-icons {
font-size: 26px;
}
.fadeInOut {
transition-duration: 200ms;
transition-property: visibility, opacity;
transition-delay: 0ms;
}
.hidden {
visibility: hidden;
opacity: 0;
transition-duration: 150ms;
transition-property: opacity, visibility;
transition-delay: 200ms;
}
.material-icons {
vertical-align: middle;
}
span, p, h1, h2, h3, h4, h5, h6, a {
color: #FFFFFF;
}
h1 {
font-size: 70px;
margin: 0px;
}
h2 {
font-size: 50px;
margin: 0px;
}
h3 {
font-size: 25px;
}
i.left {
float: left;
margin-right: 15px;
margin-top: 3px;
}
.left {
float: left;
}
i.right {
float: right;
margin-left: 15px;
margin-top: 3px;
}
.right {
float: right;
}
i.tiny {
font-size: 1rem
}
i.small {
font-size: 2rem
}
i.medium {
font-size: 4rem
}
i.large {
font-size: 6rem
}
.left-align {
text-align: left;
}
.left {
float: left !important;
}
.notbold {
font-weight: normal !important;
}
/* For mobile and tablets */
@media only screen and (max-width:767px) and (orientation: portrait) {
#playing-div {
flex-direction: column;
justify-content: center;
transform: translate(-50%, -50%);
}
#playing-img {
width:100%;
height:auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper {
margin-bottom: 10px;
margin-right: 0px;
max-width: 80%;
max-height: 60%;
}
#song-info-div {
margin-left: 0px;
width: 80%;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 20px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#device-name {
vertical-align: sub;
}
h1 {
font-size: 30px;
margin: 0px;
}
h2 {
font-size: 20px;
margin-top: 8px;
}
h3 {
font-size: 18px;
}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (orientation: portrait) {
#playing-div {
flex-direction: column;
justify-content: center;
transform: translate(-50%, -50%);
}
#playing-img {
width:100%;
height: auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper{
margin-bottom: 10px;
margin-right: 0px;
max-width: 80%;
max-height: 60%;
}
#song-info-div {
width: 80%;
}
#seekbar-bg {
border-radius: 50px;
margin-top: 20px;
height: 15px;
width: 100%;
background-color: rgba(255, 255, 255, 0.50);
}
#device-name {
vertical-align: sub;
}
h1 {
font-size: 50px;
margin: 0px;
}
h2 {
font-size: 30px;
margin-top: 8px;
}
h3 {
font-size: 15px;
}
}
@media only screen and (orientation: landscape) and (max-width:767px) {
#playing-div {
flex-direction: row;
}
#playing-img {
width:100%;
height: auto;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#img-wrapper{
margin-right: 10px;
max-height: 45%;
}
#song-info-div {
margin-left: 5px;
width: 55%;
}
h1 {
font-size: 40px;
margin: 0px;
}
h2 {
font-size: 30px;
margin: 0px;
}
h3 {
font-size: 15px;
}
}
@media only screen and (orientation: landscape) and (max-width:1199px) {
#playing-div {
flex-direction: row;
}
#playing-img {
margin-right: 10px;
height: auto;
max-height: 45%;
box-shadow: 0 19px 38px rgba(0, 0, 0, 0.30), 0 15px 12px rgba(0, 0, 0, 0.22);
}
#song-info-div {
margin-left: 5px;
width: 50%;
}
h1 {
font-size: 50px;
margin: 0px;
}
h2 {
font-size: 35px;
margin: 0px;
}
h3 {
font-size: 20px;
}
} | 0.383872 | 0.14262 |
.base00-background { background-color: #1b181b; }
.base01-background { background-color: #292329; }
.base02-background { background-color: #695d69; }
.base03-background { background-color: #776977; }
.base04-background { background-color: #9e8f9e; }
.base05-background { background-color: #ab9bab; }
.base06-background { background-color: #d8cad8; }
.base07-background { background-color: #f7f3f7; }
.base08-background { background-color: #ca402b; }
.base09-background { background-color: #a65926; }
.base0A-background { background-color: #bb8a35; }
.base0B-background { background-color: #379a37; }
.base0C-background { background-color: #159393; }
.base0D-background { background-color: #516aec; }
.base0E-background { background-color: #7b59c0; }
.base0F-background { background-color: #cc33cc; }
.base00 { color: #1b181b; }
.base01 { color: #292329; }
.base02 { color: #695d69; }
.base03 { color: #776977; }
.base04 { color: #9e8f9e; }
.base05 { color: #ab9bab; }
.base06 { color: #d8cad8; }
.base07 { color: #f7f3f7; }
.base08 { color: #ca402b; }
.base09 { color: #a65926; }
.base0A { color: #bb8a35; }
.base0B { color: #379a37; }
a, .base0C { color: #159393; }
a:hover, a:active, .base0D { color: #516aec; }
.base0E { color: #7b59c0; }
.base0F { color: #cc33cc; }
.base00-border { border-color: #1b181b; }
.base01-border { border-color: #292329; }
.base02-border { border-color: #695d69; }
.base03-border { border-color: #776977; }
.base04-border { border-color: #9e8f9e; }
.base05-border { border-color: #ab9bab; }
.base06-border { border-color: #d8cad8; }
.base07-border { border-color: #f7f3f7; }
.base08-border { border-color: #ca402b; }
.base09-border { border-color: #a65926; }
.base0A-border { border-color: #bb8a35; }
.base0B-border { border-color: #379a37; }
.base0C-border { border-color: #159393; }
.base0D-border { border-color: #516aec; }
.base0E-border { border-color: #7b59c0; }
.base0F-border { border-color: #cc33cc; }
input[type="submit"], button {
border:1px solid transparent; /** fix position issue **/
background-color: #516aec;
} | css/themes/base16-atelierheath.rc.css | .base00-background { background-color: #1b181b; }
.base01-background { background-color: #292329; }
.base02-background { background-color: #695d69; }
.base03-background { background-color: #776977; }
.base04-background { background-color: #9e8f9e; }
.base05-background { background-color: #ab9bab; }
.base06-background { background-color: #d8cad8; }
.base07-background { background-color: #f7f3f7; }
.base08-background { background-color: #ca402b; }
.base09-background { background-color: #a65926; }
.base0A-background { background-color: #bb8a35; }
.base0B-background { background-color: #379a37; }
.base0C-background { background-color: #159393; }
.base0D-background { background-color: #516aec; }
.base0E-background { background-color: #7b59c0; }
.base0F-background { background-color: #cc33cc; }
.base00 { color: #1b181b; }
.base01 { color: #292329; }
.base02 { color: #695d69; }
.base03 { color: #776977; }
.base04 { color: #9e8f9e; }
.base05 { color: #ab9bab; }
.base06 { color: #d8cad8; }
.base07 { color: #f7f3f7; }
.base08 { color: #ca402b; }
.base09 { color: #a65926; }
.base0A { color: #bb8a35; }
.base0B { color: #379a37; }
a, .base0C { color: #159393; }
a:hover, a:active, .base0D { color: #516aec; }
.base0E { color: #7b59c0; }
.base0F { color: #cc33cc; }
.base00-border { border-color: #1b181b; }
.base01-border { border-color: #292329; }
.base02-border { border-color: #695d69; }
.base03-border { border-color: #776977; }
.base04-border { border-color: #9e8f9e; }
.base05-border { border-color: #ab9bab; }
.base06-border { border-color: #d8cad8; }
.base07-border { border-color: #f7f3f7; }
.base08-border { border-color: #ca402b; }
.base09-border { border-color: #a65926; }
.base0A-border { border-color: #bb8a35; }
.base0B-border { border-color: #379a37; }
.base0C-border { border-color: #159393; }
.base0D-border { border-color: #516aec; }
.base0E-border { border-color: #7b59c0; }
.base0F-border { border-color: #cc33cc; }
input[type="submit"], button {
border:1px solid transparent; /** fix position issue **/
background-color: #516aec;
} | 0.492188 | 0.111048 |
blockquote,body,button,caption,dd,div,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hr,html,input,legend,li,menu,ol,p,pre,select,table,td,textarea,th,ul{margin:0;padding:0}
address,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
table{border-collapse:collapse;border-spacing:0}
caption,th{text-align:left;font-weight:400}
abbr,body,fieldset,html,iframe,img{border:0}
address,cite,dfn,em,i,var{font-style:normal}
[hidefocus],summary{outline:0}
li{list-style:none}
h1,h2,h3,h4,h5,h6,small{font-size:100%}
sub,sup{font-size:83%}
code,kbd,pre,samp{font-family:inherit}
q:after,q:before{content:none}
textarea{overflow:auto;resize:none}
label,summary{cursor:default}
a,button{cursor:pointer}
b,em,h1,h2,h3,h4,h5,h6,strong{font-weight:700}
a,a:hover,del,ins,s,u{text-decoration:none}
body,button,input,keygen,legend,select,textarea{font-family:"Microsoft YaHei"!important;color:#555;outline:0;-webkit-text-size-adjust:none}
body{background:#00021d;-webkit-tap-highlight-color:transparent}
a,a:hover{color:#333}
input,input[type=button],input[type=submit],input[type=reset],select,textarea{-webkit-appearance:none;border-radius:0;-webkit-tap-highlight-color:transparent}
div{-webkit-user-select:none;-webkit-touch-callout:none}
.f-cb:after,.f-cbli li:after{display:block;clear:both;visibility:hidden;height:0;overflow:hidden;content:"."}
.f-cb,.f-cbli li{zoom:1}
.f-ib{display:inline-block}
.f-dn{display:none}
.f-db{display:block}
.f-fl{float:left}
.f-fr{float:right}
.f-pr{position:relative}
.f-prz{position:relative;zoom:1}
.f-oh{overflow:hidden}
.f-ff0{font-family:arial,\5b8b\4f53}
.f-ff1{font-family:"Microsoft YaHei",\5fae\8f6f\96c5\9ed1,arial,\5b8b\4f53}
.f-fs1{font-size:12px}
.f-fs2{font-size:14px}
.f-fwn{font-weight:400}
.f-fwb{font-weight:700}
.f-tal{text-align:left!important}
.f-tac{text-align:center!important}
.f-tar{text-align:right!important}
.f-taj{text-align:justify;text-justify:inter-ideograph}
.f-vam,.f-vama *{vertical-align:middle}
.f-wsn{word-wrap:normal;white-space:nowrap}
.f-pre{overflow:hidden;text-align:left;white-space:pre-wrap;word-wrap:break-word;word-break:break-all}
.f-wwb{white-space:normal;word-wrap:break-word;word-break:break-all}
.f-ti{overflow:hidden;text-indent:-30000px}
.f-ti2{text-indent:2em}
.f-lhn{line-height:normal}
.f-tdu,.f-tdu:hover{text-decoration:underline}
.f-tdn,.f-tdn:hover{text-decoration:none}
.f-toe{overflow:hidden;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis}
.f-csp{cursor:pointer}
.f-csd{cursor:default}
.f-csh{cursor:help}
.f-csm{cursor:move}
.f-usn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}
.f-box{display:-webkit-box;display:-moz-box;display:-o-box;display:-ms-box;display:box;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-o-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}
.f-flex{-webkit-box-flex:2;box-flex:2}
.block{display:block!important}
.hide{display:none!important}
.trst{-webkit-transition:all .3s linear;transition:all .3s linear}
/*.sprite{background-image:url(../images/sprite.png);background-repeat:no-repeat}*/
.color1{color:#a7925c}
.swiper-container{width:100%;max-width:640px;height:100%;position:absolute}
.swiper-slide{background-position:center;background-size:contain}
body,html{position:relative;max-width:640px;height:100%;margin:0 auto;-webkit-tap-highlight-color:transparent}
body{width:100%;height:100%;color:#000;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
.loading{position:fixed;z-index:200;left:50%;top:50%;width:400px;height:400px;overflow:hidden;margin:-200px 0 0 -200px;background-color:#229869;border:8px solid #F0B501;border-radius:200px;-webkit-box-sizing:border-box;box-sizing:border-box}
.loading.loaded{opacity:0!important;-webkit-transition:all .3s linear;transition:all .3s linear}
.loading img{position:relative;z-index:2;display:block;width:238px;height:147px;margin:90px auto 0 auto}
.loading .tip{position:relative;z-index:2;width:100%;margin-top:25px;color:#FFF;font-size:34px;text-align:center;letter-spacing:1px}
.loading .ing{position:relative;z-index:2;top:15px;display:block;width:54px;height:6px;margin-left:173px;overflow:hidden}
.loading .ing span{position:absolute;top:0;display:block;width:6px;height:6px;background-color:#FFF}
.loading .ing span:nth-child(1){left:6px}
.loading .ing span:nth-child(2){left:24px}
.loading .ing span:nth-child(3){left:42px}
#canvasLoad{position:absolute;left:0;top:0;z-index:1;-webkit-animation:r 2s linear infinite;animation:r 2s linear infinite}
@keyframes r{0%{transform:rotate(0)}
100%{transform:rotate(-360deg)}
}
@-webkit-keyframes r{0%{-webkit-transform:rotate(0)}
100%{-webkit-transform:rotate(-360deg)}
}
.player-button{position:fixed;z-index:100;display:block;top:13px;right:13px;width:50px;height:50px;background:url(../img/common/music.png) no-repeat center;background-size:100% 100%;cursor:pointer;-webkit-animation:r 1.2s linear infinite;animation:r 1.2s linear infinite}
.player-button-stop{-webkit-animation:none;animation:none}
.downArrow{position:absolute;z-index:10;left:50%;bottom:40px;display:block;width:68px;height:50px;margin-left:-34px;background:url(../img/common/button.png) no-repeat;-webkit-animation:f 1s linear infinite alternate;animation:f 1s linear infinite alternate}
@keyframes f{0%{bottom:40px}
100%{bottom:10px}
}
@-webkit-keyframes f{0%{bottom:40px}
100%{bottom:10px}
}
.page{position:relative;overflow:hidden;min-height:100%;background:url(../img/common/bg.jpg) no-repeat top #000000;background-repeat:no-repeat;background-size:100% 100%;background-position:top}
.page .pageInr{position:absolute;left:0;top:0;width:100%;height:100%}
.page .elm,.page .text{position:absolute;z-index:2;display:block;background-repeat:no-repeat;overflow: hidden}
.page1{width:640px;height:1136px;background-color:#00021d;background-position:top}
/*page1*/
.page1 .elm1{left:215px;top:347px;}
.page1 .elm3{right:137px;top:568px;}
.page1 .elm6{left:61px;top:275px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm7{left:61px;top:390px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm8{left:66px;top:320px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page1 .elm10{left:145px;top:700px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm11{right:304px;top:700px;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page1 .elm12{left:461px;top:700px;-webkit-animation-delay:2.4s;animation-delay:2.4s}
.page1 .elm13{left:80px;top:444px;-webkit-animation-delay:2.1s;animation-delay:2.1s;opacity: 0;}
/*page2*/
.page2{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page2 .elm1{left:247px;top:30px;opacity:0}
.page2 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm4{left:50px;top:286px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s}
.page2 .elm5{left:50px;top:342px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page2 .elm6{left:50px;top:431px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page2 .elm7{left:50px;top:488px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page2 .elm8{left:50px;top:576px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page2 .elm9{left:50px;top:635px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s;}
.page2 .elm10{left:50px;top:722px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page2 .elm11{left:50px;top:778px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page2 .elm12{left:440px;top:209px;opacity:0;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm13{left:46px;top:892px;opacity:0;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page3*/
.page3{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page3 .elm1{left:247px;top:30px;opacity:0}
.page3 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page3 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page3 .elm4{left:318px;top:168px;-webkit-animation-delay:.65s;animation-delay:.65s}
.page3 .elm5{left:372px;top:208px;-webkit-animation-delay:.75s;animation-delay:.75s}
.page3 .elm6{left:284px;top:282px;-webkit-animation-delay:1s;animation-delay:1s}
.page3 .elm7{left:318px;top:329px;-webkit-animation-delay:1.25s;animation-delay:1.25s;opacity:0}
.page3 .elm23{left:359px;top:404px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page3 .elm22{left:81px;top:383px;width:289px;height:515px;z-index:999}
.page3 .elm8{left:0px;top:376px;-webkit-animation-delay:1.5s;animation-delay:1.5s;}
.page3 .elm9{left:186px;top:606px;-webkit-animation-delay:2.25s;animation-delay:2.25s;opacity:0;-webkit-animation-direction:alternate;animation-direction:alternate;}
.page3 .elm10{left:198px;top:621px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm27{left:339px;top:575px;-webkit-animation-delay:1.75s;animation-delay:1.75s;}
.page3 .elm28{left:299px;top:613px;-webkit-animation-delay:2s;animation-delay:2s;}
.page3 .elm29{left:284px;top:613px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm30{left:314px;top:512px;display:none;z-index: 999;}
.page3 .elm31{left:410px;top:583px;-webkit-animation-delay:2s;animation-delay:2s;}
.page3 .elm32{left:410px;top:653px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm33{left:410px;top:730px;-webkit-animation-delay:2.5s;animation-delay:2.5s;}
.page3 .elm34{left:435px;top:486px;display:none}
.page3 .elm35{left:421px;top:544px;display:none}
.page3 .elm36{left:421px;top:614px;display:none}
.page3 .elm37{left:421px;top:689px;display:none}
.page3 .elm38{left:421px;top:759px;display:none}
.page3 .elm39{left:82px;top:431px;display:none}
.page3 .elm40{left:0px;top:246px;}
.page3 .elm41{right:26px;top:923px;}
/*page4*/
.page4{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page4 .elm1{left:247px;top:30px;opacity:0}
.page4 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm4{left:226px;top:194px;-webkit-animation-delay:1s;animation-delay:1s}
.page4 .elm5{left:278px;top:551px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s}
.page4 .elm6{left:287px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
/*icon1*/
.page4 .elm7{left:190px;top:392px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm8{left:202px;top:400px;opacity:0;-webkit-animation-delay:3.8s;animation-delay:3.8s}
/*text1*/
.page4 .text1{
left:122px;
top: 311px;
width: 155px;
height: 76px;
overflow: visible;
}
.page4 .elm9{left:0px;top:0px;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm10{right:0px;top:9px;-webkit-animation-delay:3.8s;animation-delay:3.8s}
/*line1~6*/
.page4 .elm11{right:246px;top:410px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
.page4 .elm12{left:156px;bottom:430px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page4 .elm13{right:373px;top:578px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page4 .elm14{left:378px;top:578px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page4 .elm15{right:152px;top:610px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page4 .elm16{left:252px;top:746px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
/*text2*/
.page4 .text2{
left:367px;
top: 312px;
width: 154px;
height: 76px;
overflow: visible;
}
.page4 .elm17{left:0px;top:9px;-webkit-animation-delay:2.8s;animation-delay:2.8s}
.page4 .elm18{right:0px;top:0px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
/*icon2*/
.page4 .elm19{left:390px;top:392px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .elm20{left:399px;top:402px;opacity:0;-webkit-animation-delay:2.8s;animation-delay:2.8s}
/*icon3*/
.page4 .elm21{left:100px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .elm22{left:113px;top:569px;opacity:0;-webkit-animation-delay:1.8s;animation-delay:1.8s}
/*icon4*/
.page4 .elm23{left:484px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .elm24{left:495px;top:576px;opacity:0;-webkit-animation-delay:1.8s;animation-delay:1.8s}
/*icon5*/
.page4 .elm25{left:190px;top:730px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .elm26{left:201px;top:740px;opacity:0;-webkit-animation-delay:2.8s;animation-delay:2.8s}
/*icon6*/
.page4 .elm27{left:390px;top:730px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm28{left:399px;top:746px;opacity:0;-webkit-animation-delay:3.8s;animation-delay:3.8s}
.page4 .text3{
left:367px;
top: 480px;
width: 221px;
height: 77px;
overflow: visible;
}
.page4 .elm29{left:0px;top:9px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page4 .elm30{right:0px;top:0px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .text4{
left:20px;
top: 631px;
width: 258px;
height: 75px;
overflow: visible;
}
.page4 .elm31{right:0px;top:9px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page4 .elm32{left:0px;top:0px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .text5{
left:89px;
top: 798px;
width: 189px;
height: 76px;
overflow: visible;
}
.page4 .elm33{right:0px;top:9px;-webkit-animation-delay:2.8s;animation-delay:2.8s}
.page4 .elm34{left:0px;top:0px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .text6{
left:368px;
top: 798px;
width: 254px;
height: 76px;
overflow: visible;
}
.page4 .elm35{left:0px;top:9px;-webkit-animation-delay:3.8s;animation-delay:3.8s}
.page4 .elm36{right:0px;top:0px;-webkit-animation-delay:3.3s;animation-delay:3.3s}
.page4 .elm37{left:508px;top:211px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm38{left:26px;top:893px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page5*/
.page5{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page5 .elm1{left:247px;top:30px;opacity:0}
.page5 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm4{left:293px;top:261px;-webkit-animation-delay:1s;animation-delay:1s}
.page5 .elm5{left:94px;top:328px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page5 .elm6{left:212px;top:574px;-webkit-animation-delay:2s;animation-delay:2s}
.page5 .elm7{left:280px;top:162px;opacity:0}
.page5 .elm8{left:12px;top:671px;opacity:0;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page5 .elm9{left:20px;top:675px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page5 .elm10{left:402px;top:714px;-webkit-animation-delay:2.75s;animation-delay:2.75s}
.page5 .elm11{left:417px;top:796px;-webkit-animation-delay:3s;animation-delay:3s}
.page5 .elm12{left:82px;top:669px;opacity:0;-webkit-animation-delay:2.75s;animation-delay:2.75s}
.page5 .elm13{left:238px;top:636px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
.page5 .elm14{left:446px;top:681px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page5 .elm15{right:60px;top:778px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page5 .elm16{left:338px;top:799px;opacity:0;-webkit-animation-delay:3.75s;animation-delay:3.75s}
.page5 .elm17{left:148px;top:764px;opacity:0;-webkit-animation-delay:4s;animation-delay:4s}
.page5 .elm18{left:0;top:123px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm19{right:12px;top:484px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page6*/
.page6{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page6 .elm1{left:247px;top:30px;opacity:0}
.page6 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm4{left:310px;top:246px;-webkit-animation-delay:.75s;animation-delay:.75s;z-index:99;opacity:0}
.page6 .elm5{left:255px;top:312px;-webkit-animation-delay:1s;animation-delay:1s}
.page6 .elm6{left:200px;top:531px;-webkit-animation-delay:1.25s;animation-delay:1.25s;z-index:99}
.page6 .elm7{left:148px;top:594px;-webkit-animation-delay:1.5s;animation-delay:1.5s;z-index:99}
.page6 .elm8{left:264px;top:619px;-webkit-animation-delay:1.65s;animation-delay:1.65s;z-index: 99}
.page6 .elm9{left:110px;top:606px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page6 .elm10{left:110px;top:677px;opacity:0;-webkit-animation-delay:1.95s;animation-delay:1.95s}
.page6 .elm11{left:110px;top:751px;opacity:0;-webkit-animation-delay:2.1s;animation-delay:2.1s}
.page6 .elm12{left:110px;top:823px;opacity:0;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page6 .elm13{left:246px;top:246px;opacity:0}
.page6 .elm14{left:534px;top:183px;opacity:0}
.page6 .elm15{left:52px;top:400px;opacity:0}
.page6 .elm16{left:530px;top:287px;opacity:0}
.page6 .elm18{left:537px;top:312px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page6 .elm19{left:11px;top:170px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm20{right:11px;top:428px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page7*/
.page7{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page7 .elm1{left:247px;top:30px;opacity:0}
.page7 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm4{left:205px;top:283px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page7 .elm5{left:152px;top:350px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page7 .elm6{left:184px;top:544px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page7 .elm7{left:172px;top:183px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page7 .elm8{left:143px;top:608px;-webkit-animation-delay:2.15s;animation-delay:2.15s}
.page7 .elm9{left:366px;top:608px;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page7 .elm10{left:143px;top:759px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page7 .elm11{left:365px;top:759px;-webkit-animation-delay:2.3s;animation-delay:2.3s}
.page7 .elm12{left:160px;top:639px;-webkit-animation-delay:2.3s;animation-delay:2.3s}
.page7 .elm13{left:392px;top:639px;-webkit-animation-delay:2.35s;animation-delay:2.35s}
.page7 .elm14{left:166px;top:792px;-webkit-animation-delay:2.4s;animation-delay:2.4s}
.page7 .elm15{left:404px;top:792px;-webkit-animation-delay:2.45s;animation-delay:2.45s}
.page7 .elm16{left:0;top:180px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm17{right:6px;top:523px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm.circle{width:18px;height:18px;border:2px solid #b40b20;border-radius:50%;opacity:0;-webkit-animation-delay:4s;animation-delay:4s}
.page7 .elm.circle .small{width:12px;height:12px;border-radius:50%;background:#b40b20;margin:3px 0 0 3px}
/*page8*/
.page8{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page8 .elm1{left:247px;top:30px;opacity:0}
.page8 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page8 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page8 .elm4{left:178px;top:154px;-webkit-animation-delay:1s;animation-delay:1s}
.page8 .elm5{left:217px;top:181px;-webkit-animation-delay:1.25s;animation-delay:1.25s}
.page8 .elm6{left:185px;top:225px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
/*.page8 .elm7{left:47px;top:299px;-webkit-animation-delay:1.75s;animation-delay:1.75s}*/
/*.page8 .elm8{left:47px;top:451px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}*/
/*.page8 .elm9{left:47px;top:600px;-webkit-animation-delay:2.25s;animation-delay:2.25s}*/
/*.page8 .elm10{left:48px;top:328px;-webkit-animation-delay:1.75s;animation-delay:1.75s}*/
/*.page8 .elm11{left:48px;top:480px;-webkit-animation-delay:2s;animation-delay:2s}*/
/*.page8 .elm12{left:48px;top:628px;-webkit-animation-delay:2.25s;animation-delay:2.25s}*/
/*.page8 .elm13{left:365px;top:332px;-webkit-animation-delay:2.5s;animation-delay:2.5s}*/
/*.page8 .elm14{left:367px;top:482px;-webkit-animation-delay:2.75s;animation-delay:2.75s}*/
/*.page8 .elm15{left:377px;top:633px;-webkit-animation-delay:3s;animation-delay:3s}*/
/*.page8 .elm16{left:425px;top:380px;-webkit-animation-delay:2.75s;animation-delay:2.75s}*/
/*.page8 .elm17{left:425px;top:531px;-webkit-animation-delay:3s;animation-delay:3s}*/
/*.page8 .elm18{left:425px;top:679px;-webkit-animation-delay:3.25s;animation-delay:3.25s}*/
.page8 .elm19{left:48px;top:754px;-webkit-animation-delay:3s;animation-delay:3s}
.page8 .elm20{left:80px;top:803px;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page8 .elm21{left:483px;top:215px;-webkit-animation-delay:1s;animation-delay:1s}
.page8 .elm22{left:43px;top:922px;;-webkit-animation-delay:1s;animation-delay:1s}
/*page9*/
.page9{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page9 .elm1{left:190px;top:347px;}
.page9 .elm2{left:254px;top:392px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm3{left:137px;top:614px;}
.page9 .elm4{left:187px;top:736px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page9 .elm5{left:170px;top:777px;-webkit-animation-delay:2s;animation-delay:2s}
.page9 .elm6{left:38px;top:12px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page9 .elm7{left:227px;top:564px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm10{left:190px;top:347px;}
.page9 .elm11{left:254px;top:392px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm12{left:137px;top:614px;}
.page9 .elm13{left:238px;top:736px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page9 .elm14{left:170px;top:777px;-webkit-animation-delay:2s;animation-delay:2s}
.page9 .elm15{left:38px;top:12px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page9 .elm16{left:227px;top:564px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.showquick{
-webkit-animation-delay:0s;animation-delay:.0s;
opacity:0;
}
.barrage{
position: absolute;
top: 318px;
width: 100%;
/*overflow: hidden;*/
}
.barrage li {
background: url("../img/p8/block.png") no-repeat center bottom;
background-size: 100% 50%;
width: 100%;
height: 100px;
/*margin-top: 58px;*/
overflow: hidden;
}
.barrage li div {
position: absolute;
width:2677px;
height:25%;
}
.barrage li:nth-child(1) div{
left:0%;
}
.barrage li:nth-child(2) div{
left:0%;
}
.barrage li:nth-child(3) div{
left:0%;
}
.barrage li:nth-child(4) div{
left:0%;
}
.barrage li div img{
margin-top: 40px;
}
#barrage1,#barrage2,#barrage3,#barrage4,#barrage5,#barrage6,#barrage7,#barrage8{
position: absolute;
left: 990px;;
}
#barrage2{
position: absolute;
left: 640px ;
-webkit-animation-delay: 8s;
-moz-animation-delay: 8s;
-o-animation-delay: 8s;
animation-delay: 8s;
display: none;
}
#barrage3{
position: absolute;
left: 640px;;
}
#barrage4{
position: absolute;
left: 640px ;display: none;
}
#barrage5{
position: absolute;
left: 880px;;
}
#barrage6{
position: absolute;
left: 640px ;display: none;
}
#barrage7{
position: absolute;
left: 1080px;;
}
#barrage8{
position: absolute;
left: 640px ;display: none;
} | gxlm3.1/css/style.css | blockquote,body,button,caption,dd,div,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hr,html,input,legend,li,menu,ol,p,pre,select,table,td,textarea,th,ul{margin:0;padding:0}
address,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
table{border-collapse:collapse;border-spacing:0}
caption,th{text-align:left;font-weight:400}
abbr,body,fieldset,html,iframe,img{border:0}
address,cite,dfn,em,i,var{font-style:normal}
[hidefocus],summary{outline:0}
li{list-style:none}
h1,h2,h3,h4,h5,h6,small{font-size:100%}
sub,sup{font-size:83%}
code,kbd,pre,samp{font-family:inherit}
q:after,q:before{content:none}
textarea{overflow:auto;resize:none}
label,summary{cursor:default}
a,button{cursor:pointer}
b,em,h1,h2,h3,h4,h5,h6,strong{font-weight:700}
a,a:hover,del,ins,s,u{text-decoration:none}
body,button,input,keygen,legend,select,textarea{font-family:"Microsoft YaHei"!important;color:#555;outline:0;-webkit-text-size-adjust:none}
body{background:#00021d;-webkit-tap-highlight-color:transparent}
a,a:hover{color:#333}
input,input[type=button],input[type=submit],input[type=reset],select,textarea{-webkit-appearance:none;border-radius:0;-webkit-tap-highlight-color:transparent}
div{-webkit-user-select:none;-webkit-touch-callout:none}
.f-cb:after,.f-cbli li:after{display:block;clear:both;visibility:hidden;height:0;overflow:hidden;content:"."}
.f-cb,.f-cbli li{zoom:1}
.f-ib{display:inline-block}
.f-dn{display:none}
.f-db{display:block}
.f-fl{float:left}
.f-fr{float:right}
.f-pr{position:relative}
.f-prz{position:relative;zoom:1}
.f-oh{overflow:hidden}
.f-ff0{font-family:arial,\5b8b\4f53}
.f-ff1{font-family:"Microsoft YaHei",\5fae\8f6f\96c5\9ed1,arial,\5b8b\4f53}
.f-fs1{font-size:12px}
.f-fs2{font-size:14px}
.f-fwn{font-weight:400}
.f-fwb{font-weight:700}
.f-tal{text-align:left!important}
.f-tac{text-align:center!important}
.f-tar{text-align:right!important}
.f-taj{text-align:justify;text-justify:inter-ideograph}
.f-vam,.f-vama *{vertical-align:middle}
.f-wsn{word-wrap:normal;white-space:nowrap}
.f-pre{overflow:hidden;text-align:left;white-space:pre-wrap;word-wrap:break-word;word-break:break-all}
.f-wwb{white-space:normal;word-wrap:break-word;word-break:break-all}
.f-ti{overflow:hidden;text-indent:-30000px}
.f-ti2{text-indent:2em}
.f-lhn{line-height:normal}
.f-tdu,.f-tdu:hover{text-decoration:underline}
.f-tdn,.f-tdn:hover{text-decoration:none}
.f-toe{overflow:hidden;word-wrap:normal;white-space:nowrap;text-overflow:ellipsis}
.f-csp{cursor:pointer}
.f-csd{cursor:default}
.f-csh{cursor:help}
.f-csm{cursor:move}
.f-usn{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}
.f-box{display:-webkit-box;display:-moz-box;display:-o-box;display:-ms-box;display:box;-webkit-box-orient:horizontal;-moz-box-orient:horizontal;-o-box-orient:horizontal;-ms-box-orient:horizontal;box-orient:horizontal}
.f-flex{-webkit-box-flex:2;box-flex:2}
.block{display:block!important}
.hide{display:none!important}
.trst{-webkit-transition:all .3s linear;transition:all .3s linear}
/*.sprite{background-image:url(../images/sprite.png);background-repeat:no-repeat}*/
.color1{color:#a7925c}
.swiper-container{width:100%;max-width:640px;height:100%;position:absolute}
.swiper-slide{background-position:center;background-size:contain}
body,html{position:relative;max-width:640px;height:100%;margin:0 auto;-webkit-tap-highlight-color:transparent}
body{width:100%;height:100%;color:#000;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
.loading{position:fixed;z-index:200;left:50%;top:50%;width:400px;height:400px;overflow:hidden;margin:-200px 0 0 -200px;background-color:#229869;border:8px solid #F0B501;border-radius:200px;-webkit-box-sizing:border-box;box-sizing:border-box}
.loading.loaded{opacity:0!important;-webkit-transition:all .3s linear;transition:all .3s linear}
.loading img{position:relative;z-index:2;display:block;width:238px;height:147px;margin:90px auto 0 auto}
.loading .tip{position:relative;z-index:2;width:100%;margin-top:25px;color:#FFF;font-size:34px;text-align:center;letter-spacing:1px}
.loading .ing{position:relative;z-index:2;top:15px;display:block;width:54px;height:6px;margin-left:173px;overflow:hidden}
.loading .ing span{position:absolute;top:0;display:block;width:6px;height:6px;background-color:#FFF}
.loading .ing span:nth-child(1){left:6px}
.loading .ing span:nth-child(2){left:24px}
.loading .ing span:nth-child(3){left:42px}
#canvasLoad{position:absolute;left:0;top:0;z-index:1;-webkit-animation:r 2s linear infinite;animation:r 2s linear infinite}
@keyframes r{0%{transform:rotate(0)}
100%{transform:rotate(-360deg)}
}
@-webkit-keyframes r{0%{-webkit-transform:rotate(0)}
100%{-webkit-transform:rotate(-360deg)}
}
.player-button{position:fixed;z-index:100;display:block;top:13px;right:13px;width:50px;height:50px;background:url(../img/common/music.png) no-repeat center;background-size:100% 100%;cursor:pointer;-webkit-animation:r 1.2s linear infinite;animation:r 1.2s linear infinite}
.player-button-stop{-webkit-animation:none;animation:none}
.downArrow{position:absolute;z-index:10;left:50%;bottom:40px;display:block;width:68px;height:50px;margin-left:-34px;background:url(../img/common/button.png) no-repeat;-webkit-animation:f 1s linear infinite alternate;animation:f 1s linear infinite alternate}
@keyframes f{0%{bottom:40px}
100%{bottom:10px}
}
@-webkit-keyframes f{0%{bottom:40px}
100%{bottom:10px}
}
.page{position:relative;overflow:hidden;min-height:100%;background:url(../img/common/bg.jpg) no-repeat top #000000;background-repeat:no-repeat;background-size:100% 100%;background-position:top}
.page .pageInr{position:absolute;left:0;top:0;width:100%;height:100%}
.page .elm,.page .text{position:absolute;z-index:2;display:block;background-repeat:no-repeat;overflow: hidden}
.page1{width:640px;height:1136px;background-color:#00021d;background-position:top}
/*page1*/
.page1 .elm1{left:215px;top:347px;}
.page1 .elm3{right:137px;top:568px;}
.page1 .elm6{left:61px;top:275px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm7{left:61px;top:390px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm8{left:66px;top:320px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page1 .elm10{left:145px;top:700px;-webkit-animation-delay:2s;animation-delay:2s}
.page1 .elm11{right:304px;top:700px;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page1 .elm12{left:461px;top:700px;-webkit-animation-delay:2.4s;animation-delay:2.4s}
.page1 .elm13{left:80px;top:444px;-webkit-animation-delay:2.1s;animation-delay:2.1s;opacity: 0;}
/*page2*/
.page2{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page2 .elm1{left:247px;top:30px;opacity:0}
.page2 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm4{left:50px;top:286px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s}
.page2 .elm5{left:50px;top:342px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page2 .elm6{left:50px;top:431px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page2 .elm7{left:50px;top:488px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page2 .elm8{left:50px;top:576px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page2 .elm9{left:50px;top:635px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s;}
.page2 .elm10{left:50px;top:722px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page2 .elm11{left:50px;top:778px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page2 .elm12{left:440px;top:209px;opacity:0;-webkit-animation-delay:.5s;animation-delay:.5s}
.page2 .elm13{left:46px;top:892px;opacity:0;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page3*/
.page3{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page3 .elm1{left:247px;top:30px;opacity:0}
.page3 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page3 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page3 .elm4{left:318px;top:168px;-webkit-animation-delay:.65s;animation-delay:.65s}
.page3 .elm5{left:372px;top:208px;-webkit-animation-delay:.75s;animation-delay:.75s}
.page3 .elm6{left:284px;top:282px;-webkit-animation-delay:1s;animation-delay:1s}
.page3 .elm7{left:318px;top:329px;-webkit-animation-delay:1.25s;animation-delay:1.25s;opacity:0}
.page3 .elm23{left:359px;top:404px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page3 .elm22{left:81px;top:383px;width:289px;height:515px;z-index:999}
.page3 .elm8{left:0px;top:376px;-webkit-animation-delay:1.5s;animation-delay:1.5s;}
.page3 .elm9{left:186px;top:606px;-webkit-animation-delay:2.25s;animation-delay:2.25s;opacity:0;-webkit-animation-direction:alternate;animation-direction:alternate;}
.page3 .elm10{left:198px;top:621px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm27{left:339px;top:575px;-webkit-animation-delay:1.75s;animation-delay:1.75s;}
.page3 .elm28{left:299px;top:613px;-webkit-animation-delay:2s;animation-delay:2s;}
.page3 .elm29{left:284px;top:613px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm30{left:314px;top:512px;display:none;z-index: 999;}
.page3 .elm31{left:410px;top:583px;-webkit-animation-delay:2s;animation-delay:2s;}
.page3 .elm32{left:410px;top:653px;-webkit-animation-delay:2.25s;animation-delay:2.25s;}
.page3 .elm33{left:410px;top:730px;-webkit-animation-delay:2.5s;animation-delay:2.5s;}
.page3 .elm34{left:435px;top:486px;display:none}
.page3 .elm35{left:421px;top:544px;display:none}
.page3 .elm36{left:421px;top:614px;display:none}
.page3 .elm37{left:421px;top:689px;display:none}
.page3 .elm38{left:421px;top:759px;display:none}
.page3 .elm39{left:82px;top:431px;display:none}
.page3 .elm40{left:0px;top:246px;}
.page3 .elm41{right:26px;top:923px;}
/*page4*/
.page4{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page4 .elm1{left:247px;top:30px;opacity:0}
.page4 .elm2{left:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm3{right:10px;top:56px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm4{left:226px;top:194px;-webkit-animation-delay:1s;animation-delay:1s}
.page4 .elm5{left:278px;top:551px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s}
.page4 .elm6{left:287px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
/*icon1*/
.page4 .elm7{left:190px;top:392px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm8{left:202px;top:400px;opacity:0;-webkit-animation-delay:3.8s;animation-delay:3.8s}
/*text1*/
.page4 .text1{
left:122px;
top: 311px;
width: 155px;
height: 76px;
overflow: visible;
}
.page4 .elm9{left:0px;top:0px;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm10{right:0px;top:9px;-webkit-animation-delay:3.8s;animation-delay:3.8s}
/*line1~6*/
.page4 .elm11{right:246px;top:410px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
.page4 .elm12{left:156px;bottom:430px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page4 .elm13{right:373px;top:578px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page4 .elm14{left:378px;top:578px;opacity:0;-webkit-animation-delay:1s;animation-delay:1s;}
.page4 .elm15{right:152px;top:610px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page4 .elm16{left:252px;top:746px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
/*text2*/
.page4 .text2{
left:367px;
top: 312px;
width: 154px;
height: 76px;
overflow: visible;
}
.page4 .elm17{left:0px;top:9px;-webkit-animation-delay:2.8s;animation-delay:2.8s}
.page4 .elm18{right:0px;top:0px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
/*icon2*/
.page4 .elm19{left:390px;top:392px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .elm20{left:399px;top:402px;opacity:0;-webkit-animation-delay:2.8s;animation-delay:2.8s}
/*icon3*/
.page4 .elm21{left:100px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .elm22{left:113px;top:569px;opacity:0;-webkit-animation-delay:1.8s;animation-delay:1.8s}
/*icon4*/
.page4 .elm23{left:484px;top:562px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .elm24{left:495px;top:576px;opacity:0;-webkit-animation-delay:1.8s;animation-delay:1.8s}
/*icon5*/
.page4 .elm25{left:190px;top:730px;opacity:0;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .elm26{left:201px;top:740px;opacity:0;-webkit-animation-delay:2.8s;animation-delay:2.8s}
/*icon6*/
.page4 .elm27{left:390px;top:730px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page4 .elm28{left:399px;top:746px;opacity:0;-webkit-animation-delay:3.8s;animation-delay:3.8s}
.page4 .text3{
left:367px;
top: 480px;
width: 221px;
height: 77px;
overflow: visible;
}
.page4 .elm29{left:0px;top:9px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page4 .elm30{right:0px;top:0px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .text4{
left:20px;
top: 631px;
width: 258px;
height: 75px;
overflow: visible;
}
.page4 .elm31{right:0px;top:9px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page4 .elm32{left:0px;top:0px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page4 .text5{
left:89px;
top: 798px;
width: 189px;
height: 76px;
overflow: visible;
}
.page4 .elm33{right:0px;top:9px;-webkit-animation-delay:2.8s;animation-delay:2.8s}
.page4 .elm34{left:0px;top:0px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page4 .text6{
left:368px;
top: 798px;
width: 254px;
height: 76px;
overflow: visible;
}
.page4 .elm35{left:0px;top:9px;-webkit-animation-delay:3.8s;animation-delay:3.8s}
.page4 .elm36{right:0px;top:0px;-webkit-animation-delay:3.3s;animation-delay:3.3s}
.page4 .elm37{left:508px;top:211px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page4 .elm38{left:26px;top:893px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page5*/
.page5{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page5 .elm1{left:247px;top:30px;opacity:0}
.page5 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm4{left:293px;top:261px;-webkit-animation-delay:1s;animation-delay:1s}
.page5 .elm5{left:94px;top:328px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page5 .elm6{left:212px;top:574px;-webkit-animation-delay:2s;animation-delay:2s}
.page5 .elm7{left:280px;top:162px;opacity:0}
.page5 .elm8{left:12px;top:671px;opacity:0;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page5 .elm9{left:20px;top:675px;-webkit-animation-delay:2.5s;animation-delay:2.5s}
.page5 .elm10{left:402px;top:714px;-webkit-animation-delay:2.75s;animation-delay:2.75s}
.page5 .elm11{left:417px;top:796px;-webkit-animation-delay:3s;animation-delay:3s}
.page5 .elm12{left:82px;top:669px;opacity:0;-webkit-animation-delay:2.75s;animation-delay:2.75s}
.page5 .elm13{left:238px;top:636px;opacity:0;-webkit-animation-delay:3s;animation-delay:3s}
.page5 .elm14{left:446px;top:681px;opacity:0;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page5 .elm15{right:60px;top:778px;opacity:0;-webkit-animation-delay:3.5s;animation-delay:3.5s}
.page5 .elm16{left:338px;top:799px;opacity:0;-webkit-animation-delay:3.75s;animation-delay:3.75s}
.page5 .elm17{left:148px;top:764px;opacity:0;-webkit-animation-delay:4s;animation-delay:4s}
.page5 .elm18{left:0;top:123px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page5 .elm19{right:12px;top:484px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page6*/
.page6{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page6 .elm1{left:247px;top:30px;opacity:0}
.page6 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm4{left:310px;top:246px;-webkit-animation-delay:.75s;animation-delay:.75s;z-index:99;opacity:0}
.page6 .elm5{left:255px;top:312px;-webkit-animation-delay:1s;animation-delay:1s}
.page6 .elm6{left:200px;top:531px;-webkit-animation-delay:1.25s;animation-delay:1.25s;z-index:99}
.page6 .elm7{left:148px;top:594px;-webkit-animation-delay:1.5s;animation-delay:1.5s;z-index:99}
.page6 .elm8{left:264px;top:619px;-webkit-animation-delay:1.65s;animation-delay:1.65s;z-index: 99}
.page6 .elm9{left:110px;top:606px;opacity:0;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page6 .elm10{left:110px;top:677px;opacity:0;-webkit-animation-delay:1.95s;animation-delay:1.95s}
.page6 .elm11{left:110px;top:751px;opacity:0;-webkit-animation-delay:2.1s;animation-delay:2.1s}
.page6 .elm12{left:110px;top:823px;opacity:0;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page6 .elm13{left:246px;top:246px;opacity:0}
.page6 .elm14{left:534px;top:183px;opacity:0}
.page6 .elm15{left:52px;top:400px;opacity:0}
.page6 .elm16{left:530px;top:287px;opacity:0}
.page6 .elm18{left:537px;top:312px;opacity:0;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page6 .elm19{left:11px;top:170px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page6 .elm20{right:11px;top:428px;-webkit-animation-delay:.5s;animation-delay:.5s}
/*page7*/
.page7{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page7 .elm1{left:247px;top:30px;opacity:0}
.page7 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm4{left:205px;top:283px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page7 .elm5{left:152px;top:350px;-webkit-animation-delay:1.8s;animation-delay:1.8s}
.page7 .elm6{left:184px;top:544px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}
.page7 .elm7{left:172px;top:183px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page7 .elm8{left:143px;top:608px;-webkit-animation-delay:2.15s;animation-delay:2.15s}
.page7 .elm9{left:366px;top:608px;-webkit-animation-delay:2.2s;animation-delay:2.2s}
.page7 .elm10{left:143px;top:759px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page7 .elm11{left:365px;top:759px;-webkit-animation-delay:2.3s;animation-delay:2.3s}
.page7 .elm12{left:160px;top:639px;-webkit-animation-delay:2.3s;animation-delay:2.3s}
.page7 .elm13{left:392px;top:639px;-webkit-animation-delay:2.35s;animation-delay:2.35s}
.page7 .elm14{left:166px;top:792px;-webkit-animation-delay:2.4s;animation-delay:2.4s}
.page7 .elm15{left:404px;top:792px;-webkit-animation-delay:2.45s;animation-delay:2.45s}
.page7 .elm16{left:0;top:180px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm17{right:6px;top:523px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page7 .elm.circle{width:18px;height:18px;border:2px solid #b40b20;border-radius:50%;opacity:0;-webkit-animation-delay:4s;animation-delay:4s}
.page7 .elm.circle .small{width:12px;height:12px;border-radius:50%;background:#b40b20;margin:3px 0 0 3px}
/*page8*/
.page8{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page8 .elm1{left:247px;top:30px;opacity:0}
.page8 .elm2{left:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page8 .elm3{right:10px;top:61px;-webkit-animation-delay:.5s;animation-delay:.5s}
.page8 .elm4{left:178px;top:154px;-webkit-animation-delay:1s;animation-delay:1s}
.page8 .elm5{left:217px;top:181px;-webkit-animation-delay:1.25s;animation-delay:1.25s}
.page8 .elm6{left:185px;top:225px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
/*.page8 .elm7{left:47px;top:299px;-webkit-animation-delay:1.75s;animation-delay:1.75s}*/
/*.page8 .elm8{left:47px;top:451px;opacity:0;-webkit-animation-delay:2s;animation-delay:2s}*/
/*.page8 .elm9{left:47px;top:600px;-webkit-animation-delay:2.25s;animation-delay:2.25s}*/
/*.page8 .elm10{left:48px;top:328px;-webkit-animation-delay:1.75s;animation-delay:1.75s}*/
/*.page8 .elm11{left:48px;top:480px;-webkit-animation-delay:2s;animation-delay:2s}*/
/*.page8 .elm12{left:48px;top:628px;-webkit-animation-delay:2.25s;animation-delay:2.25s}*/
/*.page8 .elm13{left:365px;top:332px;-webkit-animation-delay:2.5s;animation-delay:2.5s}*/
/*.page8 .elm14{left:367px;top:482px;-webkit-animation-delay:2.75s;animation-delay:2.75s}*/
/*.page8 .elm15{left:377px;top:633px;-webkit-animation-delay:3s;animation-delay:3s}*/
/*.page8 .elm16{left:425px;top:380px;-webkit-animation-delay:2.75s;animation-delay:2.75s}*/
/*.page8 .elm17{left:425px;top:531px;-webkit-animation-delay:3s;animation-delay:3s}*/
/*.page8 .elm18{left:425px;top:679px;-webkit-animation-delay:3.25s;animation-delay:3.25s}*/
.page8 .elm19{left:48px;top:754px;-webkit-animation-delay:3s;animation-delay:3s}
.page8 .elm20{left:80px;top:803px;-webkit-animation-delay:3.25s;animation-delay:3.25s}
.page8 .elm21{left:483px;top:215px;-webkit-animation-delay:1s;animation-delay:1s}
.page8 .elm22{left:43px;top:922px;;-webkit-animation-delay:1s;animation-delay:1s}
/*page9*/
.page9{background:#000 url(../img/common/bg02.jpg) no-repeat top;background-size:100% 100%;}
.page9 .elm1{left:190px;top:347px;}
.page9 .elm2{left:254px;top:392px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm3{left:137px;top:614px;}
.page9 .elm4{left:187px;top:736px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page9 .elm5{left:170px;top:777px;-webkit-animation-delay:2s;animation-delay:2s}
.page9 .elm6{left:38px;top:12px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page9 .elm7{left:227px;top:564px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm10{left:190px;top:347px;}
.page9 .elm11{left:254px;top:392px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.page9 .elm12{left:137px;top:614px;}
.page9 .elm13{left:238px;top:736px;-webkit-animation-delay:1.75s;animation-delay:1.75s}
.page9 .elm14{left:170px;top:777px;-webkit-animation-delay:2s;animation-delay:2s}
.page9 .elm15{left:38px;top:12px;-webkit-animation-delay:2.25s;animation-delay:2.25s}
.page9 .elm16{left:227px;top:564px;-webkit-animation-delay:1.5s;animation-delay:1.5s}
.showquick{
-webkit-animation-delay:0s;animation-delay:.0s;
opacity:0;
}
.barrage{
position: absolute;
top: 318px;
width: 100%;
/*overflow: hidden;*/
}
.barrage li {
background: url("../img/p8/block.png") no-repeat center bottom;
background-size: 100% 50%;
width: 100%;
height: 100px;
/*margin-top: 58px;*/
overflow: hidden;
}
.barrage li div {
position: absolute;
width:2677px;
height:25%;
}
.barrage li:nth-child(1) div{
left:0%;
}
.barrage li:nth-child(2) div{
left:0%;
}
.barrage li:nth-child(3) div{
left:0%;
}
.barrage li:nth-child(4) div{
left:0%;
}
.barrage li div img{
margin-top: 40px;
}
#barrage1,#barrage2,#barrage3,#barrage4,#barrage5,#barrage6,#barrage7,#barrage8{
position: absolute;
left: 990px;;
}
#barrage2{
position: absolute;
left: 640px ;
-webkit-animation-delay: 8s;
-moz-animation-delay: 8s;
-o-animation-delay: 8s;
animation-delay: 8s;
display: none;
}
#barrage3{
position: absolute;
left: 640px;;
}
#barrage4{
position: absolute;
left: 640px ;display: none;
}
#barrage5{
position: absolute;
left: 880px;;
}
#barrage6{
position: absolute;
left: 640px ;display: none;
}
#barrage7{
position: absolute;
left: 1080px;;
}
#barrage8{
position: absolute;
left: 640px ;display: none;
} | 0.303113 | 0.057045 |
.group:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
.wrap-new {
padding: 0
}
* html .group {
zoom: 1;
}
/* IE6 */
*:first-child + html .group {
zoom: 1;
}
/* Utility Classes */
.hidden-accessible {
display: block;
height: 0;
overflow: hidden;
}
.hidden {
display: none;
}
.constrain,
.sec-content,
.contentMain,
#content {
max-width: 998px;
margin: 0 auto;
position: relative;
}
.constrain {
width: 998px;
}
#photos .contentMain {
width: 998px;
}
#photos #content {
width: 998px;
margin: auto;
}
.mobile-version {
display: none;
}
.ad-placeholder {
width: 100%;
height: auto;
margin: 20px 0;
}
/* @end site global */
/* @group Site Header ----------------------------------- */
#site-header {
position: relative;
z-index: 100;
font-size: 3em;
}
#site-header .constrain {
padding-bottom: 1px;
border-bottom: solid 2px #000;
}
#site-header a {
text-decoration: none;
}
.section #site-header .site-title {
padding: 0;
margin: 0 auto;
*margin-left: 210px;
position: absolute;
top: 38px;
height: 1em;
left: 0;
right: 0;
text-align: center;
line-height: 1em;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-weight: 900;
font-size: 36px;
letter-spacing: -0.03em;
float:left;
width:575px;
}
/* All access div */
#allAccess {
margin: 0;
padding: 0;
background: black none;
height: 25px;
overflow: hidden;
min-width: 998px;
width: 100%;
}
#allAccess p {
text-align: right;
font: .85em/25px helvetica, arial, sans-serif;
color: #fff;
text-align: center;
margin: 0 auto;
position: relative;
}
#allAccess p em {
color: #C00;
}
#allAccess p a {
position: absolute;
color: #fff;
font-size: .9em;
top: 2px;
background: transparent none;
}
#allAccess p a:hover {
text-decoration: underline;
}
.no-subpxspacing .section #site-header .site-title {
letter-spacing: -1px;
}
/* Masthead */
#logo {
position: absolute;
left: 50%;
margin: 0 0 0 0;
padding: 0;
}
#logo a {
display: block;
width: 100%;
height: 100%;
text-indent: 100%;
overflow: hidden;
background: url(http://img.timeinc.net/time/assets/images/time-logo.png) no-repeat;
}
.home #logo {
top: 23px;
margin-left: -71px;
width: 143px;
height: 43px;
}
.section #logo {
width: 95px;
height: 29px;
margin-left: -49px;
top: 12px;
}
.section #logo a {
background-position: 0 -149px;
}
/* Header Featured Section */
#featured {
position: absolute;
left: 102px;
top: 13px;
right: 60%;
height: auto;
font-size: 0.75em;
line-height: 1.4em;
}
#featured h2 {
display: inline-block;
*display: inline;
*zoom: 1;
padding: 0 10px 0 0;
margin: 0;
color: #ed1c2e;
font-size: 1em;
font-weight: bold;
}
#featured ul {
list-style: none;
display: inline;
margin: 0;
padding: 0;
}
#featured li {
display: inline;
height: 0.8em;
color: #d6d6d6;
margin-right: 3px;
}
#featured a {
color: #666;
margin-right: 3px;
}
#featured a:hover {
color: #000;
text-decoration: underline;
}
.header-ad {
position: absolute;
top: 9px;
left: 0;
width: 97px;
height: 70px;
}
/* Category Navigation */
#category-nav {
font-weight: bold;
font: bold 13px/1em arial, sans-serif;
position: absolute;
left: 110px;
top: 67px;
height: auto;
}
#category-nav ul {
margin: 0;
list-style: none;
padding: 0;
left: 0;
bottom: 0;
top: 0;
}
#category-nav li {
display: inline-block;
*display: inline;
*zoom: 1;
margin: 0;
padding: 0;
height: 0.9em;
border-left: solid 1px #d6d6d6;
padding-left: 8px;
margin-left: 4px;
}
#category-nav li:first-child {
margin-left: 0;
padding-left: 0;
border-left: none;
}
#category-nav li a {
position: relative;
top: -0.2em;
color: #ed1c2e;
}
#category-nav li a:hover {
color: black;
}
#category-nav li a.current {
color: black;
}
/* Social Links and Apps */
#social-apps, #social-apps ul {
list-style: none;
margin: 0;
padding: 0;
}
#social-apps {
float: left;
position: absolute;
top: 12px;
right: 7px;
z-index: 30;
font: 16px/1em arial, sans-serif;
}
#social-apps a {
color: #7a7a7a;
}
#social-apps a:hover {
color: black;
}
#social-apps > li {
display: inline-block;
*display: inline;
*zoom: 1;
height: 26px;
line-height: 26px;
font-size: 0.9375em;
vertical-align: top;
}
.social-links {
margin-right: 4px;
position: relative;
top: -1px;
/* Layout tweaks to match comp */
/* Sprite layout */
}
.social-links > a {
display: none;
}
.social-links li {
display: inline-block;
*display: inline;
*zoom: 1;
width: 26px;
height: 26px;
margin: 0 2px;
}
.social-links li a {
width: 28px;
height: 26px;
display: block;
text-indent: 28px;
overflow: hidden;
background-repeat: no-repeat;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
opacity: 0.5;
-moz-opacity: 0.5;
filter: alpha(opacity=50);
}
.social-links li a:hover {
opacity: 1.0;
-moz-opacity: 1.0;
filter: alpha(opacity=100);
}
.social-links .twitter {
margin: 0 5px 0 0;
}
.social-links .tumblr {
margin: 0 2px 0 -3px;
}
.social-links .rss {
margin: 0 0 0 -3px;
}
.social-links .facebook a {
background-position: 2px -1px;
}
.social-links .twitter a {
background-position: -28px -1px;
}
.social-links .googleplus a {
background-position: -56px -1px;
}
.social-links .tumblr a {
background-position: -84px -1px;
}
.social-links .rss a {
background-position: -112px -1px;
}
/* Site Navigation */
#site-nav {
margin-top: 85px;
border-top: solid 1px #b7b7b7;
border-bottom: solid 1px #494949;
z-index: 25;
}
#site-nav h3 {
background: #fff;
padding: 0 6px 0 7px;
height: 40px;
line-height: 40px;
margin: 0;
/* At this visual size, items are shown, and drop down isn't needed */
display: none;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
font-size: 1.25em;
cursor: pointer;
}
#site-nav h2 .icon {
display: inline-block;
*display: inline;
*zoom: 1;
height: 16px;
width: 8px;
background: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png) -151px -33px no-repeat;
overflow: hidden;
text-indent: 100%;
margin-left: 5px;
vertical-align: middle;
top: -1px;
position: relative;
}
.lt-ie8 #site-nav h2 .icon {
top: 1px;
}
#site-nav.is-open h2 .icon {
width: 18px;
margin-left: -2px;
margin-right: -3px;
background-position: -145px -63px;
}
.primary-links {
padding: 6px 0 6px;
margin: 0;
text-align: center;
height: 15px;
display: table;
width: 100%;
}
.lt-ie8 .primary-links {
display: block;
white-space: nowrap;
}
.primary-links li {
height: 15px;
line-height: 15px;
position: relative;
border-left: solid 1px #d4d4d4;
margin-left: -1px;
display: table-cell;
*display: inline;
*zoom: 1;
}
.lt-ie8 .primary-links li {
display: inline;
zoom: 1;
}
.lt-ie8 .primary-links li:hover, .lt-ie8 .primary-links li.current {
z-index: 10;
}
.primary-links li:first-child {
border-left: none;
margin-left: 0;
}
.primary-links .link-13 ~ li {
display: none;
}
.primary-links a {
white-space: nowrap;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
display: block;
font-weight: 900;
text-transform: capitalize;
color: #000;
padding: 0 5px;
height: 27px;
line-height: 27px;
margin: -6px 0 -8px 0;
text-align: center;
}
.lt-ie8 .primary-links a {
padding: 0 8px;
display: inline-block;
padding: 0 5px;
}
.primary-links a:hover,
.primary-links .current a {
background-color: #ed1c2e;
color: #fff;
position: relative;
z-index: 10;
padding: 0 6px;
margin-left: -1px;
margin-right: -1px;
}
.lt-ie8 .primary-links a:hover,
.lt-ie8 .primary-links .current a {
padding: 0 4px!important;
margin-left: 0;
margin-right: 0;
}
.primary-links li.link-1 a:hover,
.primary-links li.link-1.current a {
margin-left: 0;
padding-left: 5px;
}
.lt-ie8 .primary-links li.link-1 a:hover, .lt-ie8
.primary-links li.link-1.current a {
padding-left: 11px;
}
.primary-links li.link-13 a:hover,
.primary-links li.link-13.current a {
margin-right: 0;
padding-right: 5px;
}
.lt-ie8 .primary-links li.link-13 a:hover, .lt-ie8
.primary-links li.link-13.current a {
padding-right: 8px;
}
.secondary-links {
border-top: solid 1px #ddd;
font-size: 12px;
font-family: helvetica, arial, sans-serif;
margin: -1px 0 0 0;
padding: 9px 0 4px 0;
height: 1em;
line-height: 1em;
}
.secondary-links li {
display: inline;
margin: 0 10px 0 6px;
}
.secondary-links a {
display: inline-block;
*display: inline;
*zoom: 1;
padding: 0 5px 0 5px;
font-weight: bold;
color: #333333;
}
.secondary-links .current a,
.secondary-links a:hover {
color: #ed1c2e;
}
/* Site Search */
#site-search {
position: absolute;
float: left;
right: 2px;
top: 44px;
width: 237px;
z-index: 5;
font-family: arial, sans-serif;
font-size: 16px;
}
#site-search .ad {
position: absolute;
top: 1px;
left: -114px;
}
#site-search form {
position: absolute;
right: 0;
width: 234px;
height: 31px;
border: solid 1px #c7c7c7;
background-color: #f5f5f5;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
background-repeat: no-repeat;
background-position: -137px 1px;
-webkit-background-clip: border;
-moz-background-clip: border;
background-clip: border-box;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
-webkit-box-shadow: inset #bbbbbb 1px 1px 1px;
-moz-box-shadow: inset #bbbbbb 1px 1px 1px;
box-shadow: inset #bbbbbb 1px 1px 1px;
}
#site-search div.fieldgroup {
background: #f5f5f5;
position: absolute;
left: 33px;
top: 3px;
bottom: 2px;
right: 44px;
}
#site-search label {
position: absolute;
left: 1px;
top: 0;
bottom: 1px;
right: 0;
padding: 6px 0;
color: #7a7a7a;
background-color: #f5f5f5;
z-index: 10;
font-size: 0.875em;
line-height: 1;
display: block;
}
#site-search input[type=text] {
outline: none;
border: none;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: transparent;
z-index: 20;
font-size: 0.875em;
padding: 6px 0;
}
#site-search input[type=submit],
#site-search .search-link a {
background-color: #ed1c2e;
border: none;
height: 26px;
line-height: 26px;
-webkit-border-radius: 13px;
-moz-border-radius: 13px;
-ms-border-radius: 13px;
-o-border-radius: 13px;
border-radius: 13px;
padding: 0 10px;
color: #fff;
position: absolute;
top: 3px;
right: 3px;
bottom: 3px;
font-size: 16px;
margin: auto 0;
}
.lt-ie8 #site-search input[type=submit] {
width: 50px;
}
.lt-ie8 #site-search input[type=text] {
top: -3px;
}
#site-search .search-link a {
display: none;
position: relative;
right: 2px;
top: 7px;
width: 20px;
overflow: hidden;
text-indent: 150%;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
background-repeat: no-repeat;
background-position: -190px -1px;
}
.no-js .overlay-label label {
display: none;
}
/* @end Site Header */
/* @group .site-footer styles -------------------- */
/* general */
#site-footer {
padding-top: 20px;
clear: both;
}
/* footer header */
.footer-header {
overflow: hidden;
border-bottom: 1px solid white;
}
.time-apps {
overflow: hidden;
margin: 0 auto;
padding: 0;
list-style: none;
width: 80%;
}
.time-apps li {
*float: left;
margin-left: 3%;
}
.time-apps li:first-child {
margin-left: 0;
}
.time-apps li .app:hover,
.time-apps li .app:focus {
opacity: 0.8;
}
.time-apps .app {
color: #333333;
font-weight: bold;
font-size: 0.75em;
text-decoration: none;
overflow: hidden;
}
.time-apps .app .icon {
display: block;
float: left;
height: 48px;
background: url(http://img.timeinc.net/time/assets/images/ftr-app-icons.png) no-repeat 0px 100%;
}
.time-apps .app .app-name {
margin-top: 30px;
float: left;
}
.ipad .app .icon {
width: 69px;
background-position: 0px 100%;
}
.iphone .app .icon {
width: 58px;
background-position: -112px 100%;
}
.android .app .icon {
width: 57px;
background-position: -224px 100%;
}
.blackberry .app .icon {
width: 54px;
background-position: -341px 100%;
}
.time-tv .app .icon {
width: 71px;
background-position: -469px 100%;
}
.populist .app .icon {
width: 70px;
background-position: -602px 100%;
}
.the-page .app .icon {
width: 64px;
background-position: -728px 100%;
}
.bada .app .icon {
width: 60px;
background-position: -855px 100%;
}
/* footer ad */
.footer-ad {
float: right;
margin-top: 2px;
}
/* footer body */
.footer-body {
background: #ed1c2e;
padding: 17px 17px 7px;
color: #fff;
font-family: arial, helvetica, sans-serif;
}
.footer-body a {
text-decoration: none;
color: #fff;
}
/* article categories */
.footer-nav {
margin-bottom: 10px;
border-bottom: 1px solid #f2616d;
text-align: center;
}
.footer-nav .nav-link {
display: table-cell;
display: inline-block;
width: 100%;
}
.footer-nav .nav-link:hover, .footer-nav .nav-link:focus {
text-decoration: underline;
}
.lt-ie8 .footer-nav .nav-link {
width: auto;
padding: 0 8px;
}
.footer-nav li:first-child + li {
border-left: none;
}
.nav-categories {
margin: 0;
padding: 0;
list-style: none;
font-size: 15px;
/* letter-spacing: -.1px; having issues here where;;
(which is too large and makes the text unreadable) */
display: table;
*display: block;
*overflow: visible;
width: 100%;
text-align: center;
padding: 0 0 14px;
}
.nav-categories .home-link {
display: none;
}
.nav-categories li {
display: table-cell;
*display: block;
*float: left;
*zoom: 1;
height: 12px;
line-height: 1em;
*line-height: 100%;
border-left: 1px solid #f2616d;
}
/* footer links */
.footer-links {
border-bottom: 5px solid #f2616d;
padding-bottom: 11px;
margin-bottom: 10px;
text-align: center;
}
.footer-links a:hover {
text-decoration: underline;
}
.adtl-links {
list-style: none;
margin: 0 auto;
padding: 0;
font: 12px/1em arial, sans-serif;
max-width: 760px;
}
.adtl-links li {
display: inline-block;
*display: inline;
*zoom: 1;
border-left: 1px solid #f2616d;
margin-bottom: 10px;
}
.adtl-links li:first-child {
border-left: none;
}
.adtl-links li.item-8 {
border-left: none;
}
.adtl-links li a {
padding: 0 6px 0 6px;
}
/* footer branding */
#site-footer .branding {
overflow: hidden;
}
.branding .time-logo {
float: left;
}
.branding .right {
float: right;
width: 290px;
}
.branding .right h4 {
float: left;
font: 14px/1em arial, sans-serif;
margin: 5px 10px;
color: #f9cacc;
}
.branding a:hover img {
opacity: 0.8;
}
.right .cnn-money-logo {
margin-left: 20px;
}
.right .cnn-logo {
margin-left: 10px;
position: relative;
}
/* Video */
body.section-video {
background-color: black;
}
.section-video #video {
margin: auto;
}
.section-video #logo a {
background-image: url(http://img.timeinc.net/time/assets/images/time-logo-white.png);
}
.section-video #site-header h1 a {
color: #b8b6b7;
}
.section-video #site-nav {
border-top-color: #474848;
border-bottom-color: #9e9e9e;
}
.section-video .primary-links li {
border-left-color: #2b2b2b;
}
.section-video .primary-links li a {
color: #bbbbbb;
}
.section-video .primary-links li a:hover {
background-color: #fff;
color: #000;
}
.section-video #category-nav li {
border-left-color: #393939;
}
.section-video #category-nav li a {
color: #8f8f8f;
}
.section-video #category-nav li a:hover, .section-video #category-nav li a.current {
color: white;
}
.section-video #social-apps > li:first-child {
border-color: #393939;
}
.section-video #social-apps a:hover {
color: white;
}
.section-video #site-header .constrain {
border-bottom-color: #9e9e9e;
}
.section-video #site-nav h2 .icon, .section-video .social-links li a {
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite-white.png);
}
.section-video #site-search input[type="submit"] {
background-color: #908e8f;
}
.section-video .footer-header {
border-bottom-color: #000;
}
.section-video .footer-body {
background-color: #000;
}
.section-video .footer-links, .section-video .footer-nav {
border-color: #4d4d4d;
}
.section-video .nav-categories li,
.section-video .adtl-links li {
border-color: #525252;
}
.section-video .branding .right h4 {
color: #adadad;
}
.section-video .rtCol .ad1,
.section-video .rtCol #mostPopular {
margin: 0 0 40px;
}
#site-header,
#site-footer {
font-size: 129.87012987%;
}
body {
background-color: #fff;
}
.section-video .wrap, .section-video #content {
background-color: #000;
}
#site-nav .primary-links {
font-size: 16px;
}
.app .app-name {
display: inline-block;
padding: 0 25px 0 0;
*padding: 0 10px 0 0;
font: bold 11px/1em arial, sans-serif;
}
.time-apps li {
margin-left: 2%;
}
#site-search label {
display: none;
}
#section-ad {
clear: both;
padding: 10px 0;
}
.section-video #banner-ad {
background: transparent none;
}
#banner-ad {
background: #f1f1f1;
text-align: center;
padding: 10px 0;
}
/* search page */
.searchTop {
padding: 15px 0;
border-top: 2px solid #ccc;
}
.search-page .wrap {
width: 100%;
}
.search-page .wrap #site-header > div.constrain {
width: 998px;
}
/* fix for search field */
.overlay-label {
overflow: hidden;
}
.lt-ie9 #site-search input[type="text"] {
overflow: hidden;
line-height: 26px;
height: 26px;
display: block;
padding: 0;
}
.lt-ie8 #site-search input[type="text"] {
line-height: 32px;
height: 32px;
}
/* Photos landing page */
#photos {
width: 100%;
}
#specialsChannel {
width: 100%;
}
#specialsChannel #content{
width: 998px;
}
#specialsChannel #banner-ad{
margin-bottom: 1em;
}
#specialsChannel .rtCol > div {
margin: 0 0 40px;
}
#photos #promos > div {
margin: 0 0 40px;
}
/* popular content */
.tabsMod {
margin: 1em 0;
padding: 0;
border: 0;
width: 300px;
}
.tabsMod h3 {
display: none;
}
.tabsMod .tabgroup-tab {
background: #dedede;
font-size: 0.8125em;
text-transform: none;
letter-spacing: 0;
font-family: Helvetica,Arial,sans-serif;
padding: 0;
text-align: center;
margin-bottom: 0 4px -1px 0;
z-index: 99;
position: relative;
width: 100px;
}
.tabsMod .tabsWrap {
overflow: hidden;
position: relative;
top: 1px;
}
.tabsWrap > div {
overflow: hidden;
padding: 0;
margin: 0 0 -1px 0;
list-style: none;
position: relative;
z-index: 10;
float: left;
}
.tabsMod .ad88 {
float: right;
}
#photos .ad88 {
float: right;
}
#specialsChannel .rtCol .ad88 {margin:0;}
.tabsMod .rLinks {
display: none;
}
.tabsMod .tabsWrap > div a {
border: 1px solid #dedede;
border-bottom: 1px solid #fff;
background: #fff none;
padding: 10px 0;
text-align: center;
display: block;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
width: 100px;
}
.tabsMod .tabsWrap > div.off a {
display: block;
background: #DEDEDE none;
border-bottom: 1px solid #DEDEDE;
}
.tabsMod #tab8 {
margin-right: 5px;
}
.tabsMod .tabsWrap > div a:hover {
color: #000;
text-decoration: underline;
}
.tabsMod ol {
clear: both;
list-style-type: none;
padding-left: 0;
margin: 0 0;
padding: 18px;
z-index: 1;
border: 1px solid #dedede;
}
.tabsMod ol.off {
display: none;
}
.lt-ie8 .tabsMod ol {
list-style-position: inside;
}
.tabsMod ol li {
border-top: 1px solid #ebebeb;
padding: 12px 0 12px 30px;
font-size: 12px;
line-height: 18px;
font-weight: 300;
color: #333;
list-style-type: none;
}
.tabsMod ol li:first-child {
border-top: none;
padding-top: 0;
}
.lt-ie8 .tabsMod ol li {
text-indent: -15px;
}
.tabsMod ol > li {
counter-increment: customlistcounter;
font-family: Helvetica,Arial,sans-serif;
}
.tabsMod ol > li:before {
content: counter(customlistcounter) " ";
font-weight: bold;
font-size: 1.75em;
float: left;
/* prevents line height of pseudo element from disrupting line height of actual content */
width: 30px;
display: inline-block;
margin-left: -30px;
margin-top: 2px;
}
.lt-ie9 .tabsMod ol > li:before {
margin-left: -35px;
}
.tabsMod ol:first-child {
counter-reset: customlistcounter;
}
.lt-ie8 .tabsMod ol li {
list-style-type: decimal;
/* for IE6 and IE7 */
}
/* Topic page */
.topic .wrap {
width: 100%;
}
/* Search page */
.rtColSrch .sep {
display: none;
}
.rtColSrch .rtSrchMod {
margin: 0 0 40px;
}
.rtColSrch .ad300 {
margin: 0 0 40px;
}
body {
overflow: visible;
}
#specialsChannel {
width: 100%;
position: static;
overflow: visible;
}
.section #content {
position: static;
}
#specials #sectionheading h2 {
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-size: 32px;
line-height: 1em;
margin: 8px 0;
letter-spacing: -.03em;
color: #333333;
}
.no-subpxspacing #sectionheading h2 {
letter-spacing:-1px;
} | Dataset 2017/8- News/9- Time.com/1- news on libya-keyword/Search Results_files/fixed-header-footer.css | .group:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
.wrap-new {
padding: 0
}
* html .group {
zoom: 1;
}
/* IE6 */
*:first-child + html .group {
zoom: 1;
}
/* Utility Classes */
.hidden-accessible {
display: block;
height: 0;
overflow: hidden;
}
.hidden {
display: none;
}
.constrain,
.sec-content,
.contentMain,
#content {
max-width: 998px;
margin: 0 auto;
position: relative;
}
.constrain {
width: 998px;
}
#photos .contentMain {
width: 998px;
}
#photos #content {
width: 998px;
margin: auto;
}
.mobile-version {
display: none;
}
.ad-placeholder {
width: 100%;
height: auto;
margin: 20px 0;
}
/* @end site global */
/* @group Site Header ----------------------------------- */
#site-header {
position: relative;
z-index: 100;
font-size: 3em;
}
#site-header .constrain {
padding-bottom: 1px;
border-bottom: solid 2px #000;
}
#site-header a {
text-decoration: none;
}
.section #site-header .site-title {
padding: 0;
margin: 0 auto;
*margin-left: 210px;
position: absolute;
top: 38px;
height: 1em;
left: 0;
right: 0;
text-align: center;
line-height: 1em;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-weight: 900;
font-size: 36px;
letter-spacing: -0.03em;
float:left;
width:575px;
}
/* All access div */
#allAccess {
margin: 0;
padding: 0;
background: black none;
height: 25px;
overflow: hidden;
min-width: 998px;
width: 100%;
}
#allAccess p {
text-align: right;
font: .85em/25px helvetica, arial, sans-serif;
color: #fff;
text-align: center;
margin: 0 auto;
position: relative;
}
#allAccess p em {
color: #C00;
}
#allAccess p a {
position: absolute;
color: #fff;
font-size: .9em;
top: 2px;
background: transparent none;
}
#allAccess p a:hover {
text-decoration: underline;
}
.no-subpxspacing .section #site-header .site-title {
letter-spacing: -1px;
}
/* Masthead */
#logo {
position: absolute;
left: 50%;
margin: 0 0 0 0;
padding: 0;
}
#logo a {
display: block;
width: 100%;
height: 100%;
text-indent: 100%;
overflow: hidden;
background: url(http://img.timeinc.net/time/assets/images/time-logo.png) no-repeat;
}
.home #logo {
top: 23px;
margin-left: -71px;
width: 143px;
height: 43px;
}
.section #logo {
width: 95px;
height: 29px;
margin-left: -49px;
top: 12px;
}
.section #logo a {
background-position: 0 -149px;
}
/* Header Featured Section */
#featured {
position: absolute;
left: 102px;
top: 13px;
right: 60%;
height: auto;
font-size: 0.75em;
line-height: 1.4em;
}
#featured h2 {
display: inline-block;
*display: inline;
*zoom: 1;
padding: 0 10px 0 0;
margin: 0;
color: #ed1c2e;
font-size: 1em;
font-weight: bold;
}
#featured ul {
list-style: none;
display: inline;
margin: 0;
padding: 0;
}
#featured li {
display: inline;
height: 0.8em;
color: #d6d6d6;
margin-right: 3px;
}
#featured a {
color: #666;
margin-right: 3px;
}
#featured a:hover {
color: #000;
text-decoration: underline;
}
.header-ad {
position: absolute;
top: 9px;
left: 0;
width: 97px;
height: 70px;
}
/* Category Navigation */
#category-nav {
font-weight: bold;
font: bold 13px/1em arial, sans-serif;
position: absolute;
left: 110px;
top: 67px;
height: auto;
}
#category-nav ul {
margin: 0;
list-style: none;
padding: 0;
left: 0;
bottom: 0;
top: 0;
}
#category-nav li {
display: inline-block;
*display: inline;
*zoom: 1;
margin: 0;
padding: 0;
height: 0.9em;
border-left: solid 1px #d6d6d6;
padding-left: 8px;
margin-left: 4px;
}
#category-nav li:first-child {
margin-left: 0;
padding-left: 0;
border-left: none;
}
#category-nav li a {
position: relative;
top: -0.2em;
color: #ed1c2e;
}
#category-nav li a:hover {
color: black;
}
#category-nav li a.current {
color: black;
}
/* Social Links and Apps */
#social-apps, #social-apps ul {
list-style: none;
margin: 0;
padding: 0;
}
#social-apps {
float: left;
position: absolute;
top: 12px;
right: 7px;
z-index: 30;
font: 16px/1em arial, sans-serif;
}
#social-apps a {
color: #7a7a7a;
}
#social-apps a:hover {
color: black;
}
#social-apps > li {
display: inline-block;
*display: inline;
*zoom: 1;
height: 26px;
line-height: 26px;
font-size: 0.9375em;
vertical-align: top;
}
.social-links {
margin-right: 4px;
position: relative;
top: -1px;
/* Layout tweaks to match comp */
/* Sprite layout */
}
.social-links > a {
display: none;
}
.social-links li {
display: inline-block;
*display: inline;
*zoom: 1;
width: 26px;
height: 26px;
margin: 0 2px;
}
.social-links li a {
width: 28px;
height: 26px;
display: block;
text-indent: 28px;
overflow: hidden;
background-repeat: no-repeat;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
opacity: 0.5;
-moz-opacity: 0.5;
filter: alpha(opacity=50);
}
.social-links li a:hover {
opacity: 1.0;
-moz-opacity: 1.0;
filter: alpha(opacity=100);
}
.social-links .twitter {
margin: 0 5px 0 0;
}
.social-links .tumblr {
margin: 0 2px 0 -3px;
}
.social-links .rss {
margin: 0 0 0 -3px;
}
.social-links .facebook a {
background-position: 2px -1px;
}
.social-links .twitter a {
background-position: -28px -1px;
}
.social-links .googleplus a {
background-position: -56px -1px;
}
.social-links .tumblr a {
background-position: -84px -1px;
}
.social-links .rss a {
background-position: -112px -1px;
}
/* Site Navigation */
#site-nav {
margin-top: 85px;
border-top: solid 1px #b7b7b7;
border-bottom: solid 1px #494949;
z-index: 25;
}
#site-nav h3 {
background: #fff;
padding: 0 6px 0 7px;
height: 40px;
line-height: 40px;
margin: 0;
/* At this visual size, items are shown, and drop down isn't needed */
display: none;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
font-size: 1.25em;
cursor: pointer;
}
#site-nav h2 .icon {
display: inline-block;
*display: inline;
*zoom: 1;
height: 16px;
width: 8px;
background: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png) -151px -33px no-repeat;
overflow: hidden;
text-indent: 100%;
margin-left: 5px;
vertical-align: middle;
top: -1px;
position: relative;
}
.lt-ie8 #site-nav h2 .icon {
top: 1px;
}
#site-nav.is-open h2 .icon {
width: 18px;
margin-left: -2px;
margin-right: -3px;
background-position: -145px -63px;
}
.primary-links {
padding: 6px 0 6px;
margin: 0;
text-align: center;
height: 15px;
display: table;
width: 100%;
}
.lt-ie8 .primary-links {
display: block;
white-space: nowrap;
}
.primary-links li {
height: 15px;
line-height: 15px;
position: relative;
border-left: solid 1px #d4d4d4;
margin-left: -1px;
display: table-cell;
*display: inline;
*zoom: 1;
}
.lt-ie8 .primary-links li {
display: inline;
zoom: 1;
}
.lt-ie8 .primary-links li:hover, .lt-ie8 .primary-links li.current {
z-index: 10;
}
.primary-links li:first-child {
border-left: none;
margin-left: 0;
}
.primary-links .link-13 ~ li {
display: none;
}
.primary-links a {
white-space: nowrap;
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
display: block;
font-weight: 900;
text-transform: capitalize;
color: #000;
padding: 0 5px;
height: 27px;
line-height: 27px;
margin: -6px 0 -8px 0;
text-align: center;
}
.lt-ie8 .primary-links a {
padding: 0 8px;
display: inline-block;
padding: 0 5px;
}
.primary-links a:hover,
.primary-links .current a {
background-color: #ed1c2e;
color: #fff;
position: relative;
z-index: 10;
padding: 0 6px;
margin-left: -1px;
margin-right: -1px;
}
.lt-ie8 .primary-links a:hover,
.lt-ie8 .primary-links .current a {
padding: 0 4px!important;
margin-left: 0;
margin-right: 0;
}
.primary-links li.link-1 a:hover,
.primary-links li.link-1.current a {
margin-left: 0;
padding-left: 5px;
}
.lt-ie8 .primary-links li.link-1 a:hover, .lt-ie8
.primary-links li.link-1.current a {
padding-left: 11px;
}
.primary-links li.link-13 a:hover,
.primary-links li.link-13.current a {
margin-right: 0;
padding-right: 5px;
}
.lt-ie8 .primary-links li.link-13 a:hover, .lt-ie8
.primary-links li.link-13.current a {
padding-right: 8px;
}
.secondary-links {
border-top: solid 1px #ddd;
font-size: 12px;
font-family: helvetica, arial, sans-serif;
margin: -1px 0 0 0;
padding: 9px 0 4px 0;
height: 1em;
line-height: 1em;
}
.secondary-links li {
display: inline;
margin: 0 10px 0 6px;
}
.secondary-links a {
display: inline-block;
*display: inline;
*zoom: 1;
padding: 0 5px 0 5px;
font-weight: bold;
color: #333333;
}
.secondary-links .current a,
.secondary-links a:hover {
color: #ed1c2e;
}
/* Site Search */
#site-search {
position: absolute;
float: left;
right: 2px;
top: 44px;
width: 237px;
z-index: 5;
font-family: arial, sans-serif;
font-size: 16px;
}
#site-search .ad {
position: absolute;
top: 1px;
left: -114px;
}
#site-search form {
position: absolute;
right: 0;
width: 234px;
height: 31px;
border: solid 1px #c7c7c7;
background-color: #f5f5f5;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
background-repeat: no-repeat;
background-position: -137px 1px;
-webkit-background-clip: border;
-moz-background-clip: border;
background-clip: border-box;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
-ms-border-radius: 15px;
-o-border-radius: 15px;
border-radius: 15px;
-webkit-box-shadow: inset #bbbbbb 1px 1px 1px;
-moz-box-shadow: inset #bbbbbb 1px 1px 1px;
box-shadow: inset #bbbbbb 1px 1px 1px;
}
#site-search div.fieldgroup {
background: #f5f5f5;
position: absolute;
left: 33px;
top: 3px;
bottom: 2px;
right: 44px;
}
#site-search label {
position: absolute;
left: 1px;
top: 0;
bottom: 1px;
right: 0;
padding: 6px 0;
color: #7a7a7a;
background-color: #f5f5f5;
z-index: 10;
font-size: 0.875em;
line-height: 1;
display: block;
}
#site-search input[type=text] {
outline: none;
border: none;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
background: transparent;
z-index: 20;
font-size: 0.875em;
padding: 6px 0;
}
#site-search input[type=submit],
#site-search .search-link a {
background-color: #ed1c2e;
border: none;
height: 26px;
line-height: 26px;
-webkit-border-radius: 13px;
-moz-border-radius: 13px;
-ms-border-radius: 13px;
-o-border-radius: 13px;
border-radius: 13px;
padding: 0 10px;
color: #fff;
position: absolute;
top: 3px;
right: 3px;
bottom: 3px;
font-size: 16px;
margin: auto 0;
}
.lt-ie8 #site-search input[type=submit] {
width: 50px;
}
.lt-ie8 #site-search input[type=text] {
top: -3px;
}
#site-search .search-link a {
display: none;
position: relative;
right: 2px;
top: 7px;
width: 20px;
overflow: hidden;
text-indent: 150%;
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite.png);
background-repeat: no-repeat;
background-position: -190px -1px;
}
.no-js .overlay-label label {
display: none;
}
/* @end Site Header */
/* @group .site-footer styles -------------------- */
/* general */
#site-footer {
padding-top: 20px;
clear: both;
}
/* footer header */
.footer-header {
overflow: hidden;
border-bottom: 1px solid white;
}
.time-apps {
overflow: hidden;
margin: 0 auto;
padding: 0;
list-style: none;
width: 80%;
}
.time-apps li {
*float: left;
margin-left: 3%;
}
.time-apps li:first-child {
margin-left: 0;
}
.time-apps li .app:hover,
.time-apps li .app:focus {
opacity: 0.8;
}
.time-apps .app {
color: #333333;
font-weight: bold;
font-size: 0.75em;
text-decoration: none;
overflow: hidden;
}
.time-apps .app .icon {
display: block;
float: left;
height: 48px;
background: url(http://img.timeinc.net/time/assets/images/ftr-app-icons.png) no-repeat 0px 100%;
}
.time-apps .app .app-name {
margin-top: 30px;
float: left;
}
.ipad .app .icon {
width: 69px;
background-position: 0px 100%;
}
.iphone .app .icon {
width: 58px;
background-position: -112px 100%;
}
.android .app .icon {
width: 57px;
background-position: -224px 100%;
}
.blackberry .app .icon {
width: 54px;
background-position: -341px 100%;
}
.time-tv .app .icon {
width: 71px;
background-position: -469px 100%;
}
.populist .app .icon {
width: 70px;
background-position: -602px 100%;
}
.the-page .app .icon {
width: 64px;
background-position: -728px 100%;
}
.bada .app .icon {
width: 60px;
background-position: -855px 100%;
}
/* footer ad */
.footer-ad {
float: right;
margin-top: 2px;
}
/* footer body */
.footer-body {
background: #ed1c2e;
padding: 17px 17px 7px;
color: #fff;
font-family: arial, helvetica, sans-serif;
}
.footer-body a {
text-decoration: none;
color: #fff;
}
/* article categories */
.footer-nav {
margin-bottom: 10px;
border-bottom: 1px solid #f2616d;
text-align: center;
}
.footer-nav .nav-link {
display: table-cell;
display: inline-block;
width: 100%;
}
.footer-nav .nav-link:hover, .footer-nav .nav-link:focus {
text-decoration: underline;
}
.lt-ie8 .footer-nav .nav-link {
width: auto;
padding: 0 8px;
}
.footer-nav li:first-child + li {
border-left: none;
}
.nav-categories {
margin: 0;
padding: 0;
list-style: none;
font-size: 15px;
/* letter-spacing: -.1px; having issues here where;;
(which is too large and makes the text unreadable) */
display: table;
*display: block;
*overflow: visible;
width: 100%;
text-align: center;
padding: 0 0 14px;
}
.nav-categories .home-link {
display: none;
}
.nav-categories li {
display: table-cell;
*display: block;
*float: left;
*zoom: 1;
height: 12px;
line-height: 1em;
*line-height: 100%;
border-left: 1px solid #f2616d;
}
/* footer links */
.footer-links {
border-bottom: 5px solid #f2616d;
padding-bottom: 11px;
margin-bottom: 10px;
text-align: center;
}
.footer-links a:hover {
text-decoration: underline;
}
.adtl-links {
list-style: none;
margin: 0 auto;
padding: 0;
font: 12px/1em arial, sans-serif;
max-width: 760px;
}
.adtl-links li {
display: inline-block;
*display: inline;
*zoom: 1;
border-left: 1px solid #f2616d;
margin-bottom: 10px;
}
.adtl-links li:first-child {
border-left: none;
}
.adtl-links li.item-8 {
border-left: none;
}
.adtl-links li a {
padding: 0 6px 0 6px;
}
/* footer branding */
#site-footer .branding {
overflow: hidden;
}
.branding .time-logo {
float: left;
}
.branding .right {
float: right;
width: 290px;
}
.branding .right h4 {
float: left;
font: 14px/1em arial, sans-serif;
margin: 5px 10px;
color: #f9cacc;
}
.branding a:hover img {
opacity: 0.8;
}
.right .cnn-money-logo {
margin-left: 20px;
}
.right .cnn-logo {
margin-left: 10px;
position: relative;
}
/* Video */
body.section-video {
background-color: black;
}
.section-video #video {
margin: auto;
}
.section-video #logo a {
background-image: url(http://img.timeinc.net/time/assets/images/time-logo-white.png);
}
.section-video #site-header h1 a {
color: #b8b6b7;
}
.section-video #site-nav {
border-top-color: #474848;
border-bottom-color: #9e9e9e;
}
.section-video .primary-links li {
border-left-color: #2b2b2b;
}
.section-video .primary-links li a {
color: #bbbbbb;
}
.section-video .primary-links li a:hover {
background-color: #fff;
color: #000;
}
.section-video #category-nav li {
border-left-color: #393939;
}
.section-video #category-nav li a {
color: #8f8f8f;
}
.section-video #category-nav li a:hover, .section-video #category-nav li a.current {
color: white;
}
.section-video #social-apps > li:first-child {
border-color: #393939;
}
.section-video #social-apps a:hover {
color: white;
}
.section-video #site-header .constrain {
border-bottom-color: #9e9e9e;
}
.section-video #site-nav h2 .icon, .section-video .social-links li a {
background-image: url(http://img.timeinc.net/time/assets/images/social-icon-sprite-white.png);
}
.section-video #site-search input[type="submit"] {
background-color: #908e8f;
}
.section-video .footer-header {
border-bottom-color: #000;
}
.section-video .footer-body {
background-color: #000;
}
.section-video .footer-links, .section-video .footer-nav {
border-color: #4d4d4d;
}
.section-video .nav-categories li,
.section-video .adtl-links li {
border-color: #525252;
}
.section-video .branding .right h4 {
color: #adadad;
}
.section-video .rtCol .ad1,
.section-video .rtCol #mostPopular {
margin: 0 0 40px;
}
#site-header,
#site-footer {
font-size: 129.87012987%;
}
body {
background-color: #fff;
}
.section-video .wrap, .section-video #content {
background-color: #000;
}
#site-nav .primary-links {
font-size: 16px;
}
.app .app-name {
display: inline-block;
padding: 0 25px 0 0;
*padding: 0 10px 0 0;
font: bold 11px/1em arial, sans-serif;
}
.time-apps li {
margin-left: 2%;
}
#site-search label {
display: none;
}
#section-ad {
clear: both;
padding: 10px 0;
}
.section-video #banner-ad {
background: transparent none;
}
#banner-ad {
background: #f1f1f1;
text-align: center;
padding: 10px 0;
}
/* search page */
.searchTop {
padding: 15px 0;
border-top: 2px solid #ccc;
}
.search-page .wrap {
width: 100%;
}
.search-page .wrap #site-header > div.constrain {
width: 998px;
}
/* fix for search field */
.overlay-label {
overflow: hidden;
}
.lt-ie9 #site-search input[type="text"] {
overflow: hidden;
line-height: 26px;
height: 26px;
display: block;
padding: 0;
}
.lt-ie8 #site-search input[type="text"] {
line-height: 32px;
height: 32px;
}
/* Photos landing page */
#photos {
width: 100%;
}
#specialsChannel {
width: 100%;
}
#specialsChannel #content{
width: 998px;
}
#specialsChannel #banner-ad{
margin-bottom: 1em;
}
#specialsChannel .rtCol > div {
margin: 0 0 40px;
}
#photos #promos > div {
margin: 0 0 40px;
}
/* popular content */
.tabsMod {
margin: 1em 0;
padding: 0;
border: 0;
width: 300px;
}
.tabsMod h3 {
display: none;
}
.tabsMod .tabgroup-tab {
background: #dedede;
font-size: 0.8125em;
text-transform: none;
letter-spacing: 0;
font-family: Helvetica,Arial,sans-serif;
padding: 0;
text-align: center;
margin-bottom: 0 4px -1px 0;
z-index: 99;
position: relative;
width: 100px;
}
.tabsMod .tabsWrap {
overflow: hidden;
position: relative;
top: 1px;
}
.tabsWrap > div {
overflow: hidden;
padding: 0;
margin: 0 0 -1px 0;
list-style: none;
position: relative;
z-index: 10;
float: left;
}
.tabsMod .ad88 {
float: right;
}
#photos .ad88 {
float: right;
}
#specialsChannel .rtCol .ad88 {margin:0;}
.tabsMod .rLinks {
display: none;
}
.tabsMod .tabsWrap > div a {
border: 1px solid #dedede;
border-bottom: 1px solid #fff;
background: #fff none;
padding: 10px 0;
text-align: center;
display: block;
font-family: Helvetica, Arial, sans-serif;
font-size: 13px;
width: 100px;
}
.tabsMod .tabsWrap > div.off a {
display: block;
background: #DEDEDE none;
border-bottom: 1px solid #DEDEDE;
}
.tabsMod #tab8 {
margin-right: 5px;
}
.tabsMod .tabsWrap > div a:hover {
color: #000;
text-decoration: underline;
}
.tabsMod ol {
clear: both;
list-style-type: none;
padding-left: 0;
margin: 0 0;
padding: 18px;
z-index: 1;
border: 1px solid #dedede;
}
.tabsMod ol.off {
display: none;
}
.lt-ie8 .tabsMod ol {
list-style-position: inside;
}
.tabsMod ol li {
border-top: 1px solid #ebebeb;
padding: 12px 0 12px 30px;
font-size: 12px;
line-height: 18px;
font-weight: 300;
color: #333;
list-style-type: none;
}
.tabsMod ol li:first-child {
border-top: none;
padding-top: 0;
}
.lt-ie8 .tabsMod ol li {
text-indent: -15px;
}
.tabsMod ol > li {
counter-increment: customlistcounter;
font-family: Helvetica,Arial,sans-serif;
}
.tabsMod ol > li:before {
content: counter(customlistcounter) " ";
font-weight: bold;
font-size: 1.75em;
float: left;
/* prevents line height of pseudo element from disrupting line height of actual content */
width: 30px;
display: inline-block;
margin-left: -30px;
margin-top: 2px;
}
.lt-ie9 .tabsMod ol > li:before {
margin-left: -35px;
}
.tabsMod ol:first-child {
counter-reset: customlistcounter;
}
.lt-ie8 .tabsMod ol li {
list-style-type: decimal;
/* for IE6 and IE7 */
}
/* Topic page */
.topic .wrap {
width: 100%;
}
/* Search page */
.rtColSrch .sep {
display: none;
}
.rtColSrch .rtSrchMod {
margin: 0 0 40px;
}
.rtColSrch .ad300 {
margin: 0 0 40px;
}
body {
overflow: visible;
}
#specialsChannel {
width: 100%;
position: static;
overflow: visible;
}
.section #content {
position: static;
}
#specials #sectionheading h2 {
font-family: "franklin-gothic-urw", Helvetica, Arial, sans-serif;
font-size: 32px;
line-height: 1em;
margin: 8px 0;
letter-spacing: -.03em;
color: #333333;
}
.no-subpxspacing #sectionheading h2 {
letter-spacing:-1px;
} | 0.398055 | 0.08318 |
.flex{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}
.flex-1 {-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;width: 0}
/****************************** menu_setting *************************************/
.menu_setting_area{padding: 5px 15px;}
.menu_preview_area{float: left;margin-right: 12px;position: relative}
.mobile_menu_preview{
background: #ffffff url("../img/weixin/mobile_menu_head.png") no-repeat scroll 0 0;
border: 1px solid #dddddd;
height: 520px;
position: relative;
width: 317px;
}
.mobile_menu_preview .mobile_hd{
color: #fff;
font-size: 15px;
margin: 0 30px;
overflow: hidden;
padding-top: 30px;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
word-wrap: normal;
}
.mobile_menu_preview .pre_menu_list{
background: transparent url("../img/weixin/mobile_menu_list.png") no-repeat scroll 0 0;
border-top: 1px solid #e7e7eb;
bottom: 0;
left: 0;
padding-left: 43px;
position: absolute;
right: 0;
list-style: none;
margin: 0;
}
.mobile_menu_preview .pre_menu_list:after{
clear: both;
content: "";
display: block;
height: 0;
}
.mobile_menu_preview .pre_menu_item{
line-height: 50px;
float: left;
position: relative;
text-align: center;
border-left: 1px solid #E7E7EB;
}
.mobile_menu_preview .menu_item > a:hover{
color: #000;
}
.mobile_menu_preview .pre_menu_item > a{
color: #616161;
display: block;
overflow: hidden;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
word-wrap: normal;
}
.mobile_menu_preview .js_addL1Btn{font-size: 18px}
.mobile_menu_preview .no-extra a{color: #c1c1c1;}
.pre_menu_item.active{border: 1px solid #53a93f;background-color: #fff;}
.pre_menu_item.active > a,.pre_menu_item.active > a:hover{color: #53a93f}
.pre_menu_item.active.active-invalid{border: none;border-left: 1px solid #e7e7eb;background-color: #fafafa;}
.pre_menu_item.active.active-invalid > a{color: #616161;}
.pre_menu_item.active .sub_menu_box{
bottom: 64px;
}
.mobile_menu_preview .sub_menu_box{
display: none;
position: absolute;
width: 100%;
bottom: 65px;
}
.pre_menu_item.active .sub_menu_box{
display: block;
}
.mobile_menu_preview .sub_menu_list{
list-style: none;
padding: 0;
}
.mobile_menu_preview .sub_menu_item{
border: 1px solid #E7E7EB;
text-align: center;
border-top: none;
border-bottom: none;
background-color: #fafafa;
height: 50px;
}
.mobile_menu_preview .sub_menu_item.active,.mobile_menu_preview .sub_menu_item.active:hover{
border: 1px solid #53a93f;
background-color: #fff;
}
.mobile_menu_preview .sub_menu_item.active a{
color: #53a93f;
}
.mobile_menu_preview .sub_menu_item:hover{
background-color: #eee;
}
.mobile_menu_preview .sub_menu_item:first-child{
border-top: 1px solid #E7E7EB;
}
.mobile_menu_preview .sub_menu_item.active:first-child{
border-top: 1px solid #53a93f;
}
.mobile_menu_preview .sub_menu_item:last-child{
border-bottom: 1px solid #E7E7EB;
}
.mobile_menu_preview .sub_menu_link{
cursor: pointer;
width: 100%;
display: block;
color: #616161;
text-decoration: none;
padding: 0 5px;
}
.mobile_menu_preview .sub_menu_link span{
border-bottom: 1px solid #E7E7EB;
display: block;
}
.mobile_menu_preview .sub_menu_item.no-extra,.mobile_menu_preview .sub_menu_item.no-extra:hover{
color: #c1c1c1;
font-size: 18px;
}
.sub_menu_box .arrow{
left: 50%;
margin-left: -6px;
position: absolute;
}
.sub_menu_box .arrow_out {
border-color: #d0d0d0 transparent transparent;
border-style: solid dashed dashed;
border-width: 6px 6px 0;
display: inline-block;
height: 0;
width: 0;
}
.sub_menu_box .arrow_in {
border-color: #fafafa transparent transparent;
border-style: solid dashed dashed;
border-width: 6px 6px 0;
bottom: -5px;
display: inline-block;
height: 0;
width: 0;
}
.menu_form_area{margin-left: 350px;position: relative}
.shade_tips{position: absolute;top:0;left: 0;width: 100%;bottom: 40px;background-color: #FBFBFB;z-index: 99;padding-top: 25%;}
.shade_tips p{text-align: center;}
.menu_form_area .widget{margin: 0;min-height: 560px;}
.menu_form_area .widget .pre_menu_tips{color: #737373;text-align: center;margin-top: 10px;font-size: 15px;}
.menu_form_area .widget-body{padding: 0;overflow: hidden;min-height: 484px;}
.menu_form_area .form-horizontal .form-group{margin: 0;padding-top: 30px;display: block}
.menu_form_area .menu_content_container{height: 344px;padding: 20px 15px 20px 22px;}
.menu_form_area .menu_edit{border: 1px solid #dddddd;height: 280px;padding: 0;background-color: #ffffff;}
.tab_navs{list-style: none;display: block;border-bottom: 1px solid #dddddd;padding: 0;margin: 0;}
.tab_nav{display: inline-block;line-height: 38px;}
.tab_nav .icon_msg_sender{background: rgba(0, 0, 0, 0) url("../img/weixin/msg_tab.png") no-repeat scroll 0 0;display: inline-block;height: 20px;margin-right: 3px;margin-top: -2px;vertical-align: middle;width: 20px;}
.tab_text .icon_msg_sender{background-position: 0 0;}
.tab_text.active .icon_msg_sender,.tab_text:active .icon_msg_sender,.tab_text:hover .icon_msg_sender{background-position: 0 -30px;}
.tab_news .icon_msg_sender{background-position: 0 -240px;}
.tab_news.active .icon_msg_sender,.tab_news:active .icon_msg_sender,.tab_news:hover .icon_msg_sender{background-position: 0 -270px;}
.tab_img .icon_msg_sender{background-position: 0 -60px;}
.tab_img.active .icon_msg_sender,.tab_img:active .icon_msg_sender,.tab_img:hover .icon_msg_sender{background-position: 0 -90px;}
.tab_audio .icon_msg_sender{background-position: 0 -180px;}
.tab_audio.active .icon_msg_sender,.tab_audio:active .icon_msg_sender,.tab_audio:hover .icon_msg_sender{background-position: 0 -210px;}
.tab_video .icon_msg_sender{background-position: 0 -120px;}
.tab_video.active .icon_msg_sender,.tab_video:active .icon_msg_sender,.tab_video:hover .icon_msg_sender{background-position: 0 -150px;}
.tab_type{height: 318px;background-color: #ffffff;padding: 20px;text-align: center;}
.tab_type.tab_type_text{height: auto;padding: 0;}
.tab_type .media_cover:first-child{margin-right: 20px;}
.tab_type .media_cover{width: 35%;display: inline-block;border: 3px dotted #d9dadc;height: 278px;padding-top: 55px;cursor: pointer;}
.tab_type .media_cover:hover{border-color: #b3b3b3;}
.tab_type .create_access a{color: #8d8d8d;}
.tab_type .create_access a:hover{text-decoration: none;}
.tab_type .create_access a .icon-add{font-size: 70px;color: #b3b3b3;font-style: normal;}
.tab_type .create_access a strong{font-style: normal;font-weight: 400;display: block;font-size: 14px;}
.tab_nav a{color: #333333;text-align: center;display: block;padding: 0 20px;text-decoration: none;}
.tabs_content{display: block;height: 100%;width: 100%;}
.icon_emotion{
background: rgba(0, 0, 0, 0) url("../img/weixin/emotion_editor.png") no-repeat scroll 0 0;
display: inline-block;
height: 20px;
vertical-align: middle;
width: 20px;
}
.icon_emotion:hover {
background: rgba(0, 0, 0, 0) url("../img/weixin/emotion_editor.png") no-repeat scroll 0 -30px;
}
.text_txt{width: 100%;resize:none;border: none;height: 200px;padding: 14px 20px;background-color: #ffffff;}
.footer_toolbar{padding: 0 20px;border-top: 1px solid #dddddd;line-height: 100%;position: relative;height: 38px;background-color: #ffffff;}
.icon_emotion{line-height: 999em;float: left;margin-top: 10px;}
.text_tip{margin: 0;float: right;color: #b3b3b3;font-size: 14px;margin-top: 8px;}
.text_tip em{font-style: normal;}
.emotion_area{position: absolute;top: -202px;left: 0;width: 374px;}
.emotion_area{position: absolute;top: -202px;left: 0;width: 374px;}
.emotions_preview{position: absolute;width: 100px;height: 100px;top: 0;border: 1px solid #c0bfc5;border-left: none;text-align: center;}
.emotions_preview img{margin-top: 38px;}
.emotion_area .emotions{list-style: none;margin: 0;padding: 0;border: 1px solid #c0bfc5;border-right: none;border-bottom: none;height: 100%;width: 100%;}
.emotion_area .emotions_item{border-bottom: 1px solid #c0bfc5;border-right: 1px solid #c0bfc5;float: left;}
.emotion_area .emotion_i{
background: transparent url("../img/weixin/emotion_qq.gif") no-repeat scroll 0 0;
cursor: pointer;
display: inline-block;
height: 24px;
vertical-align: middle;
width: 24px;
}
.menu_url{background-color: #ffffff;border: 1px solid #ddd;padding: 20px;}
.menu_url p{font-size: 14px;color: #b3b3b3;line-height: 40px;}
.menu_url .frm_label{line-height: 34px;}
.menu_url .frm_controls{}
.menu_action{text-align: right;padding: 8px 15px;}
/****************************** reply *************************************/
.reply_area .tab_navs{background-color: #ffffff;}
.reply_area .tabs_content{display: block;height: 100%;width: 100%;}
.reply_area .text_txt{height: 278px;}
.reply_area .emotion_area{top: -279px;width: 374px;}
.reply_area .emotions_item{width: 31px;height: 31px;text-align: center;line-height: 25px;}
/****************************** widget-news *************************************/
.widget.widget-wechat > .widget-header{
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
height: 45px;
line-height: 45px;
}
.widget-wechat_news{
width: 960px;
height: 600px;
}
.news-list{
float: left;
width: 30%;
margin-right: 5%;
border: 1px solid #e7e7eb;
}
.news-list .news-con-info {
border-bottom: 1px solid #e7e7eb;
font-size: 13px;
line-height: 20px;
margin: 0 14px;
padding: 12px 0;
}
.news-list .news_date {
font-style: normal;
font-weight: 400;
}
.news-list .news-con-list {
padding: 12px 14px;
position: relative;
}
.news-list .news_title {
color: #222;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 1.6;
overflow: hidden;
overflow-wrap: break-word;
word-break: break-all;
}
.news-list .news_thumb {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
height: 160px;
overflow: hidden;
}
.news-list .news_abstract {
overflow-wrap: break-word;
padding: 5px 0 10px;
word-break: break-all;
}
.news-list .news_mask{
display: none;
}
.news-preview{
/*border: 1px solid #d3d3d3;*/
}
.news-preview .con-list{
list-style: none;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
padding: 0;
margin: 0 auto;
width: 308px;
border: 1px solid #d3d3d3;
}
.news-preview .con-item:first-child{
border: none
}
.news-preview .con-item{
position: relative;
overflow: hidden;
border-top: 1px solid #d3d3d3;
clear: both;
}
.news-preview .con-item .title{
font-weight: 400;
text-align: left;
display: block;
font-size: 16px;
color: #131313;
width: 203px;
float: left;
}
.news-preview .con-item .imgpic{
background: rgba(0, 0, 0, 0) url("../img/weixin/pic-bg.jpg") no-repeat scroll 0 0;
border: 1px solid #d3d3d3;
height: 80px;
width: 80px;
display: inline-block;
}
.news-preview .con-item-first .title{
margin: 0;
position: absolute;
bottom: 0;
left: 0;
height: 35px;
width: 100%;
background-color: rgba(0,0,0,.65);
color: #fff;
line-height: 35px;
padding-left: 10px;
}
.news-preview .con-item{
padding: 10px;
}
.news-preview .con-item-first .imgpic{
height: 150px;
overflow: hidden;
width: 100%;
background-color: #ececec;
}
.news-preview .con-item .pic_cover{
width: 100%;
height: 100%;
}
.news-preview .con-item-add{
background-color: #f8f8f8;
height: 100px;
padding: 0;
text-align: center;
cursor: pointer;
}
.news-preview .con-item-add .add_news{
font-size: 60px;
color: #777777;
}
.news-preview .con-item:hover .news-edit{
display: block;
}
.news-edit{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
z-index: 9;
background-color: rgba(232,232,232,.6);
display: none;
}
.news-edit .news-edit_op{
margin-top: 30px;
}
.news-edit .news-edit_op .edit{
margin-right: 15px;
}
.news-edit .news-edit_op a{
color: #888888;
font-size: 25px;
cursor: pointer;
} | public/admin/css/weixin.css | .flex{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;}
.flex-1 {-webkit-box-flex: 1;-webkit-flex: 1;-ms-flex: 1;flex: 1;width: 0}
/****************************** menu_setting *************************************/
.menu_setting_area{padding: 5px 15px;}
.menu_preview_area{float: left;margin-right: 12px;position: relative}
.mobile_menu_preview{
background: #ffffff url("../img/weixin/mobile_menu_head.png") no-repeat scroll 0 0;
border: 1px solid #dddddd;
height: 520px;
position: relative;
width: 317px;
}
.mobile_menu_preview .mobile_hd{
color: #fff;
font-size: 15px;
margin: 0 30px;
overflow: hidden;
padding-top: 30px;
text-align: center;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
word-wrap: normal;
}
.mobile_menu_preview .pre_menu_list{
background: transparent url("../img/weixin/mobile_menu_list.png") no-repeat scroll 0 0;
border-top: 1px solid #e7e7eb;
bottom: 0;
left: 0;
padding-left: 43px;
position: absolute;
right: 0;
list-style: none;
margin: 0;
}
.mobile_menu_preview .pre_menu_list:after{
clear: both;
content: "";
display: block;
height: 0;
}
.mobile_menu_preview .pre_menu_item{
line-height: 50px;
float: left;
position: relative;
text-align: center;
border-left: 1px solid #E7E7EB;
}
.mobile_menu_preview .menu_item > a:hover{
color: #000;
}
.mobile_menu_preview .pre_menu_item > a{
color: #616161;
display: block;
overflow: hidden;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
width: auto;
word-wrap: normal;
}
.mobile_menu_preview .js_addL1Btn{font-size: 18px}
.mobile_menu_preview .no-extra a{color: #c1c1c1;}
.pre_menu_item.active{border: 1px solid #53a93f;background-color: #fff;}
.pre_menu_item.active > a,.pre_menu_item.active > a:hover{color: #53a93f}
.pre_menu_item.active.active-invalid{border: none;border-left: 1px solid #e7e7eb;background-color: #fafafa;}
.pre_menu_item.active.active-invalid > a{color: #616161;}
.pre_menu_item.active .sub_menu_box{
bottom: 64px;
}
.mobile_menu_preview .sub_menu_box{
display: none;
position: absolute;
width: 100%;
bottom: 65px;
}
.pre_menu_item.active .sub_menu_box{
display: block;
}
.mobile_menu_preview .sub_menu_list{
list-style: none;
padding: 0;
}
.mobile_menu_preview .sub_menu_item{
border: 1px solid #E7E7EB;
text-align: center;
border-top: none;
border-bottom: none;
background-color: #fafafa;
height: 50px;
}
.mobile_menu_preview .sub_menu_item.active,.mobile_menu_preview .sub_menu_item.active:hover{
border: 1px solid #53a93f;
background-color: #fff;
}
.mobile_menu_preview .sub_menu_item.active a{
color: #53a93f;
}
.mobile_menu_preview .sub_menu_item:hover{
background-color: #eee;
}
.mobile_menu_preview .sub_menu_item:first-child{
border-top: 1px solid #E7E7EB;
}
.mobile_menu_preview .sub_menu_item.active:first-child{
border-top: 1px solid #53a93f;
}
.mobile_menu_preview .sub_menu_item:last-child{
border-bottom: 1px solid #E7E7EB;
}
.mobile_menu_preview .sub_menu_link{
cursor: pointer;
width: 100%;
display: block;
color: #616161;
text-decoration: none;
padding: 0 5px;
}
.mobile_menu_preview .sub_menu_link span{
border-bottom: 1px solid #E7E7EB;
display: block;
}
.mobile_menu_preview .sub_menu_item.no-extra,.mobile_menu_preview .sub_menu_item.no-extra:hover{
color: #c1c1c1;
font-size: 18px;
}
.sub_menu_box .arrow{
left: 50%;
margin-left: -6px;
position: absolute;
}
.sub_menu_box .arrow_out {
border-color: #d0d0d0 transparent transparent;
border-style: solid dashed dashed;
border-width: 6px 6px 0;
display: inline-block;
height: 0;
width: 0;
}
.sub_menu_box .arrow_in {
border-color: #fafafa transparent transparent;
border-style: solid dashed dashed;
border-width: 6px 6px 0;
bottom: -5px;
display: inline-block;
height: 0;
width: 0;
}
.menu_form_area{margin-left: 350px;position: relative}
.shade_tips{position: absolute;top:0;left: 0;width: 100%;bottom: 40px;background-color: #FBFBFB;z-index: 99;padding-top: 25%;}
.shade_tips p{text-align: center;}
.menu_form_area .widget{margin: 0;min-height: 560px;}
.menu_form_area .widget .pre_menu_tips{color: #737373;text-align: center;margin-top: 10px;font-size: 15px;}
.menu_form_area .widget-body{padding: 0;overflow: hidden;min-height: 484px;}
.menu_form_area .form-horizontal .form-group{margin: 0;padding-top: 30px;display: block}
.menu_form_area .menu_content_container{height: 344px;padding: 20px 15px 20px 22px;}
.menu_form_area .menu_edit{border: 1px solid #dddddd;height: 280px;padding: 0;background-color: #ffffff;}
.tab_navs{list-style: none;display: block;border-bottom: 1px solid #dddddd;padding: 0;margin: 0;}
.tab_nav{display: inline-block;line-height: 38px;}
.tab_nav .icon_msg_sender{background: rgba(0, 0, 0, 0) url("../img/weixin/msg_tab.png") no-repeat scroll 0 0;display: inline-block;height: 20px;margin-right: 3px;margin-top: -2px;vertical-align: middle;width: 20px;}
.tab_text .icon_msg_sender{background-position: 0 0;}
.tab_text.active .icon_msg_sender,.tab_text:active .icon_msg_sender,.tab_text:hover .icon_msg_sender{background-position: 0 -30px;}
.tab_news .icon_msg_sender{background-position: 0 -240px;}
.tab_news.active .icon_msg_sender,.tab_news:active .icon_msg_sender,.tab_news:hover .icon_msg_sender{background-position: 0 -270px;}
.tab_img .icon_msg_sender{background-position: 0 -60px;}
.tab_img.active .icon_msg_sender,.tab_img:active .icon_msg_sender,.tab_img:hover .icon_msg_sender{background-position: 0 -90px;}
.tab_audio .icon_msg_sender{background-position: 0 -180px;}
.tab_audio.active .icon_msg_sender,.tab_audio:active .icon_msg_sender,.tab_audio:hover .icon_msg_sender{background-position: 0 -210px;}
.tab_video .icon_msg_sender{background-position: 0 -120px;}
.tab_video.active .icon_msg_sender,.tab_video:active .icon_msg_sender,.tab_video:hover .icon_msg_sender{background-position: 0 -150px;}
.tab_type{height: 318px;background-color: #ffffff;padding: 20px;text-align: center;}
.tab_type.tab_type_text{height: auto;padding: 0;}
.tab_type .media_cover:first-child{margin-right: 20px;}
.tab_type .media_cover{width: 35%;display: inline-block;border: 3px dotted #d9dadc;height: 278px;padding-top: 55px;cursor: pointer;}
.tab_type .media_cover:hover{border-color: #b3b3b3;}
.tab_type .create_access a{color: #8d8d8d;}
.tab_type .create_access a:hover{text-decoration: none;}
.tab_type .create_access a .icon-add{font-size: 70px;color: #b3b3b3;font-style: normal;}
.tab_type .create_access a strong{font-style: normal;font-weight: 400;display: block;font-size: 14px;}
.tab_nav a{color: #333333;text-align: center;display: block;padding: 0 20px;text-decoration: none;}
.tabs_content{display: block;height: 100%;width: 100%;}
.icon_emotion{
background: rgba(0, 0, 0, 0) url("../img/weixin/emotion_editor.png") no-repeat scroll 0 0;
display: inline-block;
height: 20px;
vertical-align: middle;
width: 20px;
}
.icon_emotion:hover {
background: rgba(0, 0, 0, 0) url("../img/weixin/emotion_editor.png") no-repeat scroll 0 -30px;
}
.text_txt{width: 100%;resize:none;border: none;height: 200px;padding: 14px 20px;background-color: #ffffff;}
.footer_toolbar{padding: 0 20px;border-top: 1px solid #dddddd;line-height: 100%;position: relative;height: 38px;background-color: #ffffff;}
.icon_emotion{line-height: 999em;float: left;margin-top: 10px;}
.text_tip{margin: 0;float: right;color: #b3b3b3;font-size: 14px;margin-top: 8px;}
.text_tip em{font-style: normal;}
.emotion_area{position: absolute;top: -202px;left: 0;width: 374px;}
.emotion_area{position: absolute;top: -202px;left: 0;width: 374px;}
.emotions_preview{position: absolute;width: 100px;height: 100px;top: 0;border: 1px solid #c0bfc5;border-left: none;text-align: center;}
.emotions_preview img{margin-top: 38px;}
.emotion_area .emotions{list-style: none;margin: 0;padding: 0;border: 1px solid #c0bfc5;border-right: none;border-bottom: none;height: 100%;width: 100%;}
.emotion_area .emotions_item{border-bottom: 1px solid #c0bfc5;border-right: 1px solid #c0bfc5;float: left;}
.emotion_area .emotion_i{
background: transparent url("../img/weixin/emotion_qq.gif") no-repeat scroll 0 0;
cursor: pointer;
display: inline-block;
height: 24px;
vertical-align: middle;
width: 24px;
}
.menu_url{background-color: #ffffff;border: 1px solid #ddd;padding: 20px;}
.menu_url p{font-size: 14px;color: #b3b3b3;line-height: 40px;}
.menu_url .frm_label{line-height: 34px;}
.menu_url .frm_controls{}
.menu_action{text-align: right;padding: 8px 15px;}
/****************************** reply *************************************/
.reply_area .tab_navs{background-color: #ffffff;}
.reply_area .tabs_content{display: block;height: 100%;width: 100%;}
.reply_area .text_txt{height: 278px;}
.reply_area .emotion_area{top: -279px;width: 374px;}
.reply_area .emotions_item{width: 31px;height: 31px;text-align: center;line-height: 25px;}
/****************************** widget-news *************************************/
.widget.widget-wechat > .widget-header{
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
height: 45px;
line-height: 45px;
}
.widget-wechat_news{
width: 960px;
height: 600px;
}
.news-list{
float: left;
width: 30%;
margin-right: 5%;
border: 1px solid #e7e7eb;
}
.news-list .news-con-info {
border-bottom: 1px solid #e7e7eb;
font-size: 13px;
line-height: 20px;
margin: 0 14px;
padding: 12px 0;
}
.news-list .news_date {
font-style: normal;
font-weight: 400;
}
.news-list .news-con-list {
padding: 12px 14px;
position: relative;
}
.news-list .news_title {
color: #222;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 1.6;
overflow: hidden;
overflow-wrap: break-word;
word-break: break-all;
}
.news-list .news_thumb {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
height: 160px;
overflow: hidden;
}
.news-list .news_abstract {
overflow-wrap: break-word;
padding: 5px 0 10px;
word-break: break-all;
}
.news-list .news_mask{
display: none;
}
.news-preview{
/*border: 1px solid #d3d3d3;*/
}
.news-preview .con-list{
list-style: none;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
padding: 0;
margin: 0 auto;
width: 308px;
border: 1px solid #d3d3d3;
}
.news-preview .con-item:first-child{
border: none
}
.news-preview .con-item{
position: relative;
overflow: hidden;
border-top: 1px solid #d3d3d3;
clear: both;
}
.news-preview .con-item .title{
font-weight: 400;
text-align: left;
display: block;
font-size: 16px;
color: #131313;
width: 203px;
float: left;
}
.news-preview .con-item .imgpic{
background: rgba(0, 0, 0, 0) url("../img/weixin/pic-bg.jpg") no-repeat scroll 0 0;
border: 1px solid #d3d3d3;
height: 80px;
width: 80px;
display: inline-block;
}
.news-preview .con-item-first .title{
margin: 0;
position: absolute;
bottom: 0;
left: 0;
height: 35px;
width: 100%;
background-color: rgba(0,0,0,.65);
color: #fff;
line-height: 35px;
padding-left: 10px;
}
.news-preview .con-item{
padding: 10px;
}
.news-preview .con-item-first .imgpic{
height: 150px;
overflow: hidden;
width: 100%;
background-color: #ececec;
}
.news-preview .con-item .pic_cover{
width: 100%;
height: 100%;
}
.news-preview .con-item-add{
background-color: #f8f8f8;
height: 100px;
padding: 0;
text-align: center;
cursor: pointer;
}
.news-preview .con-item-add .add_news{
font-size: 60px;
color: #777777;
}
.news-preview .con-item:hover .news-edit{
display: block;
}
.news-edit{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
z-index: 9;
background-color: rgba(232,232,232,.6);
display: none;
}
.news-edit .news-edit_op{
margin-top: 30px;
}
.news-edit .news-edit_op .edit{
margin-right: 15px;
}
.news-edit .news-edit_op a{
color: #888888;
font-size: 25px;
cursor: pointer;
} | 0.254694 | 0.038466 |
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to <NAME>, <NAME>,
* <NAME>, and the H5BP dev community and team.
*/
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 2px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
body{
background: #fff!important;
font-family: 'Open Sans', sans-serif!important;
}
/* Custom classes */
.c-container{
width: 91%!important;
margin: auto!important;
}
.clear{
overflow: hidden!important;
}
.lead-sm{
font-size: 1.2rem!important;
}
.d-content{
display: contents!important;
}
.img-size{
object-fit: contain!important;
object-position: center!important;
}
.bg-white{
background: white!important;
}
.text-primary-d{
color: #172A3D!important;;
}
.text-primary-l{
color: #f7f7f7!important;;
}
.text-danger-c{
color: #B95661!important;
}
.text-gray{
color: #767575!important;
}
.list-style-none{
list-style: none!important;
}
a:hover{
opacity: 0.7!important;
}
/* Customize bootstrap classes */
a,.link-color{
color: #197593!important;
}
/* Navber design start */
.navbar-brand{
width: 10rem;
}
.nav-item > .active,.footer-menu > .active{
font-weight: bold!important;
}
.nav-link{
font-size: 1.1rem;
color: #2B809B!important;
}
.nav-link:hover{
color: #004966!important;
}
/* Navber design end */
/* Main section design start */
.home-hero-section,.laravel-hero-section,.web-dev-hero-section,.about-hero-section{
min-height: 500px;
background: url(../img/cover/optbg1.jpg);
background-color: linear-gradient(to top,#ffffff,rgba(255, 255, 255, 0));
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.banner-slogan{
font-family: Chronicle Display A,serif;
}
.laravel-hero-section{
/*background-image: url(../img/cover/laravel.jpg);*/
background: linear-gradient(120deg, #f55247, #FFFFFF);
}
.web-dev-hero-section{
background-image: url(../img/cover/optbg2.jpg);
}
.about-hero-section{
background-image: url(../img/cover/team.jpg);
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 2rem!important;
font-weight: bold;
}
.promo-laravel img{
width: 100% !important;
}
.inst-left,.inst-right,.team-member-des,.ours{
border-left: 2px solid #DADBDC!important;
}
.inst-item-list-row li{
float: left!important;
}
/* The banner design */
.banner-card{
border-radius: 0.5rem!important;
background :linear-gradient(to right,#21b989,#82d8af)!important;
}
/* Client section design */
.client-section,.our-technology,.our-clients,.our-teams{
background: linear-gradient(to bottom,#ffffff,#F2EFEB)!important;
}
/* Main section design end */
/* Footer design start */
.footer-top{
background: #fff!important;
}
.footer-top-title{
border-top: 4px solid;
font-size: 3.5rem!important;
}
/* Design the postcard */
.postcard-left{
right: unset!important;
left: -45rem;
}
.postcard {
right: -36rem;
top: 5rem;
}
.postcard a{
transform: rotate(-3deg);
}
.postcard-left a{
transform: rotate(3deg);
}
.postcard-image{
width: 65rem!important;
}
/* Learn more links */
.learn-more{
background: linear-gradient(to right, #CBE2E9, #E1F0F2)!important;
border-radius: 0.5rem;
}
/* Footer */
.the-footer,.footer-bootom{
background: #393E3A!important;
}
.the-footer a, p {
color: #f7f7f7 !important;
}
.footer-menu a,.social a,.adr a,.contact a,.footer-bootom-menu a{
color: #f7f7f7!important;
}
.footer-bootom-menu a{
opacity: 0.5!important;
}
/* Footer design end */
/* Laravel page design start */
/* Short description design start */
.srt-des-laravel-icon,.srt-des-vueJs-icon,.srt-des-reactJs-icon{
background: #ffffff!important;
padding: 0.8rem;
width: 4rem;
height: 4rem;
border-radius: 50%;
}
.srt-des-vueJs-icon,.srt-des-reactJs-icon{
position: absolute;
}
.srt-des-reactJs-icon{
left: 4.5rem;
}
/* Short description design end */
/* Our technology section design start */
.our-technology-heading,.our-clients-heading,.our-team-heading{
background: #ffffff;
display: inline-block;
padding-right: 1rem;
}
.our-technology-heading::after,.our-clients-heading::after,.our-team-heading::after{
content: "";
width: calc(100% - 21rem);
height: 0.2rem;
background: #dddddd!important;
display: block;
position: absolute;
top: 1rem;
right: 0;
}
.technology-item p{
font-size: 1rem!important;
position: relative;
}
.technology-item p::after{
content: "";
width: 0.3rem;
height: 0.3rem;
background: #197593!important;
border-radius: 50%;
display: block;
position: absolute;
right: -1.5rem;
top: 0.6rem;
}
.technology-item p:last-child::after{
display: none!important;
}
/* Our technology section design end */
/* Laravel page design end */
/* Web development page design start */
.work-step p{
font-size: 1.2rem!important;
}
.work-process1{
left: -16rem;
width: 55rem;
top: -4rem;
z-index: 999;
}
.work-process2{
width: 40rem;
top: 0;
right: 4rem;
}
.work-process3{
width: 40rem;
left: -1rem;
bottom: -1rem;
}
.work-process4{
width: 20rem;
right: 2rem;
top: 2rem;
}
.work-process5{
width: 65rem;
top: -15rem;
left: -18rem;
}
.work-process6{
width: 15rem;
left: -14rem;
top: -10rem;
}
.grd-6{
display: grid!important;
}
/* Web development page design end */
/* About page design start */
.avatar{
width: 6rem;
height: 6rem;
}
.avatar img{
height: 100%;
border-radius: 50%;
border: 5px solid white;
box-shadow: 0px 0px 1px 2px #dddddd;
object-fit: cover;
object-position: center;
}
/* About page design end */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important;
}
/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
* causes content to wrap 1 word per line:
* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap; /* 1 */
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.clearfix:after {
clear: both;
}
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 576px) {
/* navbar brand */
.navbar-brand{
width: 10rem!important;
}
.navbar-brand img{
width: 50%!important;
}
/* End navbar brand */
.lead-sm{
font-size: 1.5rem!important;
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 3rem!important;
}
/* Short description design Start */
.srt-des-item h5{
padding-top: 10rem!important;
}
.srt-des-laravel-icon{
padding: 1.5rem;
width: 8rem;
height: 8rem;
border-radius: 50%;
position: absolute;
top: 0.5rem;
right: -0.5rem;
z-index: 1;
}
.srt-des-vueJs-icon,.srt-des-reactJs-icon{
padding: 1rem;
width: 5rem;
height: 5rem;
border-radius: 50%;
position: absolute;
left: 0em;
}
.srt-des-reactJs-icon{
position: absolute;
top: 4rem;
left: 0em;
}
/* Short description design end */
}
@media only screen and (min-width: 768px) {
.lead{
font-size: 2rem!important;
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 5rem!important;
}
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre {
white-space: pre-wrap !important;
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | public/qbytesoft/css/main.css |
/* main.css 1.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
* What follows is the result of much research on cross-browser styling.
* Credit left inline and big thanks to <NAME>, <NAME>,
* <NAME>, and the H5BP dev community and team.
*/
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html {
color: #222;
font-size: 1em;
line-height: 1.4;
}
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* Vendor-prefixed and regular ::selection selectors cannot be combined:
* https://stackoverflow.com/a/16982510/7133471
*
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 2px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
body{
background: #fff!important;
font-family: 'Open Sans', sans-serif!important;
}
/* Custom classes */
.c-container{
width: 91%!important;
margin: auto!important;
}
.clear{
overflow: hidden!important;
}
.lead-sm{
font-size: 1.2rem!important;
}
.d-content{
display: contents!important;
}
.img-size{
object-fit: contain!important;
object-position: center!important;
}
.bg-white{
background: white!important;
}
.text-primary-d{
color: #172A3D!important;;
}
.text-primary-l{
color: #f7f7f7!important;;
}
.text-danger-c{
color: #B95661!important;
}
.text-gray{
color: #767575!important;
}
.list-style-none{
list-style: none!important;
}
a:hover{
opacity: 0.7!important;
}
/* Customize bootstrap classes */
a,.link-color{
color: #197593!important;
}
/* Navber design start */
.navbar-brand{
width: 10rem;
}
.nav-item > .active,.footer-menu > .active{
font-weight: bold!important;
}
.nav-link{
font-size: 1.1rem;
color: #2B809B!important;
}
.nav-link:hover{
color: #004966!important;
}
/* Navber design end */
/* Main section design start */
.home-hero-section,.laravel-hero-section,.web-dev-hero-section,.about-hero-section{
min-height: 500px;
background: url(../img/cover/optbg1.jpg);
background-color: linear-gradient(to top,#ffffff,rgba(255, 255, 255, 0));
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
.banner-slogan{
font-family: Chronicle Display A,serif;
}
.laravel-hero-section{
/*background-image: url(../img/cover/laravel.jpg);*/
background: linear-gradient(120deg, #f55247, #FFFFFF);
}
.web-dev-hero-section{
background-image: url(../img/cover/optbg2.jpg);
}
.about-hero-section{
background-image: url(../img/cover/team.jpg);
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 2rem!important;
font-weight: bold;
}
.promo-laravel img{
width: 100% !important;
}
.inst-left,.inst-right,.team-member-des,.ours{
border-left: 2px solid #DADBDC!important;
}
.inst-item-list-row li{
float: left!important;
}
/* The banner design */
.banner-card{
border-radius: 0.5rem!important;
background :linear-gradient(to right,#21b989,#82d8af)!important;
}
/* Client section design */
.client-section,.our-technology,.our-clients,.our-teams{
background: linear-gradient(to bottom,#ffffff,#F2EFEB)!important;
}
/* Main section design end */
/* Footer design start */
.footer-top{
background: #fff!important;
}
.footer-top-title{
border-top: 4px solid;
font-size: 3.5rem!important;
}
/* Design the postcard */
.postcard-left{
right: unset!important;
left: -45rem;
}
.postcard {
right: -36rem;
top: 5rem;
}
.postcard a{
transform: rotate(-3deg);
}
.postcard-left a{
transform: rotate(3deg);
}
.postcard-image{
width: 65rem!important;
}
/* Learn more links */
.learn-more{
background: linear-gradient(to right, #CBE2E9, #E1F0F2)!important;
border-radius: 0.5rem;
}
/* Footer */
.the-footer,.footer-bootom{
background: #393E3A!important;
}
.the-footer a, p {
color: #f7f7f7 !important;
}
.footer-menu a,.social a,.adr a,.contact a,.footer-bootom-menu a{
color: #f7f7f7!important;
}
.footer-bootom-menu a{
opacity: 0.5!important;
}
/* Footer design end */
/* Laravel page design start */
/* Short description design start */
.srt-des-laravel-icon,.srt-des-vueJs-icon,.srt-des-reactJs-icon{
background: #ffffff!important;
padding: 0.8rem;
width: 4rem;
height: 4rem;
border-radius: 50%;
}
.srt-des-vueJs-icon,.srt-des-reactJs-icon{
position: absolute;
}
.srt-des-reactJs-icon{
left: 4.5rem;
}
/* Short description design end */
/* Our technology section design start */
.our-technology-heading,.our-clients-heading,.our-team-heading{
background: #ffffff;
display: inline-block;
padding-right: 1rem;
}
.our-technology-heading::after,.our-clients-heading::after,.our-team-heading::after{
content: "";
width: calc(100% - 21rem);
height: 0.2rem;
background: #dddddd!important;
display: block;
position: absolute;
top: 1rem;
right: 0;
}
.technology-item p{
font-size: 1rem!important;
position: relative;
}
.technology-item p::after{
content: "";
width: 0.3rem;
height: 0.3rem;
background: #197593!important;
border-radius: 50%;
display: block;
position: absolute;
right: -1.5rem;
top: 0.6rem;
}
.technology-item p:last-child::after{
display: none!important;
}
/* Our technology section design end */
/* Laravel page design end */
/* Web development page design start */
.work-step p{
font-size: 1.2rem!important;
}
.work-process1{
left: -16rem;
width: 55rem;
top: -4rem;
z-index: 999;
}
.work-process2{
width: 40rem;
top: 0;
right: 4rem;
}
.work-process3{
width: 40rem;
left: -1rem;
bottom: -1rem;
}
.work-process4{
width: 20rem;
right: 2rem;
top: 2rem;
}
.work-process5{
width: 65rem;
top: -15rem;
left: -18rem;
}
.work-process6{
width: 15rem;
left: -14rem;
top: -10rem;
}
.grd-6{
display: grid!important;
}
/* Web development page design end */
/* About page design start */
.avatar{
width: 6rem;
height: 6rem;
}
.avatar img{
height: 100%;
border-radius: 50%;
border: 5px solid white;
box-shadow: 0px 0px 1px 2px #dddddd;
object-fit: cover;
object-position: center;
}
/* About page design end */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important;
}
/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
* causes content to wrap 1 word per line:
* https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap; /* 1 */
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
white-space: inherit;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.clearfix:after {
clear: both;
}
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 576px) {
/* navbar brand */
.navbar-brand{
width: 10rem!important;
}
.navbar-brand img{
width: 50%!important;
}
/* End navbar brand */
.lead-sm{
font-size: 1.5rem!important;
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 3rem!important;
}
/* Short description design Start */
.srt-des-item h5{
padding-top: 10rem!important;
}
.srt-des-laravel-icon{
padding: 1.5rem;
width: 8rem;
height: 8rem;
border-radius: 50%;
position: absolute;
top: 0.5rem;
right: -0.5rem;
z-index: 1;
}
.srt-des-vueJs-icon,.srt-des-reactJs-icon{
padding: 1rem;
width: 5rem;
height: 5rem;
border-radius: 50%;
position: absolute;
left: 0em;
}
.srt-des-reactJs-icon{
position: absolute;
top: 4rem;
left: 0em;
}
/* Short description design end */
}
@media only screen and (min-width: 768px) {
.lead{
font-size: 2rem!important;
}
.home-hero-section h1,.laravel-hero-section h1,.web-dev-hero-section h1,.about-hero-section h1{
font-size: 5rem!important;
}
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
https://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster */
-webkit-box-shadow: none !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre {
white-space: pre-wrap !important;
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | 0.519521 | 0.082438 |
body,html{height:100%}
body{background:#fff;color:#333;font-family:Helvetica,Arial,sans-serif;font-size:13.5px;line-height:1.8;margin:0;padding-top:47px;margin:unset} /* 状态和上面的距离和整个页面全部整体字体大小 */
a{color:#08c;text-decoration:none;outline:0}
a:hover{opacity:1}
.cbi-map-descr,.cbi-section-descr,h1,h2,h3,h4,h5,h6,p{color:#906BDA;margin-top:0;margin-bottom:10px} /* 系统下面显示的配置路由器基础信息文字颜色 */
ol,ul{margin:0;padding:0;list-style:none}
.tr,tr{display:table-row}
legend{color:#48D1CC;font-size:0.8pc;font-weight:600;padding:0 0 1px} /* 系统内存等字体大小及颜色 */
.left{text-align:left!important}
.right{text-align:right!important}
.center{text-align:center!important}
.top{vertical-align:top!important}
.middle{vertical-align:middle!important}
.bottom{vertical-align:bottom!important}
.pull-left{float:left!important}
.pull-right{float:right!important}
.inline{display:inline}
.hidden{display:none}
/* Style */
.container:first-child{min-height:40px} /* 登陆主页上面蓝色横条宽度 */
.container{max-width:75pc;margin:0 auto}
/* 隐藏登录用户栏 */
#.container form[action$="/cgi-bin/luci"] .cbi-map fieldset fieldset div:first-child { display: none; }
#.pull-left, .left { float: left; }#ff0000
#.pull-right, .right { float: right; }
#.inline { display: inline; }
#.hidden { display: none; }
/* Header */ /* 顶栏横条 */
header{font-size:14px;position:fixed;top:0;left:0;right:0;background:#71B7E6;box-shadow:0 2px 2px rgba(0,0,0,.1);z-index:100;border-bottom:2.5px solid #726bda}
/* .brand{float:left;color:#fff;font-size:24px;font-weight:400;line-height:40px;margin-right:20px;position:absolute;left:0;margin-left:20px} */
.brand{float:left;color:#fff;font-size:24px;font-weight:450;line-height:40px;margin-right:20px; position:absolute;width:200px;left:50%;margin-left:-780px;} /* openwrt显示大小以及定死位置 */
header:before{background:#000 linear-gradient(to left,#00FF00,#FF8C00,#FF7F00,#FFFF00,#00FF00,#00FF00,#FFFF00,#FF7F00,#FF8C00,#00FF00);content:"";height:2px;position:absolute;top:0;width:100%;min-width:5in} /* 最上面彩虹 */
.brand:hover { opacity: 1; }
.nav li { float: left; }
.nav a { display: block; color:#404040; line-height: 48px; padding: 0 19px;} /* 顶栏中字体颜色 */
/* .brand { display:none; } */
.brand:hover{opacity:1}
.nav li{float:left}
.nav a{display:block;color:#404040;line-height:40px;padding:0 15px} /* 顶栏中字体颜色 */
.nav a:hover {}
/* Dropdown */ /* 鼠标点击状态出现下面的字体 修改里面的背景和圆角还有颜色字体 */
.dropdown{position:relative}
.dropdown:hover{background-color:#71BCFA}/* 鼠标点击状态后面出现的背景颜色 */
.dropdown:hover .dropdown-menu{display:block}
.dropdown-menu{display:none;position:absolute;top:40px;background:#ffffff;border-radius:5px;padding:5px 0;z-index:100;box-shadow:0 1px 3px rgba(0,0,0,.3);}/* 鼠标点击状态下面选项的背景颜色 */
.dropdown-menu:before{content:'';position:absolute;top:-6px;left:23px;border-bottom:6px solid #F8F8FF;border-left:7px solid transparent;border-right:7px solid transparent} /* 选择菜单出现的小三角形箭头颜色 */
.dropdown-menu a { color: #454C59; line-height: 24px; min-width: 135px; font-size:13px; margin: 1px 0; padding: 0 20px; } /* 选择菜单横条间长度和间距和字体颜色 */
.dropdown-menu a:hover { background: rgba(0,0,0,.1); color: #0099cc} /* 选择菜单鼠标放上后出现的字体颜色 */
.cbi-dropdown{display:inline-block;width:210px;height:30px;padding:4px;font-size:13px;line-height:18px;color:gray;border:1px solid #ccc;border-radius:3px;box-sizing:border-box}
.cbi-dropdown{border:1px solid #ccc;border-radius:3px;display:inline-flex;padding:0;cursor:pointer;height:auto;background:linear-gradient(#fff 0%,#e9e8e6 100%);position:relative;color:#404040}
.cbi-dropdown{max-width:25pc;width:auto}
.cbi-dropdown:focus{outline:2px solid #4b6e9b}
.cbi-dropdown>ul{margin:0!important;padding:0;list-style:none;overflow-x:hidden;overflow-y:auto;display:flex;width:100%}
.cbi-dropdown>ul.preview{display:none}
.cbi-dropdown>.more,.cbi-dropdown>.open{flex-grow:0;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;text-align:center;line-height:2em;padding:0 .25em}
.cbi-dropdown>.more,.cbi-dropdown>ul>li[placeholder]{color:#777;font-weight:700;text-shadow:1px 1px 0 #fff;display:none}
.cbi-dropdown>ul>li{display:none;padding:.25em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex-shrink:1;flex-grow:1;align-items:center;align-self:center;min-height:20px}
.cbi-dropdown>ul>li .hide-open{display:block;display:initial}
.cbi-dropdown>ul>li .hide-close{display:none}
.cbi-dropdown>ul>li[display]:not([display="0"]){border-left:1px solid #ccc}
.cbi-dropdown[empty]>ul{max-width:1px}
.cbi-dropdown>ul>li>form{display:none;margin:0;padding:0;pointer-events:none}
.cbi-dropdown>ul>li img{vertical-align:middle;margin-right:.25em}
.cbi-dropdown>ul>li>form>input[type=checkbox]{margin:0}
.cbi-dropdown>ul>li input[type=text]{height:20px}
.cbi-dropdown[open]{position:relative}
.cbi-dropdown[open]>ul.dropdown{display:block;background:#f6f6f5;border:1px solid #918e8c;box-shadow:0 0 4px #918e8c;position:absolute;z-index:1000;max-width:none;min-width:100%;width:auto}
.cbi-dropdown>ul>li[display],
.cbi-dropdown[open]>ul.preview,
.cbi-dropdown[open]>ul.dropdown>li,
.cbi-dropdown[multiple]>ul>li>label,
.cbi-dropdown[multiple][open]>ul.dropdown>li,
.cbi-dropdown[multiple][more]>.more,
.cbi-dropdown[multiple][empty]>.more {
flex-grow: 1;
display: flex;
}
.cbi-dropdown[empty]>ul>li,
.cbi-dropdown[optional][open]>ul.dropdown>li[placeholder],
.cbi-dropdown[multiple][open]>ul.dropdown>li>form {
display: block;
}
.cbi-dropdown[open]>ul.dropdown>li .hide-open {
display: none;
}
.cbi-dropdown[open]>ul.dropdown>li .hide-close {
display: block;
display: initial;
}
.cbi-dropdown[open]>ul.dropdown>li {
border-bottom: 1px solid #ccc;
}
.cbi-dropdown[open]>ul.dropdown>li[selected] {
background: #b0d0f0;
}
.cbi-dropdown[open]>ul.dropdown>li.focus {
background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%);
}
.cbi-dropdown[open]>ul.dropdown>li:last-child {
margin-bottom: 0;
border-bottom: none;
}
.cbi-dropdown[disabled] {
pointer-events: none;
opacity: .6;
}
/* Label */ /* 右上角自动刷新 */
.label{border-radius:15px!important;display:inline-block;background:#bbb;border-bottom: 0.4px solid rgba(0,0,0,.0);border-radius:15px;color:#fff;font-size:10px;line-height:24px;text-transform:uppercase;margin-top:6px;padding:2px 9px;cursor:pointer}
.label.success{background:#7ADD7A}
.label.notice{background:#F48FB1}
.label.important{background:#f00}
.label.warning{background:#fc0}
/* Main */
h2{margin-bottom:15px;padding:.2rem;width:180px;border-right:6px solid #6A5ACD;border-left:6px solid #FF1493;border-radius:40px 0;color:#2F4F4F;text-align:center;text-shadow:5px 2px 6px #708090;font-size:1.2pc;line-height:24px} /* 状态左右两边颜色和距离下面系统间距 */
ul, ol { margin: 0; padding: 0; list-style: none; }
h2 a { color: #333; }
h2 a:hover { opacity: 1; }
h2+.cbi-map-descr { margin-top: -10px; }
.alert-message { position: relative; padding: 20px; margin-bottom: 20px; background: #fe8; border: 1px solid rgba(0, 0, 0, .1); border-width: 1px 0; border-radius:2px}
.alert-message>h4,p{margin:0}
.error,.errorbox{display:inline}
.error{color:#f00}
.errorbox{color:#3b3}
#maincontainer { box-shadow: 0 0 1px rgba(0,0,0,.3); border-radius: 4px; width: 500px; margin: 120px auto 0; padding: 30px; }
#syslog { background: #fafafa; color: #666; width: 100%; }
/* Change List */
.uci-change-legend{padding-top:15px}
.uci-change-legend-label{float:left;margin-right:100px}
.uci-change-legend-label>del,.uci-change-legend-label>ins,.uci-change-legend-label>var{float:left;width:10px;height:10px;margin-top:3px;margin-right:6px}
.uci-change-list{font-family:monospace}
.uci-change-legend-label del,.uci-change-legend-label ins,.uci-change-legend-label var,.uci-change-list del,.uci-change-list ins,.uci-change-list var{display:block;text-decoration:none;padding:2px}
.uci-change-legend-label ins,.uci-change-list ins{background:#cfc;border:2px solid #4f4}
.uci-change-legend-label del,.uci-change-list del{background:#fcc;border:2px solid #f00}
.uci-change-legend-label var,.uci-change-list var{background:#f2f2f2;border:2px solid #ccc}
.uci-change-list var del,.uci-change-list var ins{border:0;white-space:pre;padding:0}
.uci-change-legend-label var del,.uci-change-legend-label var ins{border:0;line-height:6px}
/* Tabs */ /* 系统属性下面文字颜色 */
.cbi-tabmenu,.tabs{border-bottom:1px dashed #eee;margin-bottom:20px}
.cbi-tabmenu li,.tabs li{display:inline-block}
.cbi-tabmenu a,.tabs a{display:block;color:#19a4e6;line-height:34px;margin-bottom:-1px;margin-right:20px;padding:0 3px}
.active a,.cbi-tab a{border-bottom:1px dashed #19a4e6;color:#19a4e6}
/* Fieldset */ /* 主页系统内存网络等字体颜色和错位问题#85d9ff */
fieldset{border:0;margin:10px 0;padding:0}
fieldset legend {
margin: 5px 0;
padding: 3px 20px;
border: 1.8px dashed #1e7ace;
border-radius: 20px;
background: #fff;
color: #1e7ace;
font-weight: 700;
transform:rotate(-4.2deg);
-ms-transform:rotate(-4.2deg); /* IE 9 */
-moz-transform:rotate(-4.2deg); /* Firefox */
-webkit-transform:rotate(-4.2deg); /* Safari and Chrome */
-o-transform:rotate(-4.2deg); /* Opera */
} /* 修改系统天气内存字体角度添加阴影颜色 */
fieldset fieldset{margin:0}
.cbi-value{margin-bottom:10px;zoom:1;clear:both}
.table .cbi-value-field,table .cbi-value-field{display:table-cell}
.cbi-value-title{float:left;display:table-cell;margin-right:8px;padding-top:6px;width:180px;color:#595;text-align:right;line-height:15px;} /* app选项间隔大小和主机名时区颜色 */
.cbi-value-field{color:#404040;display:table-cell}
.cbi-section-table-cell{white-space:nowrap}
.cbi-section-create{margin:-3px;display:inline-flex;align-items:center}
.cbi-section-create>*{margin:3px;flex:1 1 auto}
/* Table */ /* 主机名 主机型号 里面的字体颜色 */
/* .cbi-section table tbody tr:nth-child(odd) { background-color: #fdfdfd; } */
.table,table{width:100%;display:table;margin:0 0 10px!important;border-radius:5px;border-collapse:collapse;position:relative}
/* table tr:first-child, .table .tr:first-child { border-top: 1px solid #b0e6b9; } */
/* table tr, .table .tr { border-bottom: 1px solid #b0e6b9; } */
table tr:first-child { border-top: 1px dashed #D3D3D3; }
.table .td,.table .th,table td,table th{color:#404040;padding:5px 3px!important} /* 主机名固件版本右侧字体颜色 */
.table .tr+.tr .td,table tr+tr td{border-top:1px solid #fff} /* 间隔横条颜色 */
.table .th,table th{text-align:left;font-weight:700}
.table .td:first-child,table td:first-child{color:#333} /* 主机名固件版本等字体颜色 */
.table[width="33%"],.td[width="33%"],.th[width="33%"]{width:33%}
.table[width="100%"],.td[width="100%"],.th[width="100%"]{width:100%}
.table .td,.table .th{display:table-cell;vertical-align:middle}
.table .tr.placeholder{height:calc(3em + 20px)}
.table .tr.placeholder>.td{position:absolute;left:0;right:0;bottom:0;text-align:center;line-height:3em}
.td.cbi-section-actions>*{display:flex}
.td.cbi-section-actions>*>*,.td.cbi-section-actions>*>form>*{flex:1 1 4em;margin:0 1px}
.cbi-input-up,.td.cbi-section-actions>*>.cbi-button-up{background:unset}
.cbi-input-down,.td.cbi-section-actions>*>.cbi-button-down{background:unset}
#cbi-network .tr,#cbi-network tr,#cbi-wireless .tr,#cbi-wireless tr,.tr .tr:first-child,tr tr:first-child{border-top:0}
#cbi-network .tr,#cbi-network tr,#cbi-wireless .tr,#cbi-wireless tr,.tr .tr,tr tr{border-bottom:0}
#conns,#cpu_free,#membuff,#memcache,#memfree,#memtotal,#swapfree,#swaptotal{line-height:18px}
#conns>div,#cpu_free>div,#membuff>div,#memcache>div,#memfree>div,#memtotal>div,#swapfree>div,#swaptotal>div{border:1.4px dashed #aaa!important;border-radius:3px;width:220px!important}
#conns>div>div,#cpu_free>div>div,#membuff>div>div,#memcache>div>div,#memfree>div>div,#memtotal>div>div,#swapfree>div>div,#swaptotal>div>div{background:#85d9ff!important;height:19px!important;border-radius:2px}
/* Form */ /* 各个选项窗口圆角参数 solid实线 dashed虚线 */
input,select,textarea{display:inline-block;box-sizing:border-box;padding:6px;width:190px;border:1px dashed #5F8CFF;border-radius:15px;color:#666;font:inherit;line-height:16px;} /* 选项窗口颜色 */
.table.cbi-section-table input,.table.cbi-section-table select,.table.cbi-section-table textarea,table.cbi-section-table input,table.cbi-section-table select,table.cbi-section-table textarea{width:auto}
#cbi-firewall-redirect select,#cbi-firewall-zone select,#cbi-network-switch_vlan select{width:auto}
input:active, input:focus { outline: 0; border-color: #08c; }
input[type=checkbox]:focus,input[type=file]:focus,select:focus,textarea:focus{outline:0}
button,input[type=button],input[type=reset],input[type=submit]{width:auto!important}
input[type=checkbox],input[type=radio]{width:auto;margin:0;vertical-align:middle;cursor:pointer}
input[type=file]{padding:0;border:0}
.cbi-input-invalid,.cbi-value-error input{color:#f00;border-color:#f00!important}
.cbi-image-button{margin:10px 8px;vertical-align:middle}
.uneditable-input{background:#fafafa;border-color:#f2f2f2;color:#ccc;cursor:not-allowed}
.uneditable-input:active,.uneditable-input:focus{border-color:#f2f2f2}
.cbi-value-description{background-image:url(/luci-static/resources/cbi/help.gif);background-position:0 .3em;background-repeat:no-repeat;padding:0 1.2rem}
.cbi-value-description img{display:none;vertical-align:sub}
.cbi-page-actions{text-align:light;padding:10px 0} /* 保存按钮设置为左侧 */
.cbi-page-actions.right{float:inherit}
/* Button */ /* 各个按钮圆角颜色及添加阴影 */
.cbi-button { border-radius: 15px !important; display: inline-block; background: #fff; border: 2px solid #7ADD7A; border-radius: 2px; box-shadow: 0 4px 4px rgba(0, 0, 0, .0); color: #333; line-height: 16px; padding: 6px 12px; cursor: pointer; }
.cbi-button:active, .cbi-button:focus { border-color: #bbb; } /* 扫描按钮 */
.cbi-button-up, .cbi-input-up {
background-position: center;
background-image: url('../resources/cbi/up.gif'), linear-gradient(#3BB8ED, #3BB8ED 50%, #3BB8ED);
background-repeat: no-repeat;
}
.cbi-button-down, .cbi-input-down {
background-position: center;
background-image: url('../resources/cbi/down.gif'), linear-gradient(#3BB8ED, #3BB8ED 50%, #3BB8ED);
background-repeat: no-repeat;
}
.cbi-button-add, .cbi-input-add { background: #63AFF2; border-color: #63AFF2;border: dashed #778899 1.5px; color: #fff; } /* 添加按钮 */
.cbi-button-add:active, .cbi-button-add:focus, .cbi-input-add:active, .cbi-input-add:focus { border-color: #63AFF2; opacity: .8; }
.cbi-button-remove, .cbi-input-remove, .cbi-section-remove input { background: #B873B9; border-color: #B873B9;border: dashed #778899 1.5px; color: #fff; } /* 删除按钮 */
.cbi-button-remove:active, .cbi-button-remove:focus, .cbi-input-remove:active, .cbi-input-remove:focus, .cbi-section-remove input:active, .cbi-section-remove input:focus { border-color: #B873B9; opacity: .8; }
.cbi-button-reload, .cbi-input-reload { background: rgb(255,157,89); border-color: rgb(255,157,89); border: dashed #778899 1.5px;color: #fff; } /* 重启按钮 */
.cbi-button-reload:active, .cbi-button-reload:focus, .cbi-input-reload:active, .cbi-input-reload:focus { border-color: rgb(255,157,89); opacity: .8; }
.cbi-button-reset, .cbi-input-reset { background: #FF6060; border-color: #FF6060;border: dashed #778899 1.5px; color: #fff; } /* 复位按钮 */
.cbi-button-reset:active, .cbi-button-reset:focus, .cbi-input-reset:active, .cbi-input-reset:focus { border-color: #FF6060; opacity: .8; }
.cbi-button-edit, .cbi-input-edit { background: #6B72D8; border-color: #6B72D8;border: dashed #696969 1.5px; color: #fff; } /* 编辑修改按钮 */
.cbi-button-edit:active, .cbi-button-edit:focus, .cbi-input-edit:active, .cbi-input-edit:focus { border-color: #6B72D8; opacity: .8; }
.cbi-button-apply, .cbi-input-apply { background: rgb(129,192,128); border-color: rgb(129,192,128); border: dashed #778899 1.5px;color: #fff; } /* 保存应用按钮 */
.cbi-button-apply:active, .cbi-button-apply:focus, .cbi-input-apply:active, .cbi-input-apply:focus { border-color: rgb(129,192,128); opacity: .8; }
.cbi-button-save, .cbi-input-save { background: rgb(95,140,255); border-color: rgb(95,140,255);border: dashed #778899 1.5px;color: #fff; } /* 保存按钮 */
.cbi-button-save:active, .cbi-button-save:focus, .cbi-input-save:active, .cbi-input-save:focus { border-color: rgb(95,140,255); opacity: .8; }
/* Input Error */
.cbi-section-error{background:#fee;border:1px solid #f00;padding:10px}
.cbi-section-error ul{padding-left:20px}
.cbi-section-error ul li{color:#f00;list-style:disc}
/* Interface */
.ifacebox{text-align:center;margin-right:60px}
.ifacebox .ifacebox-head{border-bottom:1px solid #ccc;padding:2px;background:#eee}
.ifacebox .ifacebox-head.active{background:#b9b6eb}
.ifacebox .ifacebox-body{border:1px dashed #7B68EE;border-top:0;border-radius:0 0 4px 4px;padding:2px 10px}
.network-status-table .ifacebox-body{display:flex;flex-direction:column;height:100%;text-align:left}
.network-status-table .ifacebox{margin:.5em;flex-grow:1}
.ifacebox .ifacebox-body{padding:.25em}
.ifacebox {
background-color: #fff;
border: 1px solid #ccc;
margin: 0 10px;
text-align: center;
white-space: nowrap;
background-image: linear-gradient(#fff, #fff 25%, #f9f9f9);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
border-radius: 4px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
display: inline-flex;
flex-direction: column;
line-height: 1.2em;
min-width: 100px;
}
.ifacebadge {
display: inline-block;
flex-direction: row;
white-space: nowrap;
background-color: #fff;
border: 1px solid #ccc;
padding: 2px;
background-image: linear-gradient(#fff, #fff 25%, #f9f9f9);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
border-radius: 4px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
cursor: default;
line-height: 1.2em;
}
.ifacebadge.large,.network-status-table .ifacebox-body .ifacebadge{display:inline-flex;flex:1;padding:.25em;min-width:220px;margin:.125em;float:left}
.ifacebadge img{width:16px;height:16px;vertical-align:middle}
.ifacebadge.large>*,.ifacebadge>*{margin:0 .125em}
.ifacebadge.large>*,.ifacebadge>*{margin:0 .125em}
.network-status-table{position:absolute;z-index:1000;left:-625pc;box-shadow:0 0 2px #ccc;border-radius:3px;background:#fff;white-space:pre;opacity:0;transition:opacity .25s ease-in;padding:2px 5px}
.cbi-tooltip{position:absolute;z-index:1000;left:-1000px;opacity:0;transition:opacity .25s ease-out}
.cbi-tooltip-container {
/* cursor: help; */
}
/* Firewall */
.zonebadge{display:inline-block;border-radius:4px;color:#333;white-space:nowrap;padding:0 8px;cursor:pointer}
.zonebadge em,.zonebadge strong{margin:0 5px}
.zonebadge-empty{border:2px dashed #ddd;color:#ddd;font-style:italic}
.zone-forwards{display:flex;flex-wrap:wrap}
.zone-forwards .zone-dest,.zone-forwards .zone-src{display:flex;flex-direction:column}
.zone-forwards>span{flex-basis:10%;text-align:center}
.zone-forwards>*{flex:1 1 40%;padding:1px}
/* Footer */ /* 最底栏颜色 */
footer{border-top:1.5px dashed #726bda;color:#FF6060;font-size: 12px;margin-top:10px;padding:10px 0 ;text-align:center}
footer a{color:#726bda}
footer a:hover{color:#B873B9}
/* diy */
#wan4_i,
#wan6_i {
vertical-align: top;
width: 50px !important;
}
/* login */
body.node-main-login {
background-image:url(bg.jpg);
background-repeat: no-repeat;
background-size: cover;
-ms-background-size: cover; /* IE 9 */
-moz-background-size: cover; /* Firefox */
-webkit-background-size: cover; /* Safari and Chrome */
-o-background-size: cover; /* Opera */
/* Global values */
-ms-padding-top: unset;
-moz-padding-top: unset;
-webkit-padding-top: unset;
-o-padding-top: unset;
}
body.node-main-login>header {
background: none;
border-bottom: none;
}
body.node-main-login .alert-message {
z-index: 999;
}
.node-main-login>.container>form {
width: 20rem;
display: inline-block;
padding: 1rem 1rem;
border-radius: .375rem;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto;
}
.node-main-login>.container>form .errorbox {
color: red;
}
.node-main-login > .container > form > .cbi-map > h2{
width: 110px;
height: 110px;
color: #fff;
text-align: center;
letter-spacing: 4px;
display: block;
margin: -100px auto 20px auto;
padding: 0;
text-indent: -500px;
overflow: hidden;
border-radius: 60px;
border: #118af3 2px solid;
background-image: url(wifi.png);
background-size: cover;
box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
}
.node-main-login > .container > form input[name='luci_username'], .node-main-login > .container > form input[name='luci_password'] {
background:unset;
color: #32CD32;
}
.node-main-login>.container>form>.cbi-map>.cbi-section {
display: inline-block;
}
.node-main-login>.container>footer {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
margin-top: 60px;
display: none;
}
.node-main-login>.container>form .cbi-page-actions {
text-align: center !important;
}
/* luci 19 */
body.modal-overlay-active {
overflow: hidden;
height: 100vh;
}
body.modal-overlay-active #modal_overlay {
visibility: visible;
left: 0;
right: 0;
opacity: 1;
}
body.modal-overlay-active #modal_overlay>.modal {
align-items: center;
box-shadow: 0 0 3px #444;
display: flex;
flex-wrap: wrap;
max-height: unset;
max-width: unset;
min-height: 32px;
min-width: 270px;
background: #d9d6ff !important;
border-radius: 3px;
padding: 1em;
margin: 0;
position: absolute;
top: 15%;
left: 50%;
transform: translate(-50%, -15%);
}
#modal_overlay {
visibility: hidden;
position: fixed;
top: 0;
bottom: 0;
left: -10000px;
right: 10000px;
background: rgba(0, 0, 0, 0.7);
z-index: 900;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
transition: opacity .125s ease-in;
opacity: 0;
}
#modal_overlay>.modal.uci-dialog,
#modal_overlay>.modal.cbi-modal {
max-width: 900px;
}
/*.modal.alert-message.notice {
position: absolute;
padding: 15px;
margin-bottom: 10px;
background: #d9d6ff;
border: 1px solid rgba(0, 0, 0, .1);
border-width: 2px 0;
}*/
.modal>* {
flex-basis: 100%;
line-height: normal;
margin-bottom: .5em;
max-width: 100%;
}
#modal_overlay .modal>* {
flex-basis: 100%;
line-height: normal;
margin-bottom: .5em;
}
[data-tab-title] {
height: 0;
opacity: 0;
overflow: hidden;
}
[data-tab-active="true"],
.cbi-filebrowser.open {
height: auto;
opacity: 1;
overflow: visible;
transition: opacity .25s ease-in;
}
.tabs>li:not(.active),
.cbi-tabmenu>.cbi-tab-disabled {
color: #999;
}
.cbi-dynlist {
height: auto;
min-height: 30px;
display: inline-flex;
flex-direction: column;
}
.cbi-dropdown:not(.btn):not(.cbi-button),
.cbi-dynlist {
min-width: 210px;
max-width: 400px;
width: auto;
background: white;
border: 1px solid #118af3;
border-radius: 5px;
box-sizing: border-box;
padding: 0.3em !important;
}
.cbi-dynlist>.item {
margin-bottom: 4px;
box-shadow: 0 0 2px #ccc;
background: #fff;
border: 1px solid #118af3;
border-radius: 3px;
position: relative;
pointer-events: none;
padding: 2px 2em 2px 4px;
}
.cbi-dynlist>.item::after {
content: "×";
position: absolute;
display: inline-flex;
align-items: center;
top: -1px;
right: -1px;
bottom: -1px;
border: 1px solid #ccc;
border-radius: 0 3px 3px 0;
font-weight: 700;
color: #c44;
pointer-events: auto;
padding: 0 6px;
}
.cbi-dynlist>.add-item,
.td.cbi-section-actions>* {
display: flex;
}
.cbi-dynlist>.add-item>input,
.cbi-dynlist>.add-item>button {
flex: 1 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cbi-dropdown.btn>.open,
.cbi-dropdown.cbi-button>.open {
margin-left: .5em;
border-left: 1px solid;
padding: 0 .5em;
}
.cbi-dropdown.btn>ul:not(.dropdown),
.cbi-dropdown.cbi-button>ul:not(.dropdown) {
margin: 0 0 0 13px !important;
}
.btn.primary,
.cbi-button-action.important,
.cbi-section-actions .cbi-button-edit {
color: #fff;
background: #726bda;
border: 1px solid #726bda;
}
.cbi-dropdown {
display: inline-flex !important;
cursor: pointer;
height: auto;
position: relative;
padding: 0 !important;
}
.cbi-progressbar {
border: 1px solid #ccc;
border-radius: 3px;
position: relative;
min-width: 170px;
height: 20px;
background: #f9f9f9;
margin: 4px 0;
}
.cbi-progressbar>div {
background: #d9d6ff;
height: 100%;
transition: width .25s ease-in;
width: 0%;
}
.cbi-progressbar::after {
position: absolute;
bottom: 0;
top: 0;
right: 0;
left: 0;
text-align: center;
text-shadow: 0 0 2px #fff;
content: attr(title);
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
} | luci/themes/luci-theme-Light/luci-theme-Light/htdocs/luci-static/Light/cascade.css | body,html{height:100%}
body{background:#fff;color:#333;font-family:Helvetica,Arial,sans-serif;font-size:13.5px;line-height:1.8;margin:0;padding-top:47px;margin:unset} /* 状态和上面的距离和整个页面全部整体字体大小 */
a{color:#08c;text-decoration:none;outline:0}
a:hover{opacity:1}
.cbi-map-descr,.cbi-section-descr,h1,h2,h3,h4,h5,h6,p{color:#906BDA;margin-top:0;margin-bottom:10px} /* 系统下面显示的配置路由器基础信息文字颜色 */
ol,ul{margin:0;padding:0;list-style:none}
.tr,tr{display:table-row}
legend{color:#48D1CC;font-size:0.8pc;font-weight:600;padding:0 0 1px} /* 系统内存等字体大小及颜色 */
.left{text-align:left!important}
.right{text-align:right!important}
.center{text-align:center!important}
.top{vertical-align:top!important}
.middle{vertical-align:middle!important}
.bottom{vertical-align:bottom!important}
.pull-left{float:left!important}
.pull-right{float:right!important}
.inline{display:inline}
.hidden{display:none}
/* Style */
.container:first-child{min-height:40px} /* 登陆主页上面蓝色横条宽度 */
.container{max-width:75pc;margin:0 auto}
/* 隐藏登录用户栏 */
#.container form[action$="/cgi-bin/luci"] .cbi-map fieldset fieldset div:first-child { display: none; }
#.pull-left, .left { float: left; }#ff0000
#.pull-right, .right { float: right; }
#.inline { display: inline; }
#.hidden { display: none; }
/* Header */ /* 顶栏横条 */
header{font-size:14px;position:fixed;top:0;left:0;right:0;background:#71B7E6;box-shadow:0 2px 2px rgba(0,0,0,.1);z-index:100;border-bottom:2.5px solid #726bda}
/* .brand{float:left;color:#fff;font-size:24px;font-weight:400;line-height:40px;margin-right:20px;position:absolute;left:0;margin-left:20px} */
.brand{float:left;color:#fff;font-size:24px;font-weight:450;line-height:40px;margin-right:20px; position:absolute;width:200px;left:50%;margin-left:-780px;} /* openwrt显示大小以及定死位置 */
header:before{background:#000 linear-gradient(to left,#00FF00,#FF8C00,#FF7F00,#FFFF00,#00FF00,#00FF00,#FFFF00,#FF7F00,#FF8C00,#00FF00);content:"";height:2px;position:absolute;top:0;width:100%;min-width:5in} /* 最上面彩虹 */
.brand:hover { opacity: 1; }
.nav li { float: left; }
.nav a { display: block; color:#404040; line-height: 48px; padding: 0 19px;} /* 顶栏中字体颜色 */
/* .brand { display:none; } */
.brand:hover{opacity:1}
.nav li{float:left}
.nav a{display:block;color:#404040;line-height:40px;padding:0 15px} /* 顶栏中字体颜色 */
.nav a:hover {}
/* Dropdown */ /* 鼠标点击状态出现下面的字体 修改里面的背景和圆角还有颜色字体 */
.dropdown{position:relative}
.dropdown:hover{background-color:#71BCFA}/* 鼠标点击状态后面出现的背景颜色 */
.dropdown:hover .dropdown-menu{display:block}
.dropdown-menu{display:none;position:absolute;top:40px;background:#ffffff;border-radius:5px;padding:5px 0;z-index:100;box-shadow:0 1px 3px rgba(0,0,0,.3);}/* 鼠标点击状态下面选项的背景颜色 */
.dropdown-menu:before{content:'';position:absolute;top:-6px;left:23px;border-bottom:6px solid #F8F8FF;border-left:7px solid transparent;border-right:7px solid transparent} /* 选择菜单出现的小三角形箭头颜色 */
.dropdown-menu a { color: #454C59; line-height: 24px; min-width: 135px; font-size:13px; margin: 1px 0; padding: 0 20px; } /* 选择菜单横条间长度和间距和字体颜色 */
.dropdown-menu a:hover { background: rgba(0,0,0,.1); color: #0099cc} /* 选择菜单鼠标放上后出现的字体颜色 */
.cbi-dropdown{display:inline-block;width:210px;height:30px;padding:4px;font-size:13px;line-height:18px;color:gray;border:1px solid #ccc;border-radius:3px;box-sizing:border-box}
.cbi-dropdown{border:1px solid #ccc;border-radius:3px;display:inline-flex;padding:0;cursor:pointer;height:auto;background:linear-gradient(#fff 0%,#e9e8e6 100%);position:relative;color:#404040}
.cbi-dropdown{max-width:25pc;width:auto}
.cbi-dropdown:focus{outline:2px solid #4b6e9b}
.cbi-dropdown>ul{margin:0!important;padding:0;list-style:none;overflow-x:hidden;overflow-y:auto;display:flex;width:100%}
.cbi-dropdown>ul.preview{display:none}
.cbi-dropdown>.more,.cbi-dropdown>.open{flex-grow:0;flex-shrink:0;display:flex;flex-direction:column;justify-content:center;text-align:center;line-height:2em;padding:0 .25em}
.cbi-dropdown>.more,.cbi-dropdown>ul>li[placeholder]{color:#777;font-weight:700;text-shadow:1px 1px 0 #fff;display:none}
.cbi-dropdown>ul>li{display:none;padding:.25em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;flex-shrink:1;flex-grow:1;align-items:center;align-self:center;min-height:20px}
.cbi-dropdown>ul>li .hide-open{display:block;display:initial}
.cbi-dropdown>ul>li .hide-close{display:none}
.cbi-dropdown>ul>li[display]:not([display="0"]){border-left:1px solid #ccc}
.cbi-dropdown[empty]>ul{max-width:1px}
.cbi-dropdown>ul>li>form{display:none;margin:0;padding:0;pointer-events:none}
.cbi-dropdown>ul>li img{vertical-align:middle;margin-right:.25em}
.cbi-dropdown>ul>li>form>input[type=checkbox]{margin:0}
.cbi-dropdown>ul>li input[type=text]{height:20px}
.cbi-dropdown[open]{position:relative}
.cbi-dropdown[open]>ul.dropdown{display:block;background:#f6f6f5;border:1px solid #918e8c;box-shadow:0 0 4px #918e8c;position:absolute;z-index:1000;max-width:none;min-width:100%;width:auto}
.cbi-dropdown>ul>li[display],
.cbi-dropdown[open]>ul.preview,
.cbi-dropdown[open]>ul.dropdown>li,
.cbi-dropdown[multiple]>ul>li>label,
.cbi-dropdown[multiple][open]>ul.dropdown>li,
.cbi-dropdown[multiple][more]>.more,
.cbi-dropdown[multiple][empty]>.more {
flex-grow: 1;
display: flex;
}
.cbi-dropdown[empty]>ul>li,
.cbi-dropdown[optional][open]>ul.dropdown>li[placeholder],
.cbi-dropdown[multiple][open]>ul.dropdown>li>form {
display: block;
}
.cbi-dropdown[open]>ul.dropdown>li .hide-open {
display: none;
}
.cbi-dropdown[open]>ul.dropdown>li .hide-close {
display: block;
display: initial;
}
.cbi-dropdown[open]>ul.dropdown>li {
border-bottom: 1px solid #ccc;
}
.cbi-dropdown[open]>ul.dropdown>li[selected] {
background: #b0d0f0;
}
.cbi-dropdown[open]>ul.dropdown>li.focus {
background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%);
}
.cbi-dropdown[open]>ul.dropdown>li:last-child {
margin-bottom: 0;
border-bottom: none;
}
.cbi-dropdown[disabled] {
pointer-events: none;
opacity: .6;
}
/* Label */ /* 右上角自动刷新 */
.label{border-radius:15px!important;display:inline-block;background:#bbb;border-bottom: 0.4px solid rgba(0,0,0,.0);border-radius:15px;color:#fff;font-size:10px;line-height:24px;text-transform:uppercase;margin-top:6px;padding:2px 9px;cursor:pointer}
.label.success{background:#7ADD7A}
.label.notice{background:#F48FB1}
.label.important{background:#f00}
.label.warning{background:#fc0}
/* Main */
h2{margin-bottom:15px;padding:.2rem;width:180px;border-right:6px solid #6A5ACD;border-left:6px solid #FF1493;border-radius:40px 0;color:#2F4F4F;text-align:center;text-shadow:5px 2px 6px #708090;font-size:1.2pc;line-height:24px} /* 状态左右两边颜色和距离下面系统间距 */
ul, ol { margin: 0; padding: 0; list-style: none; }
h2 a { color: #333; }
h2 a:hover { opacity: 1; }
h2+.cbi-map-descr { margin-top: -10px; }
.alert-message { position: relative; padding: 20px; margin-bottom: 20px; background: #fe8; border: 1px solid rgba(0, 0, 0, .1); border-width: 1px 0; border-radius:2px}
.alert-message>h4,p{margin:0}
.error,.errorbox{display:inline}
.error{color:#f00}
.errorbox{color:#3b3}
#maincontainer { box-shadow: 0 0 1px rgba(0,0,0,.3); border-radius: 4px; width: 500px; margin: 120px auto 0; padding: 30px; }
#syslog { background: #fafafa; color: #666; width: 100%; }
/* Change List */
.uci-change-legend{padding-top:15px}
.uci-change-legend-label{float:left;margin-right:100px}
.uci-change-legend-label>del,.uci-change-legend-label>ins,.uci-change-legend-label>var{float:left;width:10px;height:10px;margin-top:3px;margin-right:6px}
.uci-change-list{font-family:monospace}
.uci-change-legend-label del,.uci-change-legend-label ins,.uci-change-legend-label var,.uci-change-list del,.uci-change-list ins,.uci-change-list var{display:block;text-decoration:none;padding:2px}
.uci-change-legend-label ins,.uci-change-list ins{background:#cfc;border:2px solid #4f4}
.uci-change-legend-label del,.uci-change-list del{background:#fcc;border:2px solid #f00}
.uci-change-legend-label var,.uci-change-list var{background:#f2f2f2;border:2px solid #ccc}
.uci-change-list var del,.uci-change-list var ins{border:0;white-space:pre;padding:0}
.uci-change-legend-label var del,.uci-change-legend-label var ins{border:0;line-height:6px}
/* Tabs */ /* 系统属性下面文字颜色 */
.cbi-tabmenu,.tabs{border-bottom:1px dashed #eee;margin-bottom:20px}
.cbi-tabmenu li,.tabs li{display:inline-block}
.cbi-tabmenu a,.tabs a{display:block;color:#19a4e6;line-height:34px;margin-bottom:-1px;margin-right:20px;padding:0 3px}
.active a,.cbi-tab a{border-bottom:1px dashed #19a4e6;color:#19a4e6}
/* Fieldset */ /* 主页系统内存网络等字体颜色和错位问题#85d9ff */
fieldset{border:0;margin:10px 0;padding:0}
fieldset legend {
margin: 5px 0;
padding: 3px 20px;
border: 1.8px dashed #1e7ace;
border-radius: 20px;
background: #fff;
color: #1e7ace;
font-weight: 700;
transform:rotate(-4.2deg);
-ms-transform:rotate(-4.2deg); /* IE 9 */
-moz-transform:rotate(-4.2deg); /* Firefox */
-webkit-transform:rotate(-4.2deg); /* Safari and Chrome */
-o-transform:rotate(-4.2deg); /* Opera */
} /* 修改系统天气内存字体角度添加阴影颜色 */
fieldset fieldset{margin:0}
.cbi-value{margin-bottom:10px;zoom:1;clear:both}
.table .cbi-value-field,table .cbi-value-field{display:table-cell}
.cbi-value-title{float:left;display:table-cell;margin-right:8px;padding-top:6px;width:180px;color:#595;text-align:right;line-height:15px;} /* app选项间隔大小和主机名时区颜色 */
.cbi-value-field{color:#404040;display:table-cell}
.cbi-section-table-cell{white-space:nowrap}
.cbi-section-create{margin:-3px;display:inline-flex;align-items:center}
.cbi-section-create>*{margin:3px;flex:1 1 auto}
/* Table */ /* 主机名 主机型号 里面的字体颜色 */
/* .cbi-section table tbody tr:nth-child(odd) { background-color: #fdfdfd; } */
.table,table{width:100%;display:table;margin:0 0 10px!important;border-radius:5px;border-collapse:collapse;position:relative}
/* table tr:first-child, .table .tr:first-child { border-top: 1px solid #b0e6b9; } */
/* table tr, .table .tr { border-bottom: 1px solid #b0e6b9; } */
table tr:first-child { border-top: 1px dashed #D3D3D3; }
.table .td,.table .th,table td,table th{color:#404040;padding:5px 3px!important} /* 主机名固件版本右侧字体颜色 */
.table .tr+.tr .td,table tr+tr td{border-top:1px solid #fff} /* 间隔横条颜色 */
.table .th,table th{text-align:left;font-weight:700}
.table .td:first-child,table td:first-child{color:#333} /* 主机名固件版本等字体颜色 */
.table[width="33%"],.td[width="33%"],.th[width="33%"]{width:33%}
.table[width="100%"],.td[width="100%"],.th[width="100%"]{width:100%}
.table .td,.table .th{display:table-cell;vertical-align:middle}
.table .tr.placeholder{height:calc(3em + 20px)}
.table .tr.placeholder>.td{position:absolute;left:0;right:0;bottom:0;text-align:center;line-height:3em}
.td.cbi-section-actions>*{display:flex}
.td.cbi-section-actions>*>*,.td.cbi-section-actions>*>form>*{flex:1 1 4em;margin:0 1px}
.cbi-input-up,.td.cbi-section-actions>*>.cbi-button-up{background:unset}
.cbi-input-down,.td.cbi-section-actions>*>.cbi-button-down{background:unset}
#cbi-network .tr,#cbi-network tr,#cbi-wireless .tr,#cbi-wireless tr,.tr .tr:first-child,tr tr:first-child{border-top:0}
#cbi-network .tr,#cbi-network tr,#cbi-wireless .tr,#cbi-wireless tr,.tr .tr,tr tr{border-bottom:0}
#conns,#cpu_free,#membuff,#memcache,#memfree,#memtotal,#swapfree,#swaptotal{line-height:18px}
#conns>div,#cpu_free>div,#membuff>div,#memcache>div,#memfree>div,#memtotal>div,#swapfree>div,#swaptotal>div{border:1.4px dashed #aaa!important;border-radius:3px;width:220px!important}
#conns>div>div,#cpu_free>div>div,#membuff>div>div,#memcache>div>div,#memfree>div>div,#memtotal>div>div,#swapfree>div>div,#swaptotal>div>div{background:#85d9ff!important;height:19px!important;border-radius:2px}
/* Form */ /* 各个选项窗口圆角参数 solid实线 dashed虚线 */
input,select,textarea{display:inline-block;box-sizing:border-box;padding:6px;width:190px;border:1px dashed #5F8CFF;border-radius:15px;color:#666;font:inherit;line-height:16px;} /* 选项窗口颜色 */
.table.cbi-section-table input,.table.cbi-section-table select,.table.cbi-section-table textarea,table.cbi-section-table input,table.cbi-section-table select,table.cbi-section-table textarea{width:auto}
#cbi-firewall-redirect select,#cbi-firewall-zone select,#cbi-network-switch_vlan select{width:auto}
input:active, input:focus { outline: 0; border-color: #08c; }
input[type=checkbox]:focus,input[type=file]:focus,select:focus,textarea:focus{outline:0}
button,input[type=button],input[type=reset],input[type=submit]{width:auto!important}
input[type=checkbox],input[type=radio]{width:auto;margin:0;vertical-align:middle;cursor:pointer}
input[type=file]{padding:0;border:0}
.cbi-input-invalid,.cbi-value-error input{color:#f00;border-color:#f00!important}
.cbi-image-button{margin:10px 8px;vertical-align:middle}
.uneditable-input{background:#fafafa;border-color:#f2f2f2;color:#ccc;cursor:not-allowed}
.uneditable-input:active,.uneditable-input:focus{border-color:#f2f2f2}
.cbi-value-description{background-image:url(/luci-static/resources/cbi/help.gif);background-position:0 .3em;background-repeat:no-repeat;padding:0 1.2rem}
.cbi-value-description img{display:none;vertical-align:sub}
.cbi-page-actions{text-align:light;padding:10px 0} /* 保存按钮设置为左侧 */
.cbi-page-actions.right{float:inherit}
/* Button */ /* 各个按钮圆角颜色及添加阴影 */
.cbi-button { border-radius: 15px !important; display: inline-block; background: #fff; border: 2px solid #7ADD7A; border-radius: 2px; box-shadow: 0 4px 4px rgba(0, 0, 0, .0); color: #333; line-height: 16px; padding: 6px 12px; cursor: pointer; }
.cbi-button:active, .cbi-button:focus { border-color: #bbb; } /* 扫描按钮 */
.cbi-button-up, .cbi-input-up {
background-position: center;
background-image: url('../resources/cbi/up.gif'), linear-gradient(#3BB8ED, #3BB8ED 50%, #3BB8ED);
background-repeat: no-repeat;
}
.cbi-button-down, .cbi-input-down {
background-position: center;
background-image: url('../resources/cbi/down.gif'), linear-gradient(#3BB8ED, #3BB8ED 50%, #3BB8ED);
background-repeat: no-repeat;
}
.cbi-button-add, .cbi-input-add { background: #63AFF2; border-color: #63AFF2;border: dashed #778899 1.5px; color: #fff; } /* 添加按钮 */
.cbi-button-add:active, .cbi-button-add:focus, .cbi-input-add:active, .cbi-input-add:focus { border-color: #63AFF2; opacity: .8; }
.cbi-button-remove, .cbi-input-remove, .cbi-section-remove input { background: #B873B9; border-color: #B873B9;border: dashed #778899 1.5px; color: #fff; } /* 删除按钮 */
.cbi-button-remove:active, .cbi-button-remove:focus, .cbi-input-remove:active, .cbi-input-remove:focus, .cbi-section-remove input:active, .cbi-section-remove input:focus { border-color: #B873B9; opacity: .8; }
.cbi-button-reload, .cbi-input-reload { background: rgb(255,157,89); border-color: rgb(255,157,89); border: dashed #778899 1.5px;color: #fff; } /* 重启按钮 */
.cbi-button-reload:active, .cbi-button-reload:focus, .cbi-input-reload:active, .cbi-input-reload:focus { border-color: rgb(255,157,89); opacity: .8; }
.cbi-button-reset, .cbi-input-reset { background: #FF6060; border-color: #FF6060;border: dashed #778899 1.5px; color: #fff; } /* 复位按钮 */
.cbi-button-reset:active, .cbi-button-reset:focus, .cbi-input-reset:active, .cbi-input-reset:focus { border-color: #FF6060; opacity: .8; }
.cbi-button-edit, .cbi-input-edit { background: #6B72D8; border-color: #6B72D8;border: dashed #696969 1.5px; color: #fff; } /* 编辑修改按钮 */
.cbi-button-edit:active, .cbi-button-edit:focus, .cbi-input-edit:active, .cbi-input-edit:focus { border-color: #6B72D8; opacity: .8; }
.cbi-button-apply, .cbi-input-apply { background: rgb(129,192,128); border-color: rgb(129,192,128); border: dashed #778899 1.5px;color: #fff; } /* 保存应用按钮 */
.cbi-button-apply:active, .cbi-button-apply:focus, .cbi-input-apply:active, .cbi-input-apply:focus { border-color: rgb(129,192,128); opacity: .8; }
.cbi-button-save, .cbi-input-save { background: rgb(95,140,255); border-color: rgb(95,140,255);border: dashed #778899 1.5px;color: #fff; } /* 保存按钮 */
.cbi-button-save:active, .cbi-button-save:focus, .cbi-input-save:active, .cbi-input-save:focus { border-color: rgb(95,140,255); opacity: .8; }
/* Input Error */
.cbi-section-error{background:#fee;border:1px solid #f00;padding:10px}
.cbi-section-error ul{padding-left:20px}
.cbi-section-error ul li{color:#f00;list-style:disc}
/* Interface */
.ifacebox{text-align:center;margin-right:60px}
.ifacebox .ifacebox-head{border-bottom:1px solid #ccc;padding:2px;background:#eee}
.ifacebox .ifacebox-head.active{background:#b9b6eb}
.ifacebox .ifacebox-body{border:1px dashed #7B68EE;border-top:0;border-radius:0 0 4px 4px;padding:2px 10px}
.network-status-table .ifacebox-body{display:flex;flex-direction:column;height:100%;text-align:left}
.network-status-table .ifacebox{margin:.5em;flex-grow:1}
.ifacebox .ifacebox-body{padding:.25em}
.ifacebox {
background-color: #fff;
border: 1px solid #ccc;
margin: 0 10px;
text-align: center;
white-space: nowrap;
background-image: linear-gradient(#fff, #fff 25%, #f9f9f9);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
border-radius: 4px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
display: inline-flex;
flex-direction: column;
line-height: 1.2em;
min-width: 100px;
}
.ifacebadge {
display: inline-block;
flex-direction: row;
white-space: nowrap;
background-color: #fff;
border: 1px solid #ccc;
padding: 2px;
background-image: linear-gradient(#fff, #fff 25%, #f9f9f9);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
border-radius: 4px;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
cursor: default;
line-height: 1.2em;
}
.ifacebadge.large,.network-status-table .ifacebox-body .ifacebadge{display:inline-flex;flex:1;padding:.25em;min-width:220px;margin:.125em;float:left}
.ifacebadge img{width:16px;height:16px;vertical-align:middle}
.ifacebadge.large>*,.ifacebadge>*{margin:0 .125em}
.ifacebadge.large>*,.ifacebadge>*{margin:0 .125em}
.network-status-table{position:absolute;z-index:1000;left:-625pc;box-shadow:0 0 2px #ccc;border-radius:3px;background:#fff;white-space:pre;opacity:0;transition:opacity .25s ease-in;padding:2px 5px}
.cbi-tooltip{position:absolute;z-index:1000;left:-1000px;opacity:0;transition:opacity .25s ease-out}
.cbi-tooltip-container {
/* cursor: help; */
}
/* Firewall */
.zonebadge{display:inline-block;border-radius:4px;color:#333;white-space:nowrap;padding:0 8px;cursor:pointer}
.zonebadge em,.zonebadge strong{margin:0 5px}
.zonebadge-empty{border:2px dashed #ddd;color:#ddd;font-style:italic}
.zone-forwards{display:flex;flex-wrap:wrap}
.zone-forwards .zone-dest,.zone-forwards .zone-src{display:flex;flex-direction:column}
.zone-forwards>span{flex-basis:10%;text-align:center}
.zone-forwards>*{flex:1 1 40%;padding:1px}
/* Footer */ /* 最底栏颜色 */
footer{border-top:1.5px dashed #726bda;color:#FF6060;font-size: 12px;margin-top:10px;padding:10px 0 ;text-align:center}
footer a{color:#726bda}
footer a:hover{color:#B873B9}
/* diy */
#wan4_i,
#wan6_i {
vertical-align: top;
width: 50px !important;
}
/* login */
body.node-main-login {
background-image:url(bg.jpg);
background-repeat: no-repeat;
background-size: cover;
-ms-background-size: cover; /* IE 9 */
-moz-background-size: cover; /* Firefox */
-webkit-background-size: cover; /* Safari and Chrome */
-o-background-size: cover; /* Opera */
/* Global values */
-ms-padding-top: unset;
-moz-padding-top: unset;
-webkit-padding-top: unset;
-o-padding-top: unset;
}
body.node-main-login>header {
background: none;
border-bottom: none;
}
body.node-main-login .alert-message {
z-index: 999;
}
.node-main-login>.container>form {
width: 20rem;
display: inline-block;
padding: 1rem 1rem;
border-radius: .375rem;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto;
}
.node-main-login>.container>form .errorbox {
color: red;
}
.node-main-login > .container > form > .cbi-map > h2{
width: 110px;
height: 110px;
color: #fff;
text-align: center;
letter-spacing: 4px;
display: block;
margin: -100px auto 20px auto;
padding: 0;
text-indent: -500px;
overflow: hidden;
border-radius: 60px;
border: #118af3 2px solid;
background-image: url(wifi.png);
background-size: cover;
box-shadow: 0 4px 20px 0px rgba(0, 0, 0, 0.14), 0 7px 10px -5px rgba(156, 39, 176, 0.4);
}
.node-main-login > .container > form input[name='luci_username'], .node-main-login > .container > form input[name='luci_password'] {
background:unset;
color: #32CD32;
}
.node-main-login>.container>form>.cbi-map>.cbi-section {
display: inline-block;
}
.node-main-login>.container>footer {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
margin-top: 60px;
display: none;
}
.node-main-login>.container>form .cbi-page-actions {
text-align: center !important;
}
/* luci 19 */
body.modal-overlay-active {
overflow: hidden;
height: 100vh;
}
body.modal-overlay-active #modal_overlay {
visibility: visible;
left: 0;
right: 0;
opacity: 1;
}
body.modal-overlay-active #modal_overlay>.modal {
align-items: center;
box-shadow: 0 0 3px #444;
display: flex;
flex-wrap: wrap;
max-height: unset;
max-width: unset;
min-height: 32px;
min-width: 270px;
background: #d9d6ff !important;
border-radius: 3px;
padding: 1em;
margin: 0;
position: absolute;
top: 15%;
left: 50%;
transform: translate(-50%, -15%);
}
#modal_overlay {
visibility: hidden;
position: fixed;
top: 0;
bottom: 0;
left: -10000px;
right: 10000px;
background: rgba(0, 0, 0, 0.7);
z-index: 900;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
transition: opacity .125s ease-in;
opacity: 0;
}
#modal_overlay>.modal.uci-dialog,
#modal_overlay>.modal.cbi-modal {
max-width: 900px;
}
/*.modal.alert-message.notice {
position: absolute;
padding: 15px;
margin-bottom: 10px;
background: #d9d6ff;
border: 1px solid rgba(0, 0, 0, .1);
border-width: 2px 0;
}*/
.modal>* {
flex-basis: 100%;
line-height: normal;
margin-bottom: .5em;
max-width: 100%;
}
#modal_overlay .modal>* {
flex-basis: 100%;
line-height: normal;
margin-bottom: .5em;
}
[data-tab-title] {
height: 0;
opacity: 0;
overflow: hidden;
}
[data-tab-active="true"],
.cbi-filebrowser.open {
height: auto;
opacity: 1;
overflow: visible;
transition: opacity .25s ease-in;
}
.tabs>li:not(.active),
.cbi-tabmenu>.cbi-tab-disabled {
color: #999;
}
.cbi-dynlist {
height: auto;
min-height: 30px;
display: inline-flex;
flex-direction: column;
}
.cbi-dropdown:not(.btn):not(.cbi-button),
.cbi-dynlist {
min-width: 210px;
max-width: 400px;
width: auto;
background: white;
border: 1px solid #118af3;
border-radius: 5px;
box-sizing: border-box;
padding: 0.3em !important;
}
.cbi-dynlist>.item {
margin-bottom: 4px;
box-shadow: 0 0 2px #ccc;
background: #fff;
border: 1px solid #118af3;
border-radius: 3px;
position: relative;
pointer-events: none;
padding: 2px 2em 2px 4px;
}
.cbi-dynlist>.item::after {
content: "×";
position: absolute;
display: inline-flex;
align-items: center;
top: -1px;
right: -1px;
bottom: -1px;
border: 1px solid #ccc;
border-radius: 0 3px 3px 0;
font-weight: 700;
color: #c44;
pointer-events: auto;
padding: 0 6px;
}
.cbi-dynlist>.add-item,
.td.cbi-section-actions>* {
display: flex;
}
.cbi-dynlist>.add-item>input,
.cbi-dynlist>.add-item>button {
flex: 1 1 auto;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.cbi-dropdown.btn>.open,
.cbi-dropdown.cbi-button>.open {
margin-left: .5em;
border-left: 1px solid;
padding: 0 .5em;
}
.cbi-dropdown.btn>ul:not(.dropdown),
.cbi-dropdown.cbi-button>ul:not(.dropdown) {
margin: 0 0 0 13px !important;
}
.btn.primary,
.cbi-button-action.important,
.cbi-section-actions .cbi-button-edit {
color: #fff;
background: #726bda;
border: 1px solid #726bda;
}
.cbi-dropdown {
display: inline-flex !important;
cursor: pointer;
height: auto;
position: relative;
padding: 0 !important;
}
.cbi-progressbar {
border: 1px solid #ccc;
border-radius: 3px;
position: relative;
min-width: 170px;
height: 20px;
background: #f9f9f9;
margin: 4px 0;
}
.cbi-progressbar>div {
background: #d9d6ff;
height: 100%;
transition: width .25s ease-in;
width: 0%;
}
.cbi-progressbar::after {
position: absolute;
bottom: 0;
top: 0;
right: 0;
left: 0;
text-align: center;
text-shadow: 0 0 2px #fff;
content: attr(title);
white-space: pre;
overflow: hidden;
text-overflow: ellipsis;
} | 0.291384 | 0.050917 |
.galax-slider {
font-size: 16px;
margin: 0 auto;
position: relative;
}
.galax-slider .galax-wrap {
position: relative;
display: block;
/*overflow: hidden;*/
/*border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);
-moz-box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);*/
box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);
}
.galax-display {
width: 100%;
height: 100%;
display: block;
position: relative;
overflow: hidden;
}
img.galax-image {
display: block;
width: 100%;
height: 100%;
}
.galax-display:hover{
opacity: 0.9;
}
.galax-overlay {
color: #fafafa;
background-color: rgba(0,0,0,0.40);
bottom: 0;
font-family: Helvetica, Verdana, Arial;
font-size: 1.65em;
left: 0;
right: 0;
position: absolute;
text-align: left;
z-index: 5;
padding: 8px 12px;
}
.galax-overlay span.galax-sub-text {
display: block;
font-size: 0.65em;
z-index: 6;
}
.galax-controls {
opacity: 0;
background: #222;
width: 100px;
height: 25px;
display: block;
position: absolute;
top: 15px;
left: 50%;
margin-left: -60px;
z-index: 11;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.galax-controls a {
background: url('lib/controls.png') no-repeat 0 0 transparent;
cursor: pointer;
position: absolute;
text-align: center;
width: 25px;
height: 25px;
z-index: 13;
top: 0;
opacity: 0.7;
}
.galax-controls a:hover {
opacity: 1;
}
.galax-controls a.galax-prev {
background-position: 0 0;
right: 50%;
margin-right: 22.5px;
}
.galax-controls a.galax-next {
background-position: -25px 0;
left: 50%;
margin-left: 22.5px;
}
.galax-controls a.galax-start {
background-position: -50px 0;
left: 50%;
margin-left: 0px;
}
.galax-controls a.galax-stop {
background-position: -75px 0;
right: 50%;
margin-right: 0px;
}
.galax-timer {
background: #26a2dd;
display: block;
height: 3px;
width: 100%;
position: relative;
z-index: 10;
margin-top: -3px;
}
.galax-thumbs-wrap {
width: 100%;
position: relative;
overflow: hidden;
/*
overflow-x: scroll;
*/
padding-bottom: 5px; /* droidscrollia varten, scrollbar näkyy paremmin eikä mene thumbien päälle */
}
.galax-slider ul.galax-thumbs {
position: relative;
width: 100%;
text-align: center;
margin: 6px auto 0;
padding: 0;
z-index: 10;
display: inline-block;
}
.galax-thumbs-box {
float: left;
bottom: 0;
left: 0;
width: 100%;
}
.galax-thumbs li {
/* background: #202020; */
cursor: pointer;
display: inline-block;
margin: 0 5px 5px 0;
width: 100px;
height: 42px;
z-index: 8;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.galax-slider .galax-thumbs li img {
width: 100%;
height: 100%;
vertical-align: top;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.galax-slider .galax-thumbs li:last-child {
margin-right: 0;
}
.galax-slider .galax-thumbs li:hover, .galax-slider .galax-thumbs li.active {
background: #26a2dd;
}
.galax-slider .galax-thumbs li:hover img, .galax-slider .galax-thumbs li.active img {
opacity: 0.2;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.8);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.8);
box-shadow: 0 2px 2px rgba(0,0,0,.8);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
}
.galax-slider .galax-anim, .galax-slider .galax-box, .galax-slider .galax-slice {
display: block;
overflow: hidden;
position: absolute;
z-index: 3;
background-size: cover;
-webkit-background-size: cover;
}
/* Small thumbs wihtout text */
.galax-slider .galax-thumbs.small-thumbs li {
background: #f2f2f2;
background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#fff));
background: -moz-linear-gradient(top, #f2f2f2, #fff);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fff');
width: 22px;
height: 22px;
overflow: hidden;
padding: 0;
margin: 0 5px 0 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.galax-slider .galax-thumbs.small-thumbs li:last-child {
margin-right: 0;
}
.galax-slider ul.galax-thumbs.small-thumbs li:hover, .galax-slider ul.galax-thumbs.small-thumbs li.active {
background: #444;
background: -webkit-gradient(linear, left top, left bottom, from(#404040), to(#444));
background: -moz-linear-gradient(top, #404040, #444);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#404040', endColorstr='#444');
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
} | galax-slider.css | .galax-slider {
font-size: 16px;
margin: 0 auto;
position: relative;
}
.galax-slider .galax-wrap {
position: relative;
display: block;
/*overflow: hidden;*/
/*border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);
-moz-box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);*/
box-shadow: 0 0 6px 0 rgba(0,0,0,0.3);
}
.galax-display {
width: 100%;
height: 100%;
display: block;
position: relative;
overflow: hidden;
}
img.galax-image {
display: block;
width: 100%;
height: 100%;
}
.galax-display:hover{
opacity: 0.9;
}
.galax-overlay {
color: #fafafa;
background-color: rgba(0,0,0,0.40);
bottom: 0;
font-family: Helvetica, Verdana, Arial;
font-size: 1.65em;
left: 0;
right: 0;
position: absolute;
text-align: left;
z-index: 5;
padding: 8px 12px;
}
.galax-overlay span.galax-sub-text {
display: block;
font-size: 0.65em;
z-index: 6;
}
.galax-controls {
opacity: 0;
background: #222;
width: 100px;
height: 25px;
display: block;
position: absolute;
top: 15px;
left: 50%;
margin-left: -60px;
z-index: 11;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-webkit-transition: opacity .25s ease-in-out;
}
.galax-controls a {
background: url('lib/controls.png') no-repeat 0 0 transparent;
cursor: pointer;
position: absolute;
text-align: center;
width: 25px;
height: 25px;
z-index: 13;
top: 0;
opacity: 0.7;
}
.galax-controls a:hover {
opacity: 1;
}
.galax-controls a.galax-prev {
background-position: 0 0;
right: 50%;
margin-right: 22.5px;
}
.galax-controls a.galax-next {
background-position: -25px 0;
left: 50%;
margin-left: 22.5px;
}
.galax-controls a.galax-start {
background-position: -50px 0;
left: 50%;
margin-left: 0px;
}
.galax-controls a.galax-stop {
background-position: -75px 0;
right: 50%;
margin-right: 0px;
}
.galax-timer {
background: #26a2dd;
display: block;
height: 3px;
width: 100%;
position: relative;
z-index: 10;
margin-top: -3px;
}
.galax-thumbs-wrap {
width: 100%;
position: relative;
overflow: hidden;
/*
overflow-x: scroll;
*/
padding-bottom: 5px; /* droidscrollia varten, scrollbar näkyy paremmin eikä mene thumbien päälle */
}
.galax-slider ul.galax-thumbs {
position: relative;
width: 100%;
text-align: center;
margin: 6px auto 0;
padding: 0;
z-index: 10;
display: inline-block;
}
.galax-thumbs-box {
float: left;
bottom: 0;
left: 0;
width: 100%;
}
.galax-thumbs li {
/* background: #202020; */
cursor: pointer;
display: inline-block;
margin: 0 5px 5px 0;
width: 100px;
height: 42px;
z-index: 8;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.galax-slider .galax-thumbs li img {
width: 100%;
height: 100%;
vertical-align: top;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.galax-slider .galax-thumbs li:last-child {
margin-right: 0;
}
.galax-slider .galax-thumbs li:hover, .galax-slider .galax-thumbs li.active {
background: #26a2dd;
}
.galax-slider .galax-thumbs li:hover img, .galax-slider .galax-thumbs li.active img {
opacity: 0.2;
-webkit-box-shadow: 0 2px 2px rgba(0,0,0,.8);
-moz-box-shadow: 0 2px 2px rgba(0,0,0,.8);
box-shadow: 0 2px 2px rgba(0,0,0,.8);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
}
.galax-slider .galax-anim, .galax-slider .galax-box, .galax-slider .galax-slice {
display: block;
overflow: hidden;
position: absolute;
z-index: 3;
background-size: cover;
-webkit-background-size: cover;
}
/* Small thumbs wihtout text */
.galax-slider .galax-thumbs.small-thumbs li {
background: #f2f2f2;
background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#fff));
background: -moz-linear-gradient(top, #f2f2f2, #fff);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#fff');
width: 22px;
height: 22px;
overflow: hidden;
padding: 0;
margin: 0 5px 0 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.galax-slider .galax-thumbs.small-thumbs li:last-child {
margin-right: 0;
}
.galax-slider ul.galax-thumbs.small-thumbs li:hover, .galax-slider ul.galax-thumbs.small-thumbs li.active {
background: #444;
background: -webkit-gradient(linear, left top, left bottom, from(#404040), to(#444));
background: -moz-linear-gradient(top, #404040, #444);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#404040', endColorstr='#444');
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
} | 0.29088 | 0.112673 |
.boxx{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
background: #FFF;
text-align:center;
}
.imagess{
display: inline-block;
height:1em
max-width:194px;
}
.buttonss{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-radius: 3px;
text-align:center;
box-sizing: border-box;
}
.itemm{ font-weight:bold;
text-align:center;
text-decoration:none;
line-height:1;
white-space:nowrap;
display:inline-block;
position:relative;5em
margin-top: -.10em;
}
.imgr{ padding-bottom: 0.2em;
display: inline-block;
vertical-align: middle;
max-width: 100%;
height: auto;
box-sizing: border-box;
}
p.tipp{color:#0084A9}
.tabss{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-top-left-radius: .25em .5em;
border-top-right-radius: .25em .5em;
text-align:center;
box-sizing: border-box;
}
.wizards{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
width:3em;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-bottom-left-radius: 10px 30px;
border-bottom-right-radius: 10px 30px;
text-align:center;
box-sizing: border-box;
}
strong {
font-weight: bold;
}
.border6{
-webkit-order-top-right-radius:24px;
-webkit-order-top-left-radius:24px;
border-tp-right-radius:24px;
border-tp-left-radius:24px
}
h2:before, ul:before { display: block; content: " "; margin-top: -285px; height: 285px; visibility: hidden; }
#top { position: relative; z-index: 1000; /* Stay on top */ }
h3:before, ul:before { display: block; content: " "; margin-top: -80px; height: 80px; visibility: hidden; }
#top { position: relative; z-index: 1000; /* Stay on top */ } | contributions/add/doc/css/Keil-lab.css | .boxx{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
background: #FFF;
text-align:center;
}
.imagess{
display: inline-block;
height:1em
max-width:194px;
}
.buttonss{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-radius: 3px;
text-align:center;
box-sizing: border-box;
}
.itemm{ font-weight:bold;
text-align:center;
text-decoration:none;
line-height:1;
white-space:nowrap;
display:inline-block;
position:relative;5em
margin-top: -.10em;
}
.imgr{ padding-bottom: 0.2em;
display: inline-block;
vertical-align: middle;
max-width: 100%;
height: auto;
box-sizing: border-box;
}
p.tipp{color:#0084A9}
.tabss{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-top-left-radius: .25em .5em;
border-top-right-radius: .25em .5em;
text-align:center;
box-sizing: border-box;
}
.wizards{
font-size: 70%;
word-break:keep-all;
font-family:Arial;
border: 1px solid;
padding: .3em;
padding-top: 1px;
padding-bottom: 1px;
width:3em;
height:1.2em;
border-right: 2px solid black;
background: #FFF;
border-bottom-left-radius: 10px 30px;
border-bottom-right-radius: 10px 30px;
text-align:center;
box-sizing: border-box;
}
strong {
font-weight: bold;
}
.border6{
-webkit-order-top-right-radius:24px;
-webkit-order-top-left-radius:24px;
border-tp-right-radius:24px;
border-tp-left-radius:24px
}
h2:before, ul:before { display: block; content: " "; margin-top: -285px; height: 285px; visibility: hidden; }
#top { position: relative; z-index: 1000; /* Stay on top */ }
h3:before, ul:before { display: block; content: " "; margin-top: -80px; height: 80px; visibility: hidden; }
#top { position: relative; z-index: 1000; /* Stay on top */ } | 0.205814 | 0.084871 |
* {
padding:0;
margin:0;
}
h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, ul, ol, dl, fieldset, address { margin:1em 0; }
li, dd { margin-left:5%; }
fieldset { padding: .5em; }
select option{ padding:0 5px; }
.access{ display:none; } /* For accessibility related elements */
.clear{ clear:both; height:0px; font-size:0px; line-height:0px; overflow:hidden; }
a{ outline:none; }
a img{ border:none; }
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* html .clearfix {height: 1%;}
.clearfix {display:inline-block;}
.clearfix {display: block;}
.right {float: right;}
/* @end */
/*----------------------------------------------------------------------------
@group Base Layout
----------------------------------------------------------------------------*/
body{
margin:0;
padding:0;
font-size:14px;
line-height:1.6;
font-family:Helvetica, Arial, sans-serif;
background:#fff;
}
#wrapper{
margin:0 auto;
width:960px;
}
.wide #wrapper{
width:1000px;
}
h2#logo{
width:600px;
margin:0 auto 25px auto;
}
h2#logo a{
display:block;
height:156px;
text-indent:-9999px;
text-decoration:none;
background:url(../images/logo.png);
}
.content{
padding:5px;
background:#ededed;
border-radius:4px;
margin-bottom: 50px;
}
.content > .inside{
border:1px solid #ddd;
background:#fff;
border-radius:3px;
}
/* @end */
/*----------------------------------------------------------------------------
@group Builds
----------------------------------------------------------------------------*/
ul.builds{
margin:0;
}
ul.builds li{
list-style-type:none;
margin:0;
padding:12px 10px;
border-bottom:1px solid #e5e5e5;
border-top:1px solid #fff;
background:-webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#f2f2f2));
background:-moz-linear-gradient(top, #fdfdfd, #f2f2f2);
}
ul.builds li:first-child{
border-top:none;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
ul.builds li:last-child{
border-bottom:none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
ul.builds li:hover{
background:-webkit-gradient(linear, left top, left bottom, from(#f5f9fb), to(#e9eef0));
background:-moz-linear-gradient(top, #f5f9fb, #e9eef0);
}
ul.builds li.building:hover{
background:-webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#f2f2f2));
background:-moz-linear-gradient(top, #fdfdfd, #f2f2f2);
}
ul.builds a{
text-decoration:none;
}
ul.builds a.console{
float: right;
display:block;
width: 22px;
height: 40px;
margin-left: 10px;
background:url(../images/disclosure-arrow.png) 65% 10px no-repeat;
}
ul.builds li:hover a.console{
background-position:65% -90px;
}
ul.builds .status{
float:left;
margin-top:5px;
margin-right:10px;
width:37px;
height:34px;
background:url(../images/robawt-status.gif) 0 0 no-repeat;
}
ul.builds .building .status{
background:url(../images/building-bot.gif);
}
ul.builds .janky .status{
background-position:0 -200px;
}
ul.builds .pending .status{
background-position:0 -100px;
}
ul.builds h2{
margin:0;
font-size:16px;
text-shadow:0 1px #fff;
}
ul.builds h2 span{
font-weight: normal;
color: #666666;
}
ul.builds .good a{
color:#358c00;
}
ul.builds .good h2{
color:#358c00;
}
ul.builds .building a{
color:#e59741;
}
ul.builds .building h2{
color:#e59741;
}
ul.builds .pending a{
color:#e59741;
}
ul.builds .pending h2{
color:#e59741;
}
ul.builds .janky a{
color:#ae0000;
}
ul.builds .janky h2{
color:#ae0000;
}
ul.builds p.sha1{
margin-top: 2px;
}
ul.builds p{
margin:-2px 0 0 0;
font-size:13px;
font-weight:200;
color:#666;
text-shadow:0 1px #fff;
}
ul.builds .building p{
color:#999;
}
/* @end */
/*----------------------------------------------------------------------------
@group Text Styles
----------------------------------------------------------------------------*/
pre{
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
pre::-webkit-scrollbar {
height: 8px;
width: 8px;
}
pre::-webkit-scrollbar-track-piece{
margin-bottom:10px;
background-color: #e5e5e5;
border-bottom-left-radius: 4px 4px;
border-bottom-right-radius: 4px 4px;
border-top-left-radius: 4px 4px;
border-top-right-radius: 4px 4px;
}
pre::-webkit-scrollbar-thumb:vertical{
height: 25px;
background-color: #ccc;
-webkit-border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(255,255,255,1);
}
pre::-webkit-scrollbar-thumb:horizontal{
width: 25px;
background-color: #ccc;
-webkit-border-radius: 4px;
}
pre.trace {
background: #111111;
color: #fff;
white-space: pre;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
overflow: auto;
overflow-y: hidden;
font-size: 12px;
}
pre.trace .icon-refresh {
font-size: 24px;
margin-left: 20px;
}
.autoscroll-container {
margin-bottom: 5px;
}
.build-widget {
padding: 10px;
background: #f4f4f4;
margin-bottom: 20px;
border-radius: 4px;
}
.build-widget .title {
margin-top: 0;
color: #666;
text-shadow: 0 1px 1px #FFF;
line-height: 1.5;
}
.build-widget .attr-name {
color: #777;
}
.build-head h4 {
line-height: 1.5;
}
.build-head h4 .label {
padding: 4px 9px;
position: relative;
top: -2px;
left: 4px;
}
/* @end */
/*----------------------------------------------------------------------------
@group Terminal color styles
----------------------------------------------------------------------------*/
.term-bold {
font-weight: bold;
}
.term-italic {
font-style: italic;
}
.term-conceal {
visibility: hidden;
}
.term-underline {
text-decoration: underline;
}
.term-cross {
text-decoration: line-through;
}
.term-fg-black {
color: black;
}
.term-fg-red {
color: #cd0000;
}
.term-fg-green {
color: #00cd00;
}
.term-fg-yellow {
color: #cdcd00;
}
.term-fg-blue {
color: #0000ee;
}
.term-fg-magenta {
color: #cd00cd;
}
.term-fg-cyan {
color: #00cdcd;
}
.term-fg-white {
color: #e5e5e5;
}
.term-fg-l-black {
color: #7f7f7f;
}
.term-fg-l-red {
color: red;
}
.term-fg-l-green {
color: lime;
}
.term-fg-l-yellow {
color: yellow;
}
.term-fg-l-blue {
color: #5c5cff;
}
.term-fg-l-magenta {
color: magenta;
}
.term-fg-l-cyan {
color: cyan;
}
.term-fg-l-white {
color: white;
}
.term-bg-black {
background-color: black;
}
.term-bg-red {
background-color: #cd0000;
}
.term-bg-green {
background-color: #00cd00;
}
.term-bg-yellow {
background-color: #cdcd00;
}
.term-bg-blue {
background-color: #0000ee;
}
.term-bg-magenta {
background-color: #cd00cd;
}
.term-bg-cyan {
background-color: #00cdcd;
}
.term-bg-white {
background-color: #e5e5e5;
}
.term-bg-l-black {
background-color: #7f7f7f;
}
.term-bg-l-red {
background-color: red;
}
.term-bg-l-green {
background-color: lime;
}
.term-bg-l-yellow {
background-color: yellow;
}
.term-bg-l-blue {
background-color: #5c5cff;
}
.term-bg-l-magenta {
background-color: magenta;
}
.term-bg-l-cyan {
background-color: cyan;
}
.term-bg-l-white {
background-color: white;
}
.xterm-fg-0 {
color: #000000;
}
.xterm-fg-1 {
color: #800000;
}
.xterm-fg-2 {
color: #008000;
}
.xterm-fg-3 {
color: #808000;
}
.xterm-fg-4 {
color: #000080;
}
.xterm-fg-5 {
color: #800080;
}
.xterm-fg-6 {
color: #008080;
}
.xterm-fg-7 {
color: #c0c0c0;
}
.xterm-fg-8 {
color: #808080;
}
.xterm-fg-9 {
color: #ff0000;
}
.xterm-fg-10 {
color: #00ff00;
}
.xterm-fg-11 {
color: #ffff00;
}
.xterm-fg-12 {
color: #0000ff;
}
.xterm-fg-13 {
color: #ff00ff;
}
.xterm-fg-14 {
color: #00ffff;
}
.xterm-fg-15 {
color: #ffffff;
}
.xterm-fg-16 {
color: #000000;
}
.xterm-fg-17 {
color: #00005f;
}
.xterm-fg-18 {
color: #000087;
}
.xterm-fg-19 {
color: #0000af;
}
.xterm-fg-20 {
color: #0000d7;
}
.xterm-fg-21 {
color: #0000ff;
}
.xterm-fg-22 {
color: #005f00;
}
.xterm-fg-23 {
color: #005f5f;
}
.xterm-fg-24 {
color: #005f87;
}
.xterm-fg-25 {
color: #005faf;
}
.xterm-fg-26 {
color: #005fd7;
}
.xterm-fg-27 {
color: #005fff;
}
.xterm-fg-28 {
color: #008700;
}
.xterm-fg-29 {
color: #00875f;
}
.xterm-fg-30 {
color: #008787;
}
.xterm-fg-31 {
color: #0087af;
}
.xterm-fg-32 {
color: #0087d7;
}
.xterm-fg-33 {
color: #0087ff;
}
.xterm-fg-34 {
color: #00af00;
}
.xterm-fg-35 {
color: #00af5f;
}
.xterm-fg-36 {
color: #00af87;
}
.xterm-fg-37 {
color: #00afaf;
}
.xterm-fg-38 {
color: #00afd7;
}
.xterm-fg-39 {
color: #00afff;
}
.xterm-fg-40 {
color: #00d700;
}
.xterm-fg-41 {
color: #00d75f;
}
.xterm-fg-42 {
color: #00d787;
}
.xterm-fg-43 {
color: #00d7af;
}
.xterm-fg-44 {
color: #00d7d7;
}
.xterm-fg-45 {
color: #00d7ff;
}
.xterm-fg-46 {
color: #00ff00;
}
.xterm-fg-47 {
color: #00ff5f;
}
.xterm-fg-48 {
color: #00ff87;
}
.xterm-fg-49 {
color: #00ffaf;
}
.xterm-fg-50 {
color: #00ffd7;
}
.xterm-fg-51 {
color: #00ffff;
}
.xterm-fg-52 {
color: #5f0000;
}
.xterm-fg-53 {
color: #5f005f;
}
.xterm-fg-54 {
color: #5f0087;
}
.xterm-fg-55 {
color: #5f00af;
}
.xterm-fg-56 {
color: #5f00d7;
}
.xterm-fg-57 {
color: #5f00ff;
}
.xterm-fg-58 {
color: #5f5f00;
}
.xterm-fg-59 {
color: #5f5f5f;
}
.xterm-fg-60 {
color: #5f5f87;
}
.xterm-fg-61 {
color: #5f5faf;
}
.xterm-fg-62 {
color: #5f5fd7;
}
.xterm-fg-63 {
color: #5f5fff;
}
.xterm-fg-64 {
color: #5f8700;
}
.xterm-fg-65 {
color: #5f875f;
}
.xterm-fg-66 {
color: #5f8787;
}
.xterm-fg-67 {
color: #5f87af;
}
.xterm-fg-68 {
color: #5f87d7;
}
.xterm-fg-69 {
color: #5f87ff;
}
.xterm-fg-70 {
color: #5faf00;
}
.xterm-fg-71 {
color: #5faf5f;
}
.xterm-fg-72 {
color: #5faf87;
}
.xterm-fg-73 {
color: #5fafaf;
}
.xterm-fg-74 {
color: #5fafd7;
}
.xterm-fg-75 {
color: #5fafff;
}
.xterm-fg-76 {
color: #5fd700;
}
.xterm-fg-77 {
color: #5fd75f;
}
.xterm-fg-78 {
color: #5fd787;
}
.xterm-fg-79 {
color: #5fd7af;
}
.xterm-fg-80 {
color: #5fd7d7;
}
.xterm-fg-81 {
color: #5fd7ff;
}
.xterm-fg-82 {
color: #5fff00;
}
.xterm-fg-83 {
color: #5fff5f;
}
.xterm-fg-84 {
color: #5fff87;
}
.xterm-fg-85 {
color: #5fffaf;
}
.xterm-fg-86 {
color: #5fffd7;
}
.xterm-fg-87 {
color: #5fffff;
}
.xterm-fg-88 {
color: #870000;
}
.xterm-fg-89 {
color: #87005f;
}
.xterm-fg-90 {
color: #870087;
}
.xterm-fg-91 {
color: #8700af;
}
.xterm-fg-92 {
color: #8700d7;
}
.xterm-fg-93 {
color: #8700ff;
}
.xterm-fg-94 {
color: #875f00;
}
.xterm-fg-95 {
color: #875f5f;
}
.xterm-fg-96 {
color: #875f87;
}
.xterm-fg-97 {
color: #875faf;
}
.xterm-fg-98 {
color: #875fd7;
}
.xterm-fg-99 {
color: #875fff;
}
.xterm-fg-100 {
color: #878700;
}
.xterm-fg-101 {
color: #87875f;
}
.xterm-fg-102 {
color: #878787;
}
.xterm-fg-103 {
color: #8787af;
}
.xterm-fg-104 {
color: #8787d7;
}
.xterm-fg-105 {
color: #8787ff;
}
.xterm-fg-106 {
color: #87af00;
}
.xterm-fg-107 {
color: #87af5f;
}
.xterm-fg-108 {
color: #87af87;
}
.xterm-fg-109 {
color: #87afaf;
}
.xterm-fg-110 {
color: #87afd7;
}
.xterm-fg-111 {
color: #87afff;
}
.xterm-fg-112 {
color: #87d700;
}
.xterm-fg-113 {
color: #87d75f;
}
.xterm-fg-114 {
color: #87d787;
}
.xterm-fg-115 {
color: #87d7af;
}
.xterm-fg-116 {
color: #87d7d7;
}
.xterm-fg-117 {
color: #87d7ff;
}
.xterm-fg-118 {
color: #87ff00;
}
.xterm-fg-119 {
color: #87ff5f;
}
.xterm-fg-120 {
color: #87ff87;
}
.xterm-fg-121 {
color: #87ffaf;
}
.xterm-fg-122 {
color: #87ffd7;
}
.xterm-fg-123 {
color: #87ffff;
}
.xterm-fg-124 {
color: #af0000;
}
.xterm-fg-125 {
color: #af005f;
}
.xterm-fg-126 {
color: #af0087;
}
.xterm-fg-127 {
color: #af00af;
}
.xterm-fg-128 {
color: #af00d7;
}
.xterm-fg-129 {
color: #af00ff;
}
.xterm-fg-130 {
color: #af5f00;
}
.xterm-fg-131 {
color: #af5f5f;
}
.xterm-fg-132 {
color: #af5f87;
}
.xterm-fg-133 {
color: #af5faf;
}
.xterm-fg-134 {
color: #af5fd7;
}
.xterm-fg-135 {
color: #af5fff;
}
.xterm-fg-136 {
color: #af8700;
}
.xterm-fg-137 {
color: #af875f;
}
.xterm-fg-138 {
color: #af8787;
}
.xterm-fg-139 {
color: #af87af;
}
.xterm-fg-140 {
color: #af87d7;
}
.xterm-fg-141 {
color: #af87ff;
}
.xterm-fg-142 {
color: #afaf00;
}
.xterm-fg-143 {
color: #afaf5f;
}
.xterm-fg-144 {
color: #afaf87;
}
.xterm-fg-145 {
color: #afafaf;
}
.xterm-fg-146 {
color: #afafd7;
}
.xterm-fg-147 {
color: #afafff;
}
.xterm-fg-148 {
color: #afd700;
}
.xterm-fg-149 {
color: #afd75f;
}
.xterm-fg-150 {
color: #afd787;
}
.xterm-fg-151 {
color: #afd7af;
}
.xterm-fg-152 {
color: #afd7d7;
}
.xterm-fg-153 {
color: #afd7ff;
}
.xterm-fg-154 {
color: #afff00;
}
.xterm-fg-155 {
color: #afff5f;
}
.xterm-fg-156 {
color: #afff87;
}
.xterm-fg-157 {
color: #afffaf;
}
.xterm-fg-158 {
color: #afffd7;
}
.xterm-fg-159 {
color: #afffff;
}
.xterm-fg-160 {
color: #d70000;
}
.xterm-fg-161 {
color: #d7005f;
}
.xterm-fg-162 {
color: #d70087;
}
.xterm-fg-163 {
color: #d700af;
}
.xterm-fg-164 {
color: #d700d7;
}
.xterm-fg-165 {
color: #d700ff;
}
.xterm-fg-166 {
color: #d75f00;
}
.xterm-fg-167 {
color: #d75f5f;
}
.xterm-fg-168 {
color: #d75f87;
}
.xterm-fg-169 {
color: #d75faf;
}
.xterm-fg-170 {
color: #d75fd7;
}
.xterm-fg-171 {
color: #d75fff;
}
.xterm-fg-172 {
color: #d78700;
}
.xterm-fg-173 {
color: #d7875f;
}
.xterm-fg-174 {
color: #d78787;
}
.xterm-fg-175 {
color: #d787af;
}
.xterm-fg-176 {
color: #d787d7;
}
.xterm-fg-177 {
color: #d787ff;
}
.xterm-fg-178 {
color: #d7af00;
}
.xterm-fg-179 {
color: #d7af5f;
}
.xterm-fg-180 {
color: #d7af87;
}
.xterm-fg-181 {
color: #d7afaf;
}
.xterm-fg-182 {
color: #d7afd7;
}
.xterm-fg-183 {
color: #d7afff;
}
.xterm-fg-184 {
color: #d7d700;
}
.xterm-fg-185 {
color: #d7d75f;
}
.xterm-fg-186 {
color: #d7d787;
}
.xterm-fg-187 {
color: #d7d7af;
}
.xterm-fg-188 {
color: #d7d7d7;
}
.xterm-fg-189 {
color: #d7d7ff;
}
.xterm-fg-190 {
color: #d7ff00;
}
.xterm-fg-191 {
color: #d7ff5f;
}
.xterm-fg-192 {
color: #d7ff87;
}
.xterm-fg-193 {
color: #d7ffaf;
}
.xterm-fg-194 {
color: #d7ffd7;
}
.xterm-fg-195 {
color: #d7ffff;
}
.xterm-fg-196 {
color: #ff0000;
}
.xterm-fg-197 {
color: #ff005f;
}
.xterm-fg-198 {
color: #ff0087;
}
.xterm-fg-199 {
color: #ff00af;
}
.xterm-fg-200 {
color: #ff00d7;
}
.xterm-fg-201 {
color: #ff00ff;
}
.xterm-fg-202 {
color: #ff5f00;
}
.xterm-fg-203 {
color: #ff5f5f;
}
.xterm-fg-204 {
color: #ff5f87;
}
.xterm-fg-205 {
color: #ff5faf;
}
.xterm-fg-206 {
color: #ff5fd7;
}
.xterm-fg-207 {
color: #ff5fff;
}
.xterm-fg-208 {
color: #ff8700;
}
.xterm-fg-209 {
color: #ff875f;
}
.xterm-fg-210 {
color: #ff8787;
}
.xterm-fg-211 {
color: #ff87af;
}
.xterm-fg-212 {
color: #ff87d7;
}
.xterm-fg-213 {
color: #ff87ff;
}
.xterm-fg-214 {
color: #ffaf00;
}
.xterm-fg-215 {
color: #ffaf5f;
}
.xterm-fg-216 {
color: #ffaf87;
}
.xterm-fg-217 {
color: #ffafaf;
}
.xterm-fg-218 {
color: #ffafd7;
}
.xterm-fg-219 {
color: #ffafff;
}
.xterm-fg-220 {
color: #ffd700;
}
.xterm-fg-221 {
color: #ffd75f;
}
.xterm-fg-222 {
color: #ffd787;
}
.xterm-fg-223 {
color: #ffd7af;
}
.xterm-fg-224 {
color: #ffd7d7;
}
.xterm-fg-225 {
color: #ffd7ff;
}
.xterm-fg-226 {
color: #ffff00;
}
.xterm-fg-227 {
color: #ffff5f;
}
.xterm-fg-228 {
color: #ffff87;
}
.xterm-fg-229 {
color: #ffffaf;
}
.xterm-fg-230 {
color: #ffffd7;
}
.xterm-fg-231 {
color: #ffffff;
}
.xterm-fg-232 {
color: #080808;
}
.xterm-fg-233 {
color: #121212;
}
.xterm-fg-234 {
color: #1c1c1c;
}
.xterm-fg-235 {
color: #262626;
}
.xterm-fg-236 {
color: #303030;
}
.xterm-fg-237 {
color: #3a3a3a;
}
.xterm-fg-238 {
color: #444444;
}
.xterm-fg-239 {
color: #4e4e4e;
}
.xterm-fg-240 {
color: #585858;
}
.xterm-fg-241 {
color: #626262;
}
.xterm-fg-242 {
color: #6c6c6c;
}
.xterm-fg-243 {
color: #767676;
}
.xterm-fg-244 {
color: #808080;
}
.xterm-fg-245 {
color: #8a8a8a;
}
.xterm-fg-246 {
color: #949494;
}
.xterm-fg-247 {
color: #9e9e9e;
}
.xterm-fg-248 {
color: #a8a8a8;
}
.xterm-fg-249 {
color: #b2b2b2;
}
.xterm-fg-250 {
color: #bcbcbc;
}
.xterm-fg-251 {
color: #c6c6c6;
}
.xterm-fg-252 {
color: #d0d0d0;
}
.xterm-fg-253 {
color: #dadada;
}
.xterm-fg-254 {
color: #e4e4e4;
}
.xterm-fg-255 {
color: #eeeeee;
} | lib/janky/public/css/base.css | * {
padding:0;
margin:0;
}
h1, h2, h3, h4, h5, h6, p, pre, blockquote, label, ul, ol, dl, fieldset, address { margin:1em 0; }
li, dd { margin-left:5%; }
fieldset { padding: .5em; }
select option{ padding:0 5px; }
.access{ display:none; } /* For accessibility related elements */
.clear{ clear:both; height:0px; font-size:0px; line-height:0px; overflow:hidden; }
a{ outline:none; }
a img{ border:none; }
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
* html .clearfix {height: 1%;}
.clearfix {display:inline-block;}
.clearfix {display: block;}
.right {float: right;}
/* @end */
/*----------------------------------------------------------------------------
@group Base Layout
----------------------------------------------------------------------------*/
body{
margin:0;
padding:0;
font-size:14px;
line-height:1.6;
font-family:Helvetica, Arial, sans-serif;
background:#fff;
}
#wrapper{
margin:0 auto;
width:960px;
}
.wide #wrapper{
width:1000px;
}
h2#logo{
width:600px;
margin:0 auto 25px auto;
}
h2#logo a{
display:block;
height:156px;
text-indent:-9999px;
text-decoration:none;
background:url(../images/logo.png);
}
.content{
padding:5px;
background:#ededed;
border-radius:4px;
margin-bottom: 50px;
}
.content > .inside{
border:1px solid #ddd;
background:#fff;
border-radius:3px;
}
/* @end */
/*----------------------------------------------------------------------------
@group Builds
----------------------------------------------------------------------------*/
ul.builds{
margin:0;
}
ul.builds li{
list-style-type:none;
margin:0;
padding:12px 10px;
border-bottom:1px solid #e5e5e5;
border-top:1px solid #fff;
background:-webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#f2f2f2));
background:-moz-linear-gradient(top, #fdfdfd, #f2f2f2);
}
ul.builds li:first-child{
border-top:none;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
ul.builds li:last-child{
border-bottom:none;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
}
ul.builds li:hover{
background:-webkit-gradient(linear, left top, left bottom, from(#f5f9fb), to(#e9eef0));
background:-moz-linear-gradient(top, #f5f9fb, #e9eef0);
}
ul.builds li.building:hover{
background:-webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#f2f2f2));
background:-moz-linear-gradient(top, #fdfdfd, #f2f2f2);
}
ul.builds a{
text-decoration:none;
}
ul.builds a.console{
float: right;
display:block;
width: 22px;
height: 40px;
margin-left: 10px;
background:url(../images/disclosure-arrow.png) 65% 10px no-repeat;
}
ul.builds li:hover a.console{
background-position:65% -90px;
}
ul.builds .status{
float:left;
margin-top:5px;
margin-right:10px;
width:37px;
height:34px;
background:url(../images/robawt-status.gif) 0 0 no-repeat;
}
ul.builds .building .status{
background:url(../images/building-bot.gif);
}
ul.builds .janky .status{
background-position:0 -200px;
}
ul.builds .pending .status{
background-position:0 -100px;
}
ul.builds h2{
margin:0;
font-size:16px;
text-shadow:0 1px #fff;
}
ul.builds h2 span{
font-weight: normal;
color: #666666;
}
ul.builds .good a{
color:#358c00;
}
ul.builds .good h2{
color:#358c00;
}
ul.builds .building a{
color:#e59741;
}
ul.builds .building h2{
color:#e59741;
}
ul.builds .pending a{
color:#e59741;
}
ul.builds .pending h2{
color:#e59741;
}
ul.builds .janky a{
color:#ae0000;
}
ul.builds .janky h2{
color:#ae0000;
}
ul.builds p.sha1{
margin-top: 2px;
}
ul.builds p{
margin:-2px 0 0 0;
font-size:13px;
font-weight:200;
color:#666;
text-shadow:0 1px #fff;
}
ul.builds .building p{
color:#999;
}
/* @end */
/*----------------------------------------------------------------------------
@group Text Styles
----------------------------------------------------------------------------*/
pre{
display: block;
padding: 9.5px;
margin: 0 0 10px;
font-size: 13px;
line-height: 1.42857143;
word-break: break-all;
word-wrap: break-word;
color: #333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
pre::-webkit-scrollbar {
height: 8px;
width: 8px;
}
pre::-webkit-scrollbar-track-piece{
margin-bottom:10px;
background-color: #e5e5e5;
border-bottom-left-radius: 4px 4px;
border-bottom-right-radius: 4px 4px;
border-top-left-radius: 4px 4px;
border-top-right-radius: 4px 4px;
}
pre::-webkit-scrollbar-thumb:vertical{
height: 25px;
background-color: #ccc;
-webkit-border-radius: 4px;
-webkit-box-shadow: 0 1px 1px rgba(255,255,255,1);
}
pre::-webkit-scrollbar-thumb:horizontal{
width: 25px;
background-color: #ccc;
-webkit-border-radius: 4px;
}
pre.trace {
background: #111111;
color: #fff;
white-space: pre;
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
overflow: auto;
overflow-y: hidden;
font-size: 12px;
}
pre.trace .icon-refresh {
font-size: 24px;
margin-left: 20px;
}
.autoscroll-container {
margin-bottom: 5px;
}
.build-widget {
padding: 10px;
background: #f4f4f4;
margin-bottom: 20px;
border-radius: 4px;
}
.build-widget .title {
margin-top: 0;
color: #666;
text-shadow: 0 1px 1px #FFF;
line-height: 1.5;
}
.build-widget .attr-name {
color: #777;
}
.build-head h4 {
line-height: 1.5;
}
.build-head h4 .label {
padding: 4px 9px;
position: relative;
top: -2px;
left: 4px;
}
/* @end */
/*----------------------------------------------------------------------------
@group Terminal color styles
----------------------------------------------------------------------------*/
.term-bold {
font-weight: bold;
}
.term-italic {
font-style: italic;
}
.term-conceal {
visibility: hidden;
}
.term-underline {
text-decoration: underline;
}
.term-cross {
text-decoration: line-through;
}
.term-fg-black {
color: black;
}
.term-fg-red {
color: #cd0000;
}
.term-fg-green {
color: #00cd00;
}
.term-fg-yellow {
color: #cdcd00;
}
.term-fg-blue {
color: #0000ee;
}
.term-fg-magenta {
color: #cd00cd;
}
.term-fg-cyan {
color: #00cdcd;
}
.term-fg-white {
color: #e5e5e5;
}
.term-fg-l-black {
color: #7f7f7f;
}
.term-fg-l-red {
color: red;
}
.term-fg-l-green {
color: lime;
}
.term-fg-l-yellow {
color: yellow;
}
.term-fg-l-blue {
color: #5c5cff;
}
.term-fg-l-magenta {
color: magenta;
}
.term-fg-l-cyan {
color: cyan;
}
.term-fg-l-white {
color: white;
}
.term-bg-black {
background-color: black;
}
.term-bg-red {
background-color: #cd0000;
}
.term-bg-green {
background-color: #00cd00;
}
.term-bg-yellow {
background-color: #cdcd00;
}
.term-bg-blue {
background-color: #0000ee;
}
.term-bg-magenta {
background-color: #cd00cd;
}
.term-bg-cyan {
background-color: #00cdcd;
}
.term-bg-white {
background-color: #e5e5e5;
}
.term-bg-l-black {
background-color: #7f7f7f;
}
.term-bg-l-red {
background-color: red;
}
.term-bg-l-green {
background-color: lime;
}
.term-bg-l-yellow {
background-color: yellow;
}
.term-bg-l-blue {
background-color: #5c5cff;
}
.term-bg-l-magenta {
background-color: magenta;
}
.term-bg-l-cyan {
background-color: cyan;
}
.term-bg-l-white {
background-color: white;
}
.xterm-fg-0 {
color: #000000;
}
.xterm-fg-1 {
color: #800000;
}
.xterm-fg-2 {
color: #008000;
}
.xterm-fg-3 {
color: #808000;
}
.xterm-fg-4 {
color: #000080;
}
.xterm-fg-5 {
color: #800080;
}
.xterm-fg-6 {
color: #008080;
}
.xterm-fg-7 {
color: #c0c0c0;
}
.xterm-fg-8 {
color: #808080;
}
.xterm-fg-9 {
color: #ff0000;
}
.xterm-fg-10 {
color: #00ff00;
}
.xterm-fg-11 {
color: #ffff00;
}
.xterm-fg-12 {
color: #0000ff;
}
.xterm-fg-13 {
color: #ff00ff;
}
.xterm-fg-14 {
color: #00ffff;
}
.xterm-fg-15 {
color: #ffffff;
}
.xterm-fg-16 {
color: #000000;
}
.xterm-fg-17 {
color: #00005f;
}
.xterm-fg-18 {
color: #000087;
}
.xterm-fg-19 {
color: #0000af;
}
.xterm-fg-20 {
color: #0000d7;
}
.xterm-fg-21 {
color: #0000ff;
}
.xterm-fg-22 {
color: #005f00;
}
.xterm-fg-23 {
color: #005f5f;
}
.xterm-fg-24 {
color: #005f87;
}
.xterm-fg-25 {
color: #005faf;
}
.xterm-fg-26 {
color: #005fd7;
}
.xterm-fg-27 {
color: #005fff;
}
.xterm-fg-28 {
color: #008700;
}
.xterm-fg-29 {
color: #00875f;
}
.xterm-fg-30 {
color: #008787;
}
.xterm-fg-31 {
color: #0087af;
}
.xterm-fg-32 {
color: #0087d7;
}
.xterm-fg-33 {
color: #0087ff;
}
.xterm-fg-34 {
color: #00af00;
}
.xterm-fg-35 {
color: #00af5f;
}
.xterm-fg-36 {
color: #00af87;
}
.xterm-fg-37 {
color: #00afaf;
}
.xterm-fg-38 {
color: #00afd7;
}
.xterm-fg-39 {
color: #00afff;
}
.xterm-fg-40 {
color: #00d700;
}
.xterm-fg-41 {
color: #00d75f;
}
.xterm-fg-42 {
color: #00d787;
}
.xterm-fg-43 {
color: #00d7af;
}
.xterm-fg-44 {
color: #00d7d7;
}
.xterm-fg-45 {
color: #00d7ff;
}
.xterm-fg-46 {
color: #00ff00;
}
.xterm-fg-47 {
color: #00ff5f;
}
.xterm-fg-48 {
color: #00ff87;
}
.xterm-fg-49 {
color: #00ffaf;
}
.xterm-fg-50 {
color: #00ffd7;
}
.xterm-fg-51 {
color: #00ffff;
}
.xterm-fg-52 {
color: #5f0000;
}
.xterm-fg-53 {
color: #5f005f;
}
.xterm-fg-54 {
color: #5f0087;
}
.xterm-fg-55 {
color: #5f00af;
}
.xterm-fg-56 {
color: #5f00d7;
}
.xterm-fg-57 {
color: #5f00ff;
}
.xterm-fg-58 {
color: #5f5f00;
}
.xterm-fg-59 {
color: #5f5f5f;
}
.xterm-fg-60 {
color: #5f5f87;
}
.xterm-fg-61 {
color: #5f5faf;
}
.xterm-fg-62 {
color: #5f5fd7;
}
.xterm-fg-63 {
color: #5f5fff;
}
.xterm-fg-64 {
color: #5f8700;
}
.xterm-fg-65 {
color: #5f875f;
}
.xterm-fg-66 {
color: #5f8787;
}
.xterm-fg-67 {
color: #5f87af;
}
.xterm-fg-68 {
color: #5f87d7;
}
.xterm-fg-69 {
color: #5f87ff;
}
.xterm-fg-70 {
color: #5faf00;
}
.xterm-fg-71 {
color: #5faf5f;
}
.xterm-fg-72 {
color: #5faf87;
}
.xterm-fg-73 {
color: #5fafaf;
}
.xterm-fg-74 {
color: #5fafd7;
}
.xterm-fg-75 {
color: #5fafff;
}
.xterm-fg-76 {
color: #5fd700;
}
.xterm-fg-77 {
color: #5fd75f;
}
.xterm-fg-78 {
color: #5fd787;
}
.xterm-fg-79 {
color: #5fd7af;
}
.xterm-fg-80 {
color: #5fd7d7;
}
.xterm-fg-81 {
color: #5fd7ff;
}
.xterm-fg-82 {
color: #5fff00;
}
.xterm-fg-83 {
color: #5fff5f;
}
.xterm-fg-84 {
color: #5fff87;
}
.xterm-fg-85 {
color: #5fffaf;
}
.xterm-fg-86 {
color: #5fffd7;
}
.xterm-fg-87 {
color: #5fffff;
}
.xterm-fg-88 {
color: #870000;
}
.xterm-fg-89 {
color: #87005f;
}
.xterm-fg-90 {
color: #870087;
}
.xterm-fg-91 {
color: #8700af;
}
.xterm-fg-92 {
color: #8700d7;
}
.xterm-fg-93 {
color: #8700ff;
}
.xterm-fg-94 {
color: #875f00;
}
.xterm-fg-95 {
color: #875f5f;
}
.xterm-fg-96 {
color: #875f87;
}
.xterm-fg-97 {
color: #875faf;
}
.xterm-fg-98 {
color: #875fd7;
}
.xterm-fg-99 {
color: #875fff;
}
.xterm-fg-100 {
color: #878700;
}
.xterm-fg-101 {
color: #87875f;
}
.xterm-fg-102 {
color: #878787;
}
.xterm-fg-103 {
color: #8787af;
}
.xterm-fg-104 {
color: #8787d7;
}
.xterm-fg-105 {
color: #8787ff;
}
.xterm-fg-106 {
color: #87af00;
}
.xterm-fg-107 {
color: #87af5f;
}
.xterm-fg-108 {
color: #87af87;
}
.xterm-fg-109 {
color: #87afaf;
}
.xterm-fg-110 {
color: #87afd7;
}
.xterm-fg-111 {
color: #87afff;
}
.xterm-fg-112 {
color: #87d700;
}
.xterm-fg-113 {
color: #87d75f;
}
.xterm-fg-114 {
color: #87d787;
}
.xterm-fg-115 {
color: #87d7af;
}
.xterm-fg-116 {
color: #87d7d7;
}
.xterm-fg-117 {
color: #87d7ff;
}
.xterm-fg-118 {
color: #87ff00;
}
.xterm-fg-119 {
color: #87ff5f;
}
.xterm-fg-120 {
color: #87ff87;
}
.xterm-fg-121 {
color: #87ffaf;
}
.xterm-fg-122 {
color: #87ffd7;
}
.xterm-fg-123 {
color: #87ffff;
}
.xterm-fg-124 {
color: #af0000;
}
.xterm-fg-125 {
color: #af005f;
}
.xterm-fg-126 {
color: #af0087;
}
.xterm-fg-127 {
color: #af00af;
}
.xterm-fg-128 {
color: #af00d7;
}
.xterm-fg-129 {
color: #af00ff;
}
.xterm-fg-130 {
color: #af5f00;
}
.xterm-fg-131 {
color: #af5f5f;
}
.xterm-fg-132 {
color: #af5f87;
}
.xterm-fg-133 {
color: #af5faf;
}
.xterm-fg-134 {
color: #af5fd7;
}
.xterm-fg-135 {
color: #af5fff;
}
.xterm-fg-136 {
color: #af8700;
}
.xterm-fg-137 {
color: #af875f;
}
.xterm-fg-138 {
color: #af8787;
}
.xterm-fg-139 {
color: #af87af;
}
.xterm-fg-140 {
color: #af87d7;
}
.xterm-fg-141 {
color: #af87ff;
}
.xterm-fg-142 {
color: #afaf00;
}
.xterm-fg-143 {
color: #afaf5f;
}
.xterm-fg-144 {
color: #afaf87;
}
.xterm-fg-145 {
color: #afafaf;
}
.xterm-fg-146 {
color: #afafd7;
}
.xterm-fg-147 {
color: #afafff;
}
.xterm-fg-148 {
color: #afd700;
}
.xterm-fg-149 {
color: #afd75f;
}
.xterm-fg-150 {
color: #afd787;
}
.xterm-fg-151 {
color: #afd7af;
}
.xterm-fg-152 {
color: #afd7d7;
}
.xterm-fg-153 {
color: #afd7ff;
}
.xterm-fg-154 {
color: #afff00;
}
.xterm-fg-155 {
color: #afff5f;
}
.xterm-fg-156 {
color: #afff87;
}
.xterm-fg-157 {
color: #afffaf;
}
.xterm-fg-158 {
color: #afffd7;
}
.xterm-fg-159 {
color: #afffff;
}
.xterm-fg-160 {
color: #d70000;
}
.xterm-fg-161 {
color: #d7005f;
}
.xterm-fg-162 {
color: #d70087;
}
.xterm-fg-163 {
color: #d700af;
}
.xterm-fg-164 {
color: #d700d7;
}
.xterm-fg-165 {
color: #d700ff;
}
.xterm-fg-166 {
color: #d75f00;
}
.xterm-fg-167 {
color: #d75f5f;
}
.xterm-fg-168 {
color: #d75f87;
}
.xterm-fg-169 {
color: #d75faf;
}
.xterm-fg-170 {
color: #d75fd7;
}
.xterm-fg-171 {
color: #d75fff;
}
.xterm-fg-172 {
color: #d78700;
}
.xterm-fg-173 {
color: #d7875f;
}
.xterm-fg-174 {
color: #d78787;
}
.xterm-fg-175 {
color: #d787af;
}
.xterm-fg-176 {
color: #d787d7;
}
.xterm-fg-177 {
color: #d787ff;
}
.xterm-fg-178 {
color: #d7af00;
}
.xterm-fg-179 {
color: #d7af5f;
}
.xterm-fg-180 {
color: #d7af87;
}
.xterm-fg-181 {
color: #d7afaf;
}
.xterm-fg-182 {
color: #d7afd7;
}
.xterm-fg-183 {
color: #d7afff;
}
.xterm-fg-184 {
color: #d7d700;
}
.xterm-fg-185 {
color: #d7d75f;
}
.xterm-fg-186 {
color: #d7d787;
}
.xterm-fg-187 {
color: #d7d7af;
}
.xterm-fg-188 {
color: #d7d7d7;
}
.xterm-fg-189 {
color: #d7d7ff;
}
.xterm-fg-190 {
color: #d7ff00;
}
.xterm-fg-191 {
color: #d7ff5f;
}
.xterm-fg-192 {
color: #d7ff87;
}
.xterm-fg-193 {
color: #d7ffaf;
}
.xterm-fg-194 {
color: #d7ffd7;
}
.xterm-fg-195 {
color: #d7ffff;
}
.xterm-fg-196 {
color: #ff0000;
}
.xterm-fg-197 {
color: #ff005f;
}
.xterm-fg-198 {
color: #ff0087;
}
.xterm-fg-199 {
color: #ff00af;
}
.xterm-fg-200 {
color: #ff00d7;
}
.xterm-fg-201 {
color: #ff00ff;
}
.xterm-fg-202 {
color: #ff5f00;
}
.xterm-fg-203 {
color: #ff5f5f;
}
.xterm-fg-204 {
color: #ff5f87;
}
.xterm-fg-205 {
color: #ff5faf;
}
.xterm-fg-206 {
color: #ff5fd7;
}
.xterm-fg-207 {
color: #ff5fff;
}
.xterm-fg-208 {
color: #ff8700;
}
.xterm-fg-209 {
color: #ff875f;
}
.xterm-fg-210 {
color: #ff8787;
}
.xterm-fg-211 {
color: #ff87af;
}
.xterm-fg-212 {
color: #ff87d7;
}
.xterm-fg-213 {
color: #ff87ff;
}
.xterm-fg-214 {
color: #ffaf00;
}
.xterm-fg-215 {
color: #ffaf5f;
}
.xterm-fg-216 {
color: #ffaf87;
}
.xterm-fg-217 {
color: #ffafaf;
}
.xterm-fg-218 {
color: #ffafd7;
}
.xterm-fg-219 {
color: #ffafff;
}
.xterm-fg-220 {
color: #ffd700;
}
.xterm-fg-221 {
color: #ffd75f;
}
.xterm-fg-222 {
color: #ffd787;
}
.xterm-fg-223 {
color: #ffd7af;
}
.xterm-fg-224 {
color: #ffd7d7;
}
.xterm-fg-225 {
color: #ffd7ff;
}
.xterm-fg-226 {
color: #ffff00;
}
.xterm-fg-227 {
color: #ffff5f;
}
.xterm-fg-228 {
color: #ffff87;
}
.xterm-fg-229 {
color: #ffffaf;
}
.xterm-fg-230 {
color: #ffffd7;
}
.xterm-fg-231 {
color: #ffffff;
}
.xterm-fg-232 {
color: #080808;
}
.xterm-fg-233 {
color: #121212;
}
.xterm-fg-234 {
color: #1c1c1c;
}
.xterm-fg-235 {
color: #262626;
}
.xterm-fg-236 {
color: #303030;
}
.xterm-fg-237 {
color: #3a3a3a;
}
.xterm-fg-238 {
color: #444444;
}
.xterm-fg-239 {
color: #4e4e4e;
}
.xterm-fg-240 {
color: #585858;
}
.xterm-fg-241 {
color: #626262;
}
.xterm-fg-242 {
color: #6c6c6c;
}
.xterm-fg-243 {
color: #767676;
}
.xterm-fg-244 {
color: #808080;
}
.xterm-fg-245 {
color: #8a8a8a;
}
.xterm-fg-246 {
color: #949494;
}
.xterm-fg-247 {
color: #9e9e9e;
}
.xterm-fg-248 {
color: #a8a8a8;
}
.xterm-fg-249 {
color: #b2b2b2;
}
.xterm-fg-250 {
color: #bcbcbc;
}
.xterm-fg-251 {
color: #c6c6c6;
}
.xterm-fg-252 {
color: #d0d0d0;
}
.xterm-fg-253 {
color: #dadada;
}
.xterm-fg-254 {
color: #e4e4e4;
}
.xterm-fg-255 {
color: #eeeeee;
} | 0.264453 | 0.101857 |
@media only screen and (min-width: 1601px){
.ce-cards-pack .ce-card{
width: 13.5%;
}
.ce-cards-pack .ce-card{
margin: 0 1.55%;
}
.ce-cards-pack .ce-card .image{
width: 208px;
height: 208px;
}
.ce-cards-pack .ce-card .content{
top: 105px;
padding-top: 115px;
}
}
@media (min-width: 1201px) and (max-width: 1600px) {
.ce-cards-pack .ce-card{
width: 17%;
}
.ce-cards-pack .ce-card{
margin: 0 1.45%;
}
.ce-cards-pack .ce-card .image{
width: 190px;
height: 190px;
}
.ce-cards-pack .ce-card .content{
top: 96px;
padding-top: 100px;
}
}
@media (min-width: 993px) and (max-width: 1200px) {
.ce-cards-pack .ce-card{
width: 20%;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
}
.ce-cards-pack .ce-card .image{
width: 190px;
height: 190px;
}
.ce-cards-pack .ce-card .content{
top: 96px;
padding-top: 100px;
}
}
@media (min-width: 769px) and (max-width: 992px) {
.ce-cards-pack .ce-card{
width: 28.3%;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
}
.ce-cards-pack .ce-card .image{
width: 210px;
height: 210px;
}
.ce-cards-pack .ce-card .content{
top: 106px;
padding-top: 115px;
}
}
@media (max-width: 768px) {
.ce-cards-pack .ce-card{
width: 140px;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
height: 20em!important;
}
.ce-cards-pack .ce-card .image{
width: 138px;
}
.ce-cards-pack .ce-card .content{
top: 65px;
padding-top: 70px;
}
.ce-card .content .information,
.ce-card .content .status .label{
font-size: .5rem!important;
}
}
.ce-cards-pack{
width: 100%!important;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ce-cards-pack .ce-card{
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-bottom: 2rem;
text-align: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
height: 27em;
/*to remove*/
color: white;
/*background-color: rgb(95, 93, 163);*/
}
.ce-cards-pack .ce-card .image{
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
display: block;
z-index: 100;
}
.ce-cards-pack .ce-card .image>img{
border-radius: 50%;
width: 100%;
height: 100%;
/*border: 3px solid rgba(133, 133, 133, 0.8);*/
box-shadow: 0 0 0 5px rgb(43, 43, 43);
}
.ce-cards-pack .ce-card .image>img:after{
position: absolute;
}
.ce-cards-pack .ce-card .content{
position: absolute;
left: 0;
width: 100%;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 1em;
z-index: 10;
/*to remove*/
background-color: rgba(107, 107, 107, 0.8);
}
.ce-card .content .username{
font-size: 1rem;
}
.ce-card .content .information{
font-size: .75rem;
text-align: left;
text-overflow: ellipsis;
text-wrap: none;
padding-bottom: 1em;
border-bottom: 1px solid rgb(100,100,100);
}
.ce-card .content .status {
padding-top: 1em;
text-align: left;
opacity: .7;
}
.ce-card .content .status .label{
margin-right: .7em;
padding-right: .7em!important;
padding-left: 1em!important;
} | public/stylesheets/ce_users.css | @media only screen and (min-width: 1601px){
.ce-cards-pack .ce-card{
width: 13.5%;
}
.ce-cards-pack .ce-card{
margin: 0 1.55%;
}
.ce-cards-pack .ce-card .image{
width: 208px;
height: 208px;
}
.ce-cards-pack .ce-card .content{
top: 105px;
padding-top: 115px;
}
}
@media (min-width: 1201px) and (max-width: 1600px) {
.ce-cards-pack .ce-card{
width: 17%;
}
.ce-cards-pack .ce-card{
margin: 0 1.45%;
}
.ce-cards-pack .ce-card .image{
width: 190px;
height: 190px;
}
.ce-cards-pack .ce-card .content{
top: 96px;
padding-top: 100px;
}
}
@media (min-width: 993px) and (max-width: 1200px) {
.ce-cards-pack .ce-card{
width: 20%;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
}
.ce-cards-pack .ce-card .image{
width: 190px;
height: 190px;
}
.ce-cards-pack .ce-card .content{
top: 96px;
padding-top: 100px;
}
}
@media (min-width: 769px) and (max-width: 992px) {
.ce-cards-pack .ce-card{
width: 28.3%;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
}
.ce-cards-pack .ce-card .image{
width: 210px;
height: 210px;
}
.ce-cards-pack .ce-card .content{
top: 106px;
padding-top: 115px;
}
}
@media (max-width: 768px) {
.ce-cards-pack .ce-card{
width: 140px;
}
.ce-cards-pack .ce-card{
margin: 0 2.5%;
height: 20em!important;
}
.ce-cards-pack .ce-card .image{
width: 138px;
}
.ce-cards-pack .ce-card .content{
top: 65px;
padding-top: 70px;
}
.ce-card .content .information,
.ce-card .content .status .label{
font-size: .5rem!important;
}
}
.ce-cards-pack{
width: 100%!important;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.ce-cards-pack .ce-card{
position: relative;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-bottom: 2rem;
text-align: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
height: 27em;
/*to remove*/
color: white;
/*background-color: rgb(95, 93, 163);*/
}
.ce-cards-pack .ce-card .image{
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
display: block;
z-index: 100;
}
.ce-cards-pack .ce-card .image>img{
border-radius: 50%;
width: 100%;
height: 100%;
/*border: 3px solid rgba(133, 133, 133, 0.8);*/
box-shadow: 0 0 0 5px rgb(43, 43, 43);
}
.ce-cards-pack .ce-card .image>img:after{
position: absolute;
}
.ce-cards-pack .ce-card .content{
position: absolute;
left: 0;
width: 100%;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 1em;
z-index: 10;
/*to remove*/
background-color: rgba(107, 107, 107, 0.8);
}
.ce-card .content .username{
font-size: 1rem;
}
.ce-card .content .information{
font-size: .75rem;
text-align: left;
text-overflow: ellipsis;
text-wrap: none;
padding-bottom: 1em;
border-bottom: 1px solid rgb(100,100,100);
}
.ce-card .content .status {
padding-top: 1em;
text-align: left;
opacity: .7;
}
.ce-card .content .status .label{
margin-right: .7em;
padding-right: .7em!important;
padding-left: 1em!important;
} | 0.293506 | 0.046681 |
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .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, .col-lg-auto, .col-md, .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, .col-md-auto, .col-sm, .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, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
#mainNav .navbar-nav .nav-item .nav-link:hover {
color: #db8577;
}
.btn.btn-mine.btn-xl.text-uppercase.js-scroll-trigger {
color: #ffffff;
background-color: #e98074;
border-color: #e98074;
}
.btn.btn-mine.btn-xl.text-uppercase.js-scroll-trigger:hover {
color: #ffffff;
background-color: #d86357;
border-color: #d86357;
}
.rounded-circle.img-fluid {
color: #000000;
margin: 0px;
/*box-shaddow: 10px 10px 5px grey;*/
}
body {
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #000000;
text-align: left;
background-color: #fff;
}
.text-muted {
color: #43413e!important;
}
a {
color: #d86357;
}
a:hover {
color: #d86357;
}
a:active {
color: #d86357;
text-decoration: underline;
}
a:hover {
color: #d86357;
text-decoration: underline;
}
a {
text-decoration: none;
background-color: transparent;
}
.text-muted.section-subheading {
font-size: 18px;
font-weight: 400;
font-style: italic;
margin-bottom: 1rem;
text-transform: none;
font-family: Droid Serif,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.timeline > li {
position: relative;
min-height: 50px;
margin-bottom: 75px;
}
.mylink {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
.btn.btn-primary {
color: #ffffff;
background-color: #e98074;
border-color: #e98074;
}
.btn.btn-primary.btn-mine:hover {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
}
.btn-primary:active, .btn-primary:focus {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
box-shadow: 0 0 0 0rem rgba(254,209,55,.5)!important;
}
.btn.btn-mine {
color: #ffffff;
background-color: #000000;
border-color: #ffffff;
}
.btn.btn-primary:hover {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
}
.btn.btn-mine:hover {
color: #000000;
background-color: #000000;
border-color: #ffffff;
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color: #db8577;
}
::selection {
background: rgb(155,201,255);
}
.myHeading {
color: #8e8d8a;
font: initial;
font-size: 14pt;
font-style: normal;
font-weight: bold;
font-family: "Open Sans";
margin-top: 20px;
line-height: 1.5em;
}
.list-group-item {
position: relative;
display: block;
padding: .75rem 1.25rem;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
}
.timeline:before {
background-color: #8e8d8a;
}
.timeline > li .timeline-image {
border-color: #8e8d8a;
box-shadow: 10px 10px 15px #a3a29e;
}
#mainNav {
/*background-color: #8e8d8a!important;*/
}
.rotato {
border-radius: 50%;
-webkit-transition: -webkit-transform .8s ease-in-out;
transition: transform .8s ease-in-out;
}
.rotato:hover {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
p:hover {
text-decoration: none;
}
p:active {
text-decoration: none;
}
.email {
color: #000000;
text-decoration: none;
}
.email:hover {
color: #8e8d8a;
text-decoration: none;
}
.btn.btn-primary.hide {
background-color: transparent;
border-color: transparent;
}
.btn.btn-primary.hide {
background-color: transparent!important;
border-color: transparent!important;
}
.timeline > li .timeline-panel-left {
float: left;
width: 41%;
padding: 30px 20px 20px 0px;
text-align: right;
}
.timeline > li .timeline-panel-right {
float: right;
width: 41%;
padding: 0px 20px 20px 30px;
text-align: left;
}
.timeline {
position: relative;
padding: 0;
list-style: none;
}
.myText {
font-size: 16px;
line-height: 24px;
font-family: "Open Sans";
font-weight: 600;
padding-top: 15px;
}
.ExperienceHeading {
font-size: 32px;
}
.social-link {
padding-left: 5px;
padding-right: 5px;
}
.download-button {
padding-bottom: 10px;
}
.collapse-left {
}
.project-summary {
}
.col-md-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
#portfolio .portfolio-item .portfolio-link {
width: 290px;
height: 290px;
}
#portfolio .portfolio-image {
width: 290px;
height: 290px;
}
.portfolio-heading {
}
#portfolio .portfolio-item .portfolio-caption {
padding-top: 10px;
}
.portfolio-modal .modal-content p {
margin-bottom: 0px;
text-align: left;
line-height: 1.5em;
}
.portfolio-modal .modal-content img {
margin-bottom: 0px;
}
.project-summary {
margin-bottom: 40px;
}
.hang {
margin-left: 6em;
text-indent: -2em;
}
bullets {
margin-left: 2rem;
text-indent: -1rem;
}
.bullet {
margin-left: 2em;
text-indent: -1em;
}
.subheading {
margin-top: 16px;
}
.paragraph {
margin-top: 8px;
margin-bottom: 8px;
}
.subheading2 {
margin-top: 16px;
font-size: 32px;
} | assets/css/TheShahProject.css | .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-auto, .col-lg, .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, .col-lg-auto, .col-md, .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, .col-md-auto, .col-sm, .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, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-auto {
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
#mainNav .navbar-nav .nav-item .nav-link:hover {
color: #db8577;
}
.btn.btn-mine.btn-xl.text-uppercase.js-scroll-trigger {
color: #ffffff;
background-color: #e98074;
border-color: #e98074;
}
.btn.btn-mine.btn-xl.text-uppercase.js-scroll-trigger:hover {
color: #ffffff;
background-color: #d86357;
border-color: #d86357;
}
.rounded-circle.img-fluid {
color: #000000;
margin: 0px;
/*box-shaddow: 10px 10px 5px grey;*/
}
body {
margin: 0;
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #000000;
text-align: left;
background-color: #fff;
}
.text-muted {
color: #43413e!important;
}
a {
color: #d86357;
}
a:hover {
color: #d86357;
}
a:active {
color: #d86357;
text-decoration: underline;
}
a:hover {
color: #d86357;
text-decoration: underline;
}
a {
text-decoration: none;
background-color: transparent;
}
.text-muted.section-subheading {
font-size: 18px;
font-weight: 400;
font-style: italic;
margin-bottom: 1rem;
text-transform: none;
font-family: Droid Serif,Helvetica Neue,Helvetica,Arial,sans-serif;
}
.timeline > li {
position: relative;
min-height: 50px;
margin-bottom: 75px;
}
.mylink {
position: relative;
display: block;
max-width: 400px;
margin: 0 auto;
cursor: pointer;
}
.btn.btn-primary {
color: #ffffff;
background-color: #e98074;
border-color: #e98074;
}
.btn.btn-primary.btn-mine:hover {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
}
.btn-primary:active, .btn-primary:focus {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
box-shadow: 0 0 0 0rem rgba(254,209,55,.5)!important;
}
.btn.btn-mine {
color: #ffffff;
background-color: #000000;
border-color: #ffffff;
}
.btn.btn-primary:hover {
color: #ffffff!important;
background-color: #d86357!important;
border-color: #d86357!important;
}
.btn.btn-mine:hover {
color: #000000;
background-color: #000000;
border-color: #ffffff;
}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover {
color: #db8577;
}
::selection {
background: rgb(155,201,255);
}
.myHeading {
color: #8e8d8a;
font: initial;
font-size: 14pt;
font-style: normal;
font-weight: bold;
font-family: "Open Sans";
margin-top: 20px;
line-height: 1.5em;
}
.list-group-item {
position: relative;
display: block;
padding: .75rem 1.25rem;
margin-bottom: -1px;
background-color: #fff;
border: 1px solid rgba(0,0,0,.125);
}
.timeline:before {
background-color: #8e8d8a;
}
.timeline > li .timeline-image {
border-color: #8e8d8a;
box-shadow: 10px 10px 15px #a3a29e;
}
#mainNav {
/*background-color: #8e8d8a!important;*/
}
.rotato {
border-radius: 50%;
-webkit-transition: -webkit-transform .8s ease-in-out;
transition: transform .8s ease-in-out;
}
.rotato:hover {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
p:hover {
text-decoration: none;
}
p:active {
text-decoration: none;
}
.email {
color: #000000;
text-decoration: none;
}
.email:hover {
color: #8e8d8a;
text-decoration: none;
}
.btn.btn-primary.hide {
background-color: transparent;
border-color: transparent;
}
.btn.btn-primary.hide {
background-color: transparent!important;
border-color: transparent!important;
}
.timeline > li .timeline-panel-left {
float: left;
width: 41%;
padding: 30px 20px 20px 0px;
text-align: right;
}
.timeline > li .timeline-panel-right {
float: right;
width: 41%;
padding: 0px 20px 20px 30px;
text-align: left;
}
.timeline {
position: relative;
padding: 0;
list-style: none;
}
.myText {
font-size: 16px;
line-height: 24px;
font-family: "Open Sans";
font-weight: 600;
padding-top: 15px;
}
.ExperienceHeading {
font-size: 32px;
}
.social-link {
padding-left: 5px;
padding-right: 5px;
}
.download-button {
padding-bottom: 10px;
}
.collapse-left {
}
.project-summary {
}
.col-md-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
#portfolio .portfolio-item .portfolio-link {
width: 290px;
height: 290px;
}
#portfolio .portfolio-image {
width: 290px;
height: 290px;
}
.portfolio-heading {
}
#portfolio .portfolio-item .portfolio-caption {
padding-top: 10px;
}
.portfolio-modal .modal-content p {
margin-bottom: 0px;
text-align: left;
line-height: 1.5em;
}
.portfolio-modal .modal-content img {
margin-bottom: 0px;
}
.project-summary {
margin-bottom: 40px;
}
.hang {
margin-left: 6em;
text-indent: -2em;
}
bullets {
margin-left: 2rem;
text-indent: -1rem;
}
.bullet {
margin-left: 2em;
text-indent: -1em;
}
.subheading {
margin-top: 16px;
}
.paragraph {
margin-top: 8px;
margin-bottom: 8px;
}
.subheading2 {
margin-top: 16px;
font-size: 32px;
} | 0.338405 | 0.056288 |
a,
a:focus,
a:hover {
color: #fff;
}
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
background-color: #fff;
border: .05rem solid #fff;
}
/*
* Base structure
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
display: -ms-flexbox;
display: flex;
color: #fff;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
.cover-container {
max-width: 42em;
}
/*
* Header
*/
.masthead {
margin-bottom: 2rem;
}
.masthead-brand {
margin-bottom: 0;
}
.nav-masthead .nav-link {
padding: .25rem 0;
font-weight: 700;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-text {
padding: .25rem 0;
font-weight: 300;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}
.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}
.nav-masthead .nav-text {
margin-left: 1rem;
}
.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}
@media (min-width: 48em) {
.masthead-brand {
float: left;
}
.nav-masthead {
float: right;
}
}
/*
* Cover
*/
.cover {
padding: 0 1.5rem;
}
.cover .btn-lg {
padding: .75rem 1.25rem;
font-weight: 700;
}
/*
* Footer
*/
.mastfoot {
color: rgba(255, 255, 255, .5);
}
.img-wrap {
width: 200px;
height: 150px;
position: relative;
display: inline-block;
overflow: hidden;
margin: 0;
}
div > img {
display: block;
position: absolute;
top: 50%;
left: 50%;
min-height: 100%;
min-width: 100%;
transform: translate(-50%, -50%);
}
.modal-content {
background-color: rgb(59, 59, 59);
}
.rule-item {
background-color: #494949;
}
.new-rule-item {
background-color: #3a8146;
}
.rule-item-disabled {
background-color: #4d3838;
}
.modal-body {
text-align: left;
}
button.close {
color: white;
}
.scroll {
max-height: 90%;
overflow-y: auto;
} | queue_rules/frontend/static/frontend/stylesheet.css | a,
a:focus,
a:hover {
color: #fff;
}
/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
color: #333;
text-shadow: none; /* Prevent inheritance from `body` */
background-color: #fff;
border: .05rem solid #fff;
}
/*
* Base structure
*/
html,
body {
height: 100%;
background-color: #333;
}
body {
display: -ms-flexbox;
display: flex;
color: #fff;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}
.cover-container {
max-width: 42em;
}
/*
* Header
*/
.masthead {
margin-bottom: 2rem;
}
.masthead-brand {
margin-bottom: 0;
}
.nav-masthead .nav-link {
padding: .25rem 0;
font-weight: 700;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-text {
padding: .25rem 0;
font-weight: 300;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}
.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}
.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}
.nav-masthead .nav-text {
margin-left: 1rem;
}
.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}
@media (min-width: 48em) {
.masthead-brand {
float: left;
}
.nav-masthead {
float: right;
}
}
/*
* Cover
*/
.cover {
padding: 0 1.5rem;
}
.cover .btn-lg {
padding: .75rem 1.25rem;
font-weight: 700;
}
/*
* Footer
*/
.mastfoot {
color: rgba(255, 255, 255, .5);
}
.img-wrap {
width: 200px;
height: 150px;
position: relative;
display: inline-block;
overflow: hidden;
margin: 0;
}
div > img {
display: block;
position: absolute;
top: 50%;
left: 50%;
min-height: 100%;
min-width: 100%;
transform: translate(-50%, -50%);
}
.modal-content {
background-color: rgb(59, 59, 59);
}
.rule-item {
background-color: #494949;
}
.new-rule-item {
background-color: #3a8146;
}
.rule-item-disabled {
background-color: #4d3838;
}
.modal-body {
text-align: left;
}
button.close {
color: white;
}
.scroll {
max-height: 90%;
overflow-y: auto;
} | 0.551574 | 0.043447 |
********** ==> RESPONSIVE STYLES <== **********
1. LARGER MONITORS
2. MEDIUM SCREENS/DESKTOPS
3. TABLETS / IPADS
4. SMARTPHONES
********** ==> END RESPONSIVE STYLES <== **********
*/
/* Larger devices (larger desktops, 1400px and up) */
@media screen and (max-width: 1400px) {
.line {
height: 9.24rem;
}
.token-sale__graph-info:nth-of-type(3) {
left: -2%;
}
.token-sale__graph-info:nth-of-type(6) {
right: -2%;
}
.token-sale__graph-info:nth-of-type(4) {
left: 10%;
}
.token-sale__graph-info:nth-of-type(5) {
right: 10%;
}
#distributionChart,
#proceedsChart {
height: 400px;
}
.fixed-top-navbar .line-xl {
margin-bottom: 6.5%;
}
.fixed-top-navbar .line-mp {
margin-bottom: -4%;
}
}
/* Large devices (large desktops, 1200px and up) */
@media screen and (max-width: 1200px) {
.line-play {
right: -9rem;
bottom: 0;
}
.line {
height: 7rem;
}
.navbar.fixed-right {
padding: 1.875rem 1rem 1.5rem 0;
}
.fixed-brand {
top: 5%;
left: 5%;
}
.settings-box {
bottom: 10%;
}
#lottie {
margin-top: 3.75rem;
}
.crypto-section__content {
padding: 3.125rem 1.875rem 3.75rem;
}
.about__description {
padding-left: 1.875rem;
}
.token-section.charts-view .title br {
display: none;
}
.token-section.charts-view .title {
text-align: center;
}
.token-sale__graph-info:nth-of-type(3) {
left: -5%;
}
.token-sale__graph-info:nth-of-type(6) {
right: -5%;
}
.token-sale__graph-info:nth-of-type(4) {
margin-top: 1rem;
left: 8%;
}
.token-sale__graph-info:nth-of-type(5) {
margin-top: 1rem;
right: 8%;
}
.partners-section__blk a {
margin-bottom: 1.5rem;
}
.navbar-toggler {
cursor: pointer;
width: 35px;
height: 30px;
float: right;
padding: 0;
outline: none !important;
position: absolute;
right: 1.875rem;
top: 1.875rem;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1) {
-webkit-animation: outT 0.8s backwards;
animation: outT 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
margin: 6px 0;
-webkit-animation: outM 0.8s backwards;
animation: outM 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
-webkit-animation: outBtm 0.8s backwards;
animation: outBtm 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler-icon {
background-color: #fff;
border-radius: 2px;
content: "";
display: block;
width: 100%;
height: 2px;
}
.navbar-toggler-icon:nth-child(1) {
-webkit-animation: inT 0.8s forwards;
animation: inT 0.8s forwards;
}
.navbar-toggler-icon:nth-child(2) {
-webkit-animation: inM 0.8s forwards;
animation: inM 0.8s forwards;
margin: 7px 0;
}
.navbar-toggler-icon:nth-child(3) {
-webkit-animation: inBtm 0.8s forwards;
animation: inBtm 0.8s forwards;
}
.navbar.fixed-top {
background: rgb(159, 54, 171);
background: -moz-linear-gradient(
45deg,
rgba(159, 54, 171, 1) 0%,
rgba(96, 42, 119, 1) 100%
);
background: -webkit-linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
background: linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f36ab', endColorstr='#602a77',GradientType=1 );
}
.navbar.fixed-top .navbar-collapse {
z-index: 5;
padding: 1rem;
}
.navbar.fixed-top .navbar-toggler {
position: static;
}
.navbar.fixed-top .navbar-nav a {
padding: 0.625rem 0.925rem;
}
}
/* Medium devices (tablets, 992px and up) */
@media screen and (max-width: 991px) {
#cd-content {
padding: 0.9375rem 0;
}
.fp-tableCell {
padding: 0.9375rem 1.875rem;
}
.line {
height: 2.5rem;
background-position: bottom;
}
.navbar.fixed-right {
max-width: 100%;
width: 30%;
padding-top: 90px;
}
.navbar.fixed-right .social-icons {
margin-top: 2.5rem;
}
#fullPage {
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
#fullPage.show-menu {
transform: translateX(-30%) !important;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.crypto-section.charts-view {
height: auto;
}
.hex-content.first {
margin-bottom: 90px;
}
.hex-content.last {
margin-top: 90px;
}
.token-sale__graph-info:nth-of-type(4) {
margin-top: 2rem;
left: 3%;
}
.token-sale__graph-info:nth-of-type(5) {
margin-top: 2rem;
right: 3%;
}
.token-sale__graph-info:nth-of-type(3) {
left: -10%;
bottom: 120px;
}
.token-sale__graph-info:nth-of-type(6) {
right: -10%;
bottom: 120px;
}
.token-sale__time {
text-align: center !important;
}
.token-sale__time .countdown {
margin-top: 1.25rem;
}
.app-section__bg {
margin-bottom: 30px;
}
.faq-section .title br,
.contacts-section .title br {
display: none;
}
.faq-section .title,
.contacts-section .title {
text-align: center;
}
.faq-section .nav-pills {
flex-direction: row;
justify-content: center;
letter-spacing: 1px;
}
.contacts-section__info {
margin-bottom: 1rem;
}
.contacts-section__form-wrapp {
margin-top: 2rem;
}
footer.contacts-section {
padding-bottom: 1.875rem;
}
.fixed-top-navbar .fp-tableCell {
padding: 3rem 3.75rem;
}
.fixed-top-navbar #fullPage.show-menu {
transform: translateX(0) !important;
}
}
/* Small devices (smartphones, 768px and up) */
@media screen and (max-width: 767px) {
.line-play,
.scrollDown,
.title br,
.faq-section .title br,
.contacts-section .title br {
display: none;
}
.settings-box.d-flex {
display: none !important;
}
.fixed-brand {
display: block !important;
}
.navbar.fixed-right {
width: 100%;
height: auto;
bottom: auto;
padding: 80px 0 15px;
text-align: center;
}
.fixed-brand.fixed-bottom {
top: 5%;
bottom: auto;
}
.navbar.fixed-right.scrolled,
.navbar-collapse {
background: rgb(159, 54, 171);
background: -moz-linear-gradient(
45deg,
rgba(159, 54, 171, 1) 0%,
rgba(96, 42, 119, 1) 100%
);
background: -webkit-linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
background: linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f36ab', endColorstr='#602a77',GradientType=1 );
z-index: 5;
}
.navbar-collapse {
padding: 15px;
}
#fullPage.show-menu {
transform: translateX(0) !important;
}
#fullPage {
padding-top: 3.75rem;
}
.crypto-section__content {
padding: 1.25rem 1.875rem 1.5rem !important;
}
.crypto-section__content .row.w-100 {
width: auto !important;
}
.token-section .crypto-section__content .row.w-100 {
width: 100% !important;
}
.platform-section .btn-group {
flex-wrap: wrap;
margin-bottom: 1.25rem;
}
.platform-section .btn-group li:first-child {
margin-right: 0;
margin-bottom: 1.25rem;
}
.platform-section .btn-group li,
.platform-section .btn-group li .btn {
width: 100%;
}
.about__description {
padding-left: 15px;
}
.hex-content {
transform: scale(0.8);
}
.hex-content.last {
margin-top: 0;
}
.hex-content.first {
margin-bottom: 2rem;
margin-top: 1rem;
}
.token-section .section-title {
margin-bottom: 1.875rem;
}
.token-sale__graph,
.token-sale__graph:before {
background-image: none;
margin-bottom: 0;
}
.token-sale__graph-info {
position: static;
text-align: left !important;
margin: 15px 0 !important;
width: 100%;
}
.token-sale__graph-ico,
.token-sale__graph-ico__shadow {
left: auto;
right: 0;
}
.text-right.token-sale__time {
margin-bottom: 1.875rem;
}
#distributionChart,
#proceedsChart {
height: 300px;
}
.app-section__content .btn {
margin-right: 0;
width: 100%;
}
.app-section__content .btn-danger {
margin-bottom: 1.25rem;
}
.faq-section .nav-pills {
letter-spacing: 0;
}
.faq-section .title {
margin-bottom: 1.875rem;
}
.card-header .btn-link {
white-space: normal;
text-align: left;
}
.card-body {
padding: 0.635rem 0 2.55rem;
}
.navbar.fixed-top.scrolled .navbar-collapse {
background: transparent;
}
.navbar.fixed-top .container-fluid {
padding: 0 1rem;
}
.fixed-top-navbar .social-icons {
display: none !important;
}
.fixed-top-navbar .fp-tableCell {
padding: 3.5rem 1rem !important;
}
.fixed-top-navbar .fp-section.fp-table {
margin-bottom: -3.5rem !important;
}
}
/* monitors with small height */
@media screen and (max-height: 768px) {
#cd-content {
padding: 0.9375rem 0;
}
.fp-tableCell {
padding: 0.9375rem 1.875rem;
}
.fixed-top-navbar .fp-tableCell {
padding: 6.5rem 3.75rem;
}
.fixed-top-navbar .fp-section.fp-table {
margin-bottom: -7.5rem;
}
.settings-box {
display: none !important;
}
#lottie {
height: 225px;
}
.token-section .crypto-section__content {
padding-top: 2.5rem;
padding-bottom: 2.75rem;
}
.token-section.charts-view .title br {
display: none;
}
#distributionChart,
#proceedsChart {
height: 350px;
}
.crypto-section__content .btcwdgt {
height: 350px !important;
}
.crypto-section__content .btcwdgt-chart .btcwdgt-body {
max-height: 350px !important;
}
} | app/static/css/responsive.css | ********** ==> RESPONSIVE STYLES <== **********
1. LARGER MONITORS
2. MEDIUM SCREENS/DESKTOPS
3. TABLETS / IPADS
4. SMARTPHONES
********** ==> END RESPONSIVE STYLES <== **********
*/
/* Larger devices (larger desktops, 1400px and up) */
@media screen and (max-width: 1400px) {
.line {
height: 9.24rem;
}
.token-sale__graph-info:nth-of-type(3) {
left: -2%;
}
.token-sale__graph-info:nth-of-type(6) {
right: -2%;
}
.token-sale__graph-info:nth-of-type(4) {
left: 10%;
}
.token-sale__graph-info:nth-of-type(5) {
right: 10%;
}
#distributionChart,
#proceedsChart {
height: 400px;
}
.fixed-top-navbar .line-xl {
margin-bottom: 6.5%;
}
.fixed-top-navbar .line-mp {
margin-bottom: -4%;
}
}
/* Large devices (large desktops, 1200px and up) */
@media screen and (max-width: 1200px) {
.line-play {
right: -9rem;
bottom: 0;
}
.line {
height: 7rem;
}
.navbar.fixed-right {
padding: 1.875rem 1rem 1.5rem 0;
}
.fixed-brand {
top: 5%;
left: 5%;
}
.settings-box {
bottom: 10%;
}
#lottie {
margin-top: 3.75rem;
}
.crypto-section__content {
padding: 3.125rem 1.875rem 3.75rem;
}
.about__description {
padding-left: 1.875rem;
}
.token-section.charts-view .title br {
display: none;
}
.token-section.charts-view .title {
text-align: center;
}
.token-sale__graph-info:nth-of-type(3) {
left: -5%;
}
.token-sale__graph-info:nth-of-type(6) {
right: -5%;
}
.token-sale__graph-info:nth-of-type(4) {
margin-top: 1rem;
left: 8%;
}
.token-sale__graph-info:nth-of-type(5) {
margin-top: 1rem;
right: 8%;
}
.partners-section__blk a {
margin-bottom: 1.5rem;
}
.navbar-toggler {
cursor: pointer;
width: 35px;
height: 30px;
float: right;
padding: 0;
outline: none !important;
position: absolute;
right: 1.875rem;
top: 1.875rem;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1) {
-webkit-animation: outT 0.8s backwards;
animation: outT 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
margin: 6px 0;
-webkit-animation: outM 0.8s backwards;
animation: outM 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
-webkit-animation: outBtm 0.8s backwards;
animation: outBtm 0.8s backwards;
-webkit-animation-direction: reverse;
animation-direction: reverse;
}
.navbar-toggler-icon {
background-color: #fff;
border-radius: 2px;
content: "";
display: block;
width: 100%;
height: 2px;
}
.navbar-toggler-icon:nth-child(1) {
-webkit-animation: inT 0.8s forwards;
animation: inT 0.8s forwards;
}
.navbar-toggler-icon:nth-child(2) {
-webkit-animation: inM 0.8s forwards;
animation: inM 0.8s forwards;
margin: 7px 0;
}
.navbar-toggler-icon:nth-child(3) {
-webkit-animation: inBtm 0.8s forwards;
animation: inBtm 0.8s forwards;
}
.navbar.fixed-top {
background: rgb(159, 54, 171);
background: -moz-linear-gradient(
45deg,
rgba(159, 54, 171, 1) 0%,
rgba(96, 42, 119, 1) 100%
);
background: -webkit-linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
background: linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f36ab', endColorstr='#602a77',GradientType=1 );
}
.navbar.fixed-top .navbar-collapse {
z-index: 5;
padding: 1rem;
}
.navbar.fixed-top .navbar-toggler {
position: static;
}
.navbar.fixed-top .navbar-nav a {
padding: 0.625rem 0.925rem;
}
}
/* Medium devices (tablets, 992px and up) */
@media screen and (max-width: 991px) {
#cd-content {
padding: 0.9375rem 0;
}
.fp-tableCell {
padding: 0.9375rem 1.875rem;
}
.line {
height: 2.5rem;
background-position: bottom;
}
.navbar.fixed-right {
max-width: 100%;
width: 30%;
padding-top: 90px;
}
.navbar.fixed-right .social-icons {
margin-top: 2.5rem;
}
#fullPage {
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s;
}
#fullPage.show-menu {
transform: translateX(-30%) !important;
transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
}
.crypto-section.charts-view {
height: auto;
}
.hex-content.first {
margin-bottom: 90px;
}
.hex-content.last {
margin-top: 90px;
}
.token-sale__graph-info:nth-of-type(4) {
margin-top: 2rem;
left: 3%;
}
.token-sale__graph-info:nth-of-type(5) {
margin-top: 2rem;
right: 3%;
}
.token-sale__graph-info:nth-of-type(3) {
left: -10%;
bottom: 120px;
}
.token-sale__graph-info:nth-of-type(6) {
right: -10%;
bottom: 120px;
}
.token-sale__time {
text-align: center !important;
}
.token-sale__time .countdown {
margin-top: 1.25rem;
}
.app-section__bg {
margin-bottom: 30px;
}
.faq-section .title br,
.contacts-section .title br {
display: none;
}
.faq-section .title,
.contacts-section .title {
text-align: center;
}
.faq-section .nav-pills {
flex-direction: row;
justify-content: center;
letter-spacing: 1px;
}
.contacts-section__info {
margin-bottom: 1rem;
}
.contacts-section__form-wrapp {
margin-top: 2rem;
}
footer.contacts-section {
padding-bottom: 1.875rem;
}
.fixed-top-navbar .fp-tableCell {
padding: 3rem 3.75rem;
}
.fixed-top-navbar #fullPage.show-menu {
transform: translateX(0) !important;
}
}
/* Small devices (smartphones, 768px and up) */
@media screen and (max-width: 767px) {
.line-play,
.scrollDown,
.title br,
.faq-section .title br,
.contacts-section .title br {
display: none;
}
.settings-box.d-flex {
display: none !important;
}
.fixed-brand {
display: block !important;
}
.navbar.fixed-right {
width: 100%;
height: auto;
bottom: auto;
padding: 80px 0 15px;
text-align: center;
}
.fixed-brand.fixed-bottom {
top: 5%;
bottom: auto;
}
.navbar.fixed-right.scrolled,
.navbar-collapse {
background: rgb(159, 54, 171);
background: -moz-linear-gradient(
45deg,
rgba(159, 54, 171, 1) 0%,
rgba(96, 42, 119, 1) 100%
);
background: -webkit-linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
background: linear-gradient(
45deg,
rgb(245 193 22) 0%,
rgb(233 139 27) 100%
);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f36ab', endColorstr='#602a77',GradientType=1 );
z-index: 5;
}
.navbar-collapse {
padding: 15px;
}
#fullPage.show-menu {
transform: translateX(0) !important;
}
#fullPage {
padding-top: 3.75rem;
}
.crypto-section__content {
padding: 1.25rem 1.875rem 1.5rem !important;
}
.crypto-section__content .row.w-100 {
width: auto !important;
}
.token-section .crypto-section__content .row.w-100 {
width: 100% !important;
}
.platform-section .btn-group {
flex-wrap: wrap;
margin-bottom: 1.25rem;
}
.platform-section .btn-group li:first-child {
margin-right: 0;
margin-bottom: 1.25rem;
}
.platform-section .btn-group li,
.platform-section .btn-group li .btn {
width: 100%;
}
.about__description {
padding-left: 15px;
}
.hex-content {
transform: scale(0.8);
}
.hex-content.last {
margin-top: 0;
}
.hex-content.first {
margin-bottom: 2rem;
margin-top: 1rem;
}
.token-section .section-title {
margin-bottom: 1.875rem;
}
.token-sale__graph,
.token-sale__graph:before {
background-image: none;
margin-bottom: 0;
}
.token-sale__graph-info {
position: static;
text-align: left !important;
margin: 15px 0 !important;
width: 100%;
}
.token-sale__graph-ico,
.token-sale__graph-ico__shadow {
left: auto;
right: 0;
}
.text-right.token-sale__time {
margin-bottom: 1.875rem;
}
#distributionChart,
#proceedsChart {
height: 300px;
}
.app-section__content .btn {
margin-right: 0;
width: 100%;
}
.app-section__content .btn-danger {
margin-bottom: 1.25rem;
}
.faq-section .nav-pills {
letter-spacing: 0;
}
.faq-section .title {
margin-bottom: 1.875rem;
}
.card-header .btn-link {
white-space: normal;
text-align: left;
}
.card-body {
padding: 0.635rem 0 2.55rem;
}
.navbar.fixed-top.scrolled .navbar-collapse {
background: transparent;
}
.navbar.fixed-top .container-fluid {
padding: 0 1rem;
}
.fixed-top-navbar .social-icons {
display: none !important;
}
.fixed-top-navbar .fp-tableCell {
padding: 3.5rem 1rem !important;
}
.fixed-top-navbar .fp-section.fp-table {
margin-bottom: -3.5rem !important;
}
}
/* monitors with small height */
@media screen and (max-height: 768px) {
#cd-content {
padding: 0.9375rem 0;
}
.fp-tableCell {
padding: 0.9375rem 1.875rem;
}
.fixed-top-navbar .fp-tableCell {
padding: 6.5rem 3.75rem;
}
.fixed-top-navbar .fp-section.fp-table {
margin-bottom: -7.5rem;
}
.settings-box {
display: none !important;
}
#lottie {
height: 225px;
}
.token-section .crypto-section__content {
padding-top: 2.5rem;
padding-bottom: 2.75rem;
}
.token-section.charts-view .title br {
display: none;
}
#distributionChart,
#proceedsChart {
height: 350px;
}
.crypto-section__content .btcwdgt {
height: 350px !important;
}
.crypto-section__content .btcwdgt-chart .btcwdgt-body {
max-height: 350px !important;
}
} | 0.368292 | 0.111434 |
.overlay {
background: #000;
opacity: 0.1;
width: 100%;
min-height: 100%;
position: absolute;
z-index: -1;
}
header {
display: flex;
width: 100%;
}
header img {
width: 100px;
height: 100px;
margin-left: 80px;
}
.container {
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 16px;
flex: 1 1 0%;
}
.content {
margin-left: 80px;
width: 50%;
display: flex;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
padding: 32px;
background: #222222dd;
}
.container h1 {
font-size: 32px;
color: #fff;
}
.content h2 {
font-size: 32px;
margin-top: 20px;
color: #fff;
}
.content p {
display: flex;
align-items: center;
font-size: 16px;
color: #fff;
text-align: justify;
}
.content a {
color: #f8f7fd;
font-weight: bold;
}
.products {
width: 400px;
height: 400px;
display: inline-block;
position: absolute;
right: 0;
margin-right: 30px;
}
.products img {
align-self: center;
margin-top: -30px;
width: 90%;
}
.buttons a {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
width: 170px;
height: 40px;
font-size: 14px;
text-decoration: none;
border: solid 1px #c4170c;
-webkit-box-shadow: 0px 2px 0px #c4170c;
-moz-box-shadow: 0px 2px 0px #c4170c;
box-shadow: 0px 2px 0px #c4170c;
background: #f31d1d;
border-radius: 36px;
color: #fff;
cursor: pointer;
transition: all 0.1s;
margin-left: 10px;
}
.buttons a:first-child {
margin-left: 0;
}
.buttons a:active {
-webkit-box-shadow: 0px 2px 0px #c4170c;
-moz-box-shadow: 0px 2px 0px #c4170c;
box-shadow: 0px 2px 0px #c4170c;
position: relative;
top: 4px;
}
.buttons {
width: 100%;
display: flex;
flex-direction: row;
}
.material-icons {
font-size: 18px;
}
footer {
margin-right: 80px;
float: right;
}
footer img {
width: 50px;
}
.qrcode {
width: 200px;
height: 200px;
position: absolute;
bottom: 56px;
right: 56px;
}
.qrcode img {
width: 100%;
} | public/css/style.css | .overlay {
background: #000;
opacity: 0.1;
width: 100%;
min-height: 100%;
position: absolute;
z-index: -1;
}
header {
display: flex;
width: 100%;
}
header img {
width: 100px;
height: 100px;
margin-left: 80px;
}
.container {
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 16px;
flex: 1 1 0%;
}
.content {
margin-left: 80px;
width: 50%;
display: flex;
flex-direction: column;
-webkit-box-pack: center;
justify-content: center;
padding: 32px;
background: #222222dd;
}
.container h1 {
font-size: 32px;
color: #fff;
}
.content h2 {
font-size: 32px;
margin-top: 20px;
color: #fff;
}
.content p {
display: flex;
align-items: center;
font-size: 16px;
color: #fff;
text-align: justify;
}
.content a {
color: #f8f7fd;
font-weight: bold;
}
.products {
width: 400px;
height: 400px;
display: inline-block;
position: absolute;
right: 0;
margin-right: 30px;
}
.products img {
align-self: center;
margin-top: -30px;
width: 90%;
}
.buttons a {
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
width: 170px;
height: 40px;
font-size: 14px;
text-decoration: none;
border: solid 1px #c4170c;
-webkit-box-shadow: 0px 2px 0px #c4170c;
-moz-box-shadow: 0px 2px 0px #c4170c;
box-shadow: 0px 2px 0px #c4170c;
background: #f31d1d;
border-radius: 36px;
color: #fff;
cursor: pointer;
transition: all 0.1s;
margin-left: 10px;
}
.buttons a:first-child {
margin-left: 0;
}
.buttons a:active {
-webkit-box-shadow: 0px 2px 0px #c4170c;
-moz-box-shadow: 0px 2px 0px #c4170c;
box-shadow: 0px 2px 0px #c4170c;
position: relative;
top: 4px;
}
.buttons {
width: 100%;
display: flex;
flex-direction: row;
}
.material-icons {
font-size: 18px;
}
footer {
margin-right: 80px;
float: right;
}
footer img {
width: 50px;
}
.qrcode {
width: 200px;
height: 200px;
position: absolute;
bottom: 56px;
right: 56px;
}
.qrcode img {
width: 100%;
} | 0.460532 | 0.075244 |
.ns-box {
background-color: rgba(0, 0, 0, 0.93);
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 1;
color: black;
font-size: 70%;
position: relative;
display: table;
word-wrap: break-word;
max-width: 100%;
border-width: 1px;
border-radius: 5px;
border-style: solid;
border-color: #666;
}
.ns-alert {
border-style: solid;
border-color: #fff;
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 3;
color: white;
font-size: 70%;
position: fixed;
text-align: center;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
top: 40%;
width: 40%;
height: auto;
word-wrap: break-word;
border-radius: 20px;
}
.black_overlay {
position: fixed;
z-index: 2;
background-color: rgba(0, 0, 0, 0.93);
width: 100%;
height: 100%;
}
[class^="ns-effect-"].ns-growl.ns-hide,
[class*=" ns-effect-"].ns-growl.ns-hide {
animation-direction: reverse;
}
.ns-effect-flip {
transform-origin: 50% 100%;
backface-visibility: hidden;
}
.ns-effect-flip.ns-show,
.ns-effect-flip.ns-hide {
animation-name: animFlipFront;
animation-duration: 0.3s;
}
.ns-effect-flip.ns-hide {
animation-name: animFlipBack;
}
@keyframes animFlipFront {
0% {
transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
}
100% {
transform: perspective(1000px);
}
}
@keyframes animFlipBack {
0% {
transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
}
100% {
transform: perspective(1000px);
}
}
.ns-effect-bouncyflip.ns-show,
.ns-effect-bouncyflip.ns-hide {
animation-name: flipInX;
animation-duration: 0.8s;
}
@keyframes flipInX {
0% {
transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
transition-timing-function: ease-in;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
transition-timing-function: ease-out;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
transition-timing-function: ease-in;
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
transition-timing-function: ease-out;
}
100% {
transform: perspective(400px);
}
}
.ns-effect-bouncyflip.ns-hide {
animation-name: flipInXSimple;
animation-duration: 0.3s;
}
@keyframes flipInXSimple {
0% {
transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
transition-timing-function: ease-in;
}
100% {
transform: perspective(400px);
}
}
.ns-effect-exploader {
transform-origin: 0 0;
}
.ns-effect-exploader p {
padding: 0.25em 2em 0.25em 3em;
}
.ns-effect-exploader.ns-show {
animation-name: animLoad;
animation-duration: 1s;
}
@keyframes animLoad {
0% {
opacity: 1;
transform: scale3d(0, 0.3, 1);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.ns-effect-exploader.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
.ns-effect-exploader.ns-show .ns-box-inner,
.ns-effect-exploader.ns-show .ns-close {
animation-fill-mode: both;
animation-duration: 0.3s;
animation-delay: 0.6s;
}
.ns-effect-exploader.ns-show .ns-close {
animation-name: animFade;
}
.ns-effect-exploader.ns-show .ns-box-inner {
animation-name: animFadeMove;
animation-timing-function: ease-out;
}
@keyframes animFadeMove {
0% {
opacity: 0;
transform: translate3d(0, 10px, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.ns-effect-scale.ns-show,
.ns-effect-scale.ns-hide {
animation-name: animScale;
animation-duration: 0.25s;
}
@keyframes animScale {
0% {
opacity: 0;
transform: translate3d(0, 40px, 0) scale3d(0.1, 0.6, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
.ns-effect-jelly.ns-show {
animation-name: animJelly;
animation-duration: 1s;
animation-timing-function: linear;
}
.ns-effect-jelly.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes animJelly {
0% {
transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
2.083333% {
transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
4.166667% {
transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
6.25% {
transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
8.333333% {
transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
10.416667% {
transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
12.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
14.583333% {
transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
16.666667% {
transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.75% {
transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
20.833333% {
transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.916667% {
transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
25% {
transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
27.083333% {
transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.166667% {
transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
31.25% {
transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
35.416667% {
transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
37.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
39.583333% {
transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
41.666667% {
transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
43.75% {
transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
45.833333% {
transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
47.916667% {
transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50% {
transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
52.083333% {
transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
54.166667% {
transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
56.25% {
transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
58.333333% {
transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
60.416667% {
transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
62.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
64.583333% {
transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
68.75% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.833333% {
transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
72.916667% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
75% {
transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
77.083333% {
transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
79.166667% {
transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
81.25% {
transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
85.416667% {
transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
87.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
89.583333% {
transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
91.666667% {
transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
93.75% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
95.833333% {
transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
97.916667% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-left.ns-show {
animation-name: animSlideElasticLeft;
animation-duration: 1s;
animation-timing-function: linear;
}
@keyframes animSlideElasticLeft {
0% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1000, 0, 0, 1);
}
1.666667% {
transform: matrix3d(1.92933, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -739.26805, 0, 0, 1);
}
3.333333% {
transform: matrix3d(1.96989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -521.82545, 0, 0, 1);
}
5% {
transform: matrix3d(1.70901, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -349.26115, 0, 0, 1);
}
6.666667% {
transform: matrix3d(1.4235, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -218.3238, 0, 0, 1);
}
8.333333% {
transform: matrix3d(1.21065, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -123.29848, 0, 0, 1);
}
10% {
transform: matrix3d(1.08167, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -57.59273, 0, 0, 1);
}
11.666667% {
transform: matrix3d(1.0165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -14.72371, 0, 0, 1);
}
13.333333% {
transform: matrix3d(0.99057, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 11.12794, 0, 0, 1);
}
15% {
transform: matrix3d(0.98478, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 24.86339, 0, 0, 1);
}
16.666667% {
transform: matrix3d(0.98719, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30.40503, 0, 0, 1);
}
18.333333% {
transform: matrix3d(0.9916, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30.75275, 0, 0, 1);
}
20% {
transform: matrix3d(0.99541, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28.10141, 0, 0, 1);
}
21.666667% {
transform: matrix3d(0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 23.98271, 0, 0, 1);
}
23.333333% {
transform: matrix3d(0.99936, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 19.40752, 0, 0, 1);
}
25% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14.99558, 0, 0, 1);
}
26.666667% {
transform: matrix3d(1.00021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 11.08575, 0, 0, 1);
}
28.333333% {
transform: matrix3d(1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.82507, 0, 0, 1);
}
30% {
transform: matrix3d(1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 5.23737, 0, 0, 1);
}
31.666667% {
transform: matrix3d(1.0001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.27389, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.00005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1.84893, 0, 0, 1);
}
35% {
transform: matrix3d(1.00002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.86364, 0, 0, 1);
}
36.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.22079, 0, 0, 1);
}
38.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.16687, 0, 0, 1);
}
40% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.37284, 0, 0, 1);
}
41.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.45594, 0, 0, 1);
}
43.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.46116, 0, 0, 1);
}
45% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4214, 0, 0, 1);
}
46.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.35963, 0, 0, 1);
}
48.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.29103, 0, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.22487, 0, 0, 1);
}
51.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.16624, 0, 0, 1);
}
53.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.11734, 0, 0, 1);
}
55% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.07854, 0, 0, 1);
}
56.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.04909, 0, 0, 1);
}
58.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.02773, 0, 0, 1);
}
60% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01295, 0, 0, 1);
}
61.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00331, 0, 0, 1);
}
63.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.0025, 0, 0, 1);
}
65% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00559, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00684, 0, 0, 1);
}
68.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00692, 0, 0, 1);
}
70% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00632, 0, 0, 1);
}
71.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00539, 0, 0, 1);
}
73.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00436, 0, 0, 1);
}
75% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00337, 0, 0, 1);
}
76.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00249, 0, 0, 1);
}
78.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00176, 0, 0, 1);
}
80% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00118, 0, 0, 1);
}
81.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00074, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00042, 0, 0, 1);
}
85% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00019, 0, 0, 1);
}
86.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00005, 0, 0, 1);
}
88.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00004, 0, 0, 1);
}
90% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00008, 0, 0, 1);
}
91.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0001, 0, 0, 1);
}
93.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0001, 0, 0, 1);
}
95% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00009, 0, 0, 1);
}
96.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00008, 0, 0, 1);
}
98.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00007, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-left.ns-hide {
animation-name: animSlideLeft;
animation-duration: 0.25s;
}
@keyframes animSlideLeft {
0% {
transform: translate3d(-30px, 0, 0) translate3d(-100%, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-slide-right.ns-show {
animation: animSlideElasticRight 2000ms linear both;
}
@keyframes animSlideElasticRight {
0% {
transform: matrix3d(2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1000, 0, 0, 1);
}
2.15% {
transform: matrix3d(1.486, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 664.594, 0, 0, 1);
}
4.1% {
transform: matrix3d(1.147, 0, 0, 0, 0, 0.853, 0, 0, 0, 0, 1, 0, 419.708, 0, 0, 1);
}
4.3% {
transform: matrix3d(1.121, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 398.136, 0, 0, 1);
}
6.46% {
transform: matrix3d(0.948, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 206.714, 0, 0, 1);
}
8.11% {
transform: matrix3d(0.908, 0, 0, 0, 0, 1.092, 0, 0, 0, 0, 1, 0, 105.491, 0, 0, 1);
}
8.61% {
transform: matrix3d(0.907, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 81.572, 0, 0, 1);
}
12.11% {
transform: matrix3d(0.95, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, -18.434, 0, 0, 1);
}
14.16% {
transform: matrix3d(0.979, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, -38.734, 0, 0, 1);
}
16.12% {
transform: matrix3d(0.997, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -43.356, 0, 0, 1);
}
19.72% {
transform: matrix3d(1.006, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, -34.155, 0, 0, 1);
}
27.23% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -7.839, 0, 0, 1);
}
30.83% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.951, 0, 0, 1);
}
38.34% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1.037, 0, 0, 1);
}
41.99% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.812, 0, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.159, 0, 0, 1);
}
60.56% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.025, 0, 0, 1);
}
82.78% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-right.ns-hide {
animation-name: animSlideRight;
animation-duration: 0.25s;
}
@keyframes animSlideRight {
0% {
transform: translate3d(30px, 0, 0) translate3d(100%, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-slide-center.ns-show {
animation: animSlideElasticCenter 2000ms linear both;
}
@keyframes animSlideElasticCenter {
0% {
transform: matrix3d(1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, -300, 0, 1);
}
2.15% {
transform: matrix3d(1, 0, 0, 0, 0, 1.971, 0, 0, 0, 0, 1, 0, 0, -199.378, 0, 1);
}
4.1% {
transform: matrix3d(1, 0, 0, 0, 0, 1.294, 0, 0, 0, 0, 1, 0, 0, -125.912, 0, 1);
}
4.3% {
transform: matrix3d(1, 0, 0, 0, 0, 1.243, 0, 0, 0, 0, 1, 0, 0, -119.441, 0, 1);
}
6.46% {
transform: matrix3d(1, 0, 0, 0, 0, 0.895, 0, 0, 0, 0, 1, 0, 0, -62.014, 0, 1);
}
8.11% {
transform: matrix3d(1, 0, 0, 0, 0, 0.817, 0, 0, 0, 0, 1, 0, 0, -31.647, 0, 1);
}
8.61% {
transform: matrix3d(1, 0, 0, 0, 0, 0.813, 0, 0, 0, 0, 1, 0, 0, -24.472, 0, 1);
}
12.11% {
transform: matrix3d(1, 0, 0, 0, 0, 0.9, 0, 0, 0, 0, 1, 0, 0, 5.53, 0, 1);
}
14.16% {
transform: matrix3d(1, 0, 0, 0, 0, 0.959, 0, 0, 0, 0, 1, 0, 0, 11.62, 0, 1);
}
16.12% {
transform: matrix3d(1, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 13.007, 0, 1);
}
19.72% {
transform: matrix3d(1, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 10.247, 0, 1);
}
27.23% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2.352, 0, 1);
}
30.83% {
transform: matrix3d(1, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0.585, 0, 1);
}
38.34% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.311, 0, 1);
}
41.99% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.244, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.048, 0, 1);
}
60.56% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.007, 0, 1);
}
82.78% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-center.ns-hide {
animation-name: animSlideCenter;
animation-duration: 0.25s;
}
@keyframes animSlideCenter {
0% {
transform: translate3d(0, -30px, 0) translate3d(0, -100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-genie.ns-show,
.ns-effect-genie.ns-hide {
animation-name: animGenie;
animation-duration: 0.4s;
}
@keyframes animGenie {
0% {
opacity: 0;
transform: translate3d(0, calc(200% + 30px), 0) scale3d(0, 1, 1);
animation-timing-function: ease-in;
}
40% {
opacity: 0.5;
transform: translate3d(0, 0, 0) scale3d(0.02, 1.1, 1);
animation-timing-function: ease-out;
}
70% {
opacity: 0.6;
transform: translate3d(0, -40px, 0) scale3d(0.8, 1.1, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
} | modules/default/alert/notificationFx.css |
.ns-box {
background-color: rgba(0, 0, 0, 0.93);
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 1;
color: black;
font-size: 70%;
position: relative;
display: table;
word-wrap: break-word;
max-width: 100%;
border-width: 1px;
border-radius: 5px;
border-style: solid;
border-color: #666;
}
.ns-alert {
border-style: solid;
border-color: #fff;
padding: 17px;
line-height: 1.4;
margin-bottom: 10px;
z-index: 3;
color: white;
font-size: 70%;
position: fixed;
text-align: center;
right: 0;
left: 0;
margin-right: auto;
margin-left: auto;
top: 40%;
width: 40%;
height: auto;
word-wrap: break-word;
border-radius: 20px;
}
.black_overlay {
position: fixed;
z-index: 2;
background-color: rgba(0, 0, 0, 0.93);
width: 100%;
height: 100%;
}
[class^="ns-effect-"].ns-growl.ns-hide,
[class*=" ns-effect-"].ns-growl.ns-hide {
animation-direction: reverse;
}
.ns-effect-flip {
transform-origin: 50% 100%;
backface-visibility: hidden;
}
.ns-effect-flip.ns-show,
.ns-effect-flip.ns-hide {
animation-name: animFlipFront;
animation-duration: 0.3s;
}
.ns-effect-flip.ns-hide {
animation-name: animFlipBack;
}
@keyframes animFlipFront {
0% {
transform: perspective(1000px) rotate3d(1, 0, 0, -90deg);
}
100% {
transform: perspective(1000px);
}
}
@keyframes animFlipBack {
0% {
transform: perspective(1000px) rotate3d(1, 0, 0, 90deg);
}
100% {
transform: perspective(1000px);
}
}
.ns-effect-bouncyflip.ns-show,
.ns-effect-bouncyflip.ns-hide {
animation-name: flipInX;
animation-duration: 0.8s;
}
@keyframes flipInX {
0% {
transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
transition-timing-function: ease-in;
}
40% {
transform: perspective(400px) rotate3d(1, 0, 0, 20deg);
transition-timing-function: ease-out;
}
60% {
transform: perspective(400px) rotate3d(1, 0, 0, -10deg);
transition-timing-function: ease-in;
opacity: 1;
}
80% {
transform: perspective(400px) rotate3d(1, 0, 0, 5deg);
transition-timing-function: ease-out;
}
100% {
transform: perspective(400px);
}
}
.ns-effect-bouncyflip.ns-hide {
animation-name: flipInXSimple;
animation-duration: 0.3s;
}
@keyframes flipInXSimple {
0% {
transform: perspective(400px) rotate3d(1, 0, 0, -90deg);
transition-timing-function: ease-in;
}
100% {
transform: perspective(400px);
}
}
.ns-effect-exploader {
transform-origin: 0 0;
}
.ns-effect-exploader p {
padding: 0.25em 2em 0.25em 3em;
}
.ns-effect-exploader.ns-show {
animation-name: animLoad;
animation-duration: 1s;
}
@keyframes animLoad {
0% {
opacity: 1;
transform: scale3d(0, 0.3, 1);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
.ns-effect-exploader.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
.ns-effect-exploader.ns-show .ns-box-inner,
.ns-effect-exploader.ns-show .ns-close {
animation-fill-mode: both;
animation-duration: 0.3s;
animation-delay: 0.6s;
}
.ns-effect-exploader.ns-show .ns-close {
animation-name: animFade;
}
.ns-effect-exploader.ns-show .ns-box-inner {
animation-name: animFadeMove;
animation-timing-function: ease-out;
}
@keyframes animFadeMove {
0% {
opacity: 0;
transform: translate3d(0, 10px, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0);
}
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.ns-effect-scale.ns-show,
.ns-effect-scale.ns-hide {
animation-name: animScale;
animation-duration: 0.25s;
}
@keyframes animScale {
0% {
opacity: 0;
transform: translate3d(0, 40px, 0) scale3d(0.1, 0.6, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
.ns-effect-jelly.ns-show {
animation-name: animJelly;
animation-duration: 1s;
animation-timing-function: linear;
}
.ns-effect-jelly.ns-hide {
animation-name: animFade;
animation-duration: 0.3s;
}
@keyframes animFade {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes animJelly {
0% {
transform: matrix3d(0.7, 0, 0, 0, 0, 0.7, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
2.083333% {
transform: matrix3d(0.75266, 0, 0, 0, 0, 0.76342, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
4.166667% {
transform: matrix3d(0.81071, 0, 0, 0, 0, 0.84545, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
6.25% {
transform: matrix3d(0.86808, 0, 0, 0, 0, 0.9286, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
8.333333% {
transform: matrix3d(0.92038, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
10.416667% {
transform: matrix3d(0.96482, 0, 0, 0, 0, 1.05202, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
12.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.08204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
14.583333% {
transform: matrix3d(1.02563, 0, 0, 0, 0, 1.09149, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
16.666667% {
transform: matrix3d(1.04227, 0, 0, 0, 0, 1.08453, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.75% {
transform: matrix3d(1.05102, 0, 0, 0, 0, 1.06666, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
20.833333% {
transform: matrix3d(1.05334, 0, 0, 0, 0, 1.04355, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
22.916667% {
transform: matrix3d(1.05078, 0, 0, 0, 0, 1.02012, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
25% {
transform: matrix3d(1.04487, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
27.083333% {
transform: matrix3d(1.03699, 0, 0, 0, 0, 0.98534, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.166667% {
transform: matrix3d(1.02831, 0, 0, 0, 0, 0.97688, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
31.25% {
transform: matrix3d(1.01973, 0, 0, 0, 0, 0.97422, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.01191, 0, 0, 0, 0, 0.97618, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
35.416667% {
transform: matrix3d(1.00526, 0, 0, 0, 0, 0.98122, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
37.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.98773, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
39.583333% {
transform: matrix3d(0.99617, 0, 0, 0, 0, 0.99433, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
41.666667% {
transform: matrix3d(0.99368, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
43.75% {
transform: matrix3d(0.99237, 0, 0, 0, 0, 1.00413, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
45.833333% {
transform: matrix3d(0.99202, 0, 0, 0, 0, 1.00651, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
47.916667% {
transform: matrix3d(0.99241, 0, 0, 0, 0, 1.00726, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
50% {
transform: matrix3d(0.99329, 0, 0, 0, 0, 1.00671, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
52.083333% {
transform: matrix3d(0.99447, 0, 0, 0, 0, 1.00529, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
54.166667% {
transform: matrix3d(0.99577, 0, 0, 0, 0, 1.00346, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
56.25% {
transform: matrix3d(0.99705, 0, 0, 0, 0, 1.0016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
58.333333% {
transform: matrix3d(0.99822, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
60.416667% {
transform: matrix3d(0.99921, 0, 0, 0, 0, 0.99884, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
62.5% {
transform: matrix3d(1, 0, 0, 0, 0, 0.99816, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
64.583333% {
transform: matrix3d(1.00057, 0, 0, 0, 0, 0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1.00095, 0, 0, 0, 0, 0.99811, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
68.75% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99851, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
70.833333% {
transform: matrix3d(1.00119, 0, 0, 0, 0, 0.99903, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
72.916667% {
transform: matrix3d(1.00114, 0, 0, 0, 0, 0.99955, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
75% {
transform: matrix3d(1.001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
77.083333% {
transform: matrix3d(1.00083, 0, 0, 0, 0, 1.00033, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
79.166667% {
transform: matrix3d(1.00063, 0, 0, 0, 0, 1.00052, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
81.25% {
transform: matrix3d(1.00044, 0, 0, 0, 0, 1.00058, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1.00027, 0, 0, 0, 0, 1.00053, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
85.416667% {
transform: matrix3d(1.00012, 0, 0, 0, 0, 1.00042, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
87.5% {
transform: matrix3d(1, 0, 0, 0, 0, 1.00027, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
89.583333% {
transform: matrix3d(0.99991, 0, 0, 0, 0, 1.00013, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
91.666667% {
transform: matrix3d(0.99986, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
93.75% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
95.833333% {
transform: matrix3d(0.99982, 0, 0, 0, 0, 0.99985, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
97.916667% {
transform: matrix3d(0.99983, 0, 0, 0, 0, 0.99984, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-left.ns-show {
animation-name: animSlideElasticLeft;
animation-duration: 1s;
animation-timing-function: linear;
}
@keyframes animSlideElasticLeft {
0% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1000, 0, 0, 1);
}
1.666667% {
transform: matrix3d(1.92933, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -739.26805, 0, 0, 1);
}
3.333333% {
transform: matrix3d(1.96989, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -521.82545, 0, 0, 1);
}
5% {
transform: matrix3d(1.70901, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -349.26115, 0, 0, 1);
}
6.666667% {
transform: matrix3d(1.4235, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -218.3238, 0, 0, 1);
}
8.333333% {
transform: matrix3d(1.21065, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -123.29848, 0, 0, 1);
}
10% {
transform: matrix3d(1.08167, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -57.59273, 0, 0, 1);
}
11.666667% {
transform: matrix3d(1.0165, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -14.72371, 0, 0, 1);
}
13.333333% {
transform: matrix3d(0.99057, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 11.12794, 0, 0, 1);
}
15% {
transform: matrix3d(0.98478, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 24.86339, 0, 0, 1);
}
16.666667% {
transform: matrix3d(0.98719, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30.40503, 0, 0, 1);
}
18.333333% {
transform: matrix3d(0.9916, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 30.75275, 0, 0, 1);
}
20% {
transform: matrix3d(0.99541, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 28.10141, 0, 0, 1);
}
21.666667% {
transform: matrix3d(0.99795, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 23.98271, 0, 0, 1);
}
23.333333% {
transform: matrix3d(0.99936, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 19.40752, 0, 0, 1);
}
25% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 14.99558, 0, 0, 1);
}
26.666667% {
transform: matrix3d(1.00021, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 11.08575, 0, 0, 1);
}
28.333333% {
transform: matrix3d(1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 7.82507, 0, 0, 1);
}
30% {
transform: matrix3d(1.00016, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 5.23737, 0, 0, 1);
}
31.666667% {
transform: matrix3d(1.0001, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 3.27389, 0, 0, 1);
}
33.333333% {
transform: matrix3d(1.00005, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1.84893, 0, 0, 1);
}
35% {
transform: matrix3d(1.00002, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.86364, 0, 0, 1);
}
36.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.22079, 0, 0, 1);
}
38.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.16687, 0, 0, 1);
}
40% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.37284, 0, 0, 1);
}
41.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.45594, 0, 0, 1);
}
43.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.46116, 0, 0, 1);
}
45% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.4214, 0, 0, 1);
}
46.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.35963, 0, 0, 1);
}
48.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.29103, 0, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.22487, 0, 0, 1);
}
51.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.16624, 0, 0, 1);
}
53.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.11734, 0, 0, 1);
}
55% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.07854, 0, 0, 1);
}
56.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.04909, 0, 0, 1);
}
58.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.02773, 0, 0, 1);
}
60% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.01295, 0, 0, 1);
}
61.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00331, 0, 0, 1);
}
63.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.0025, 0, 0, 1);
}
65% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00559, 0, 0, 1);
}
66.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00684, 0, 0, 1);
}
68.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00692, 0, 0, 1);
}
70% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00632, 0, 0, 1);
}
71.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00539, 0, 0, 1);
}
73.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00436, 0, 0, 1);
}
75% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00337, 0, 0, 1);
}
76.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00249, 0, 0, 1);
}
78.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00176, 0, 0, 1);
}
80% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00118, 0, 0, 1);
}
81.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00074, 0, 0, 1);
}
83.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00042, 0, 0, 1);
}
85% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00019, 0, 0, 1);
}
86.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.00005, 0, 0, 1);
}
88.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00004, 0, 0, 1);
}
90% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00008, 0, 0, 1);
}
91.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0001, 0, 0, 1);
}
93.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.0001, 0, 0, 1);
}
95% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00009, 0, 0, 1);
}
96.666667% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00008, 0, 0, 1);
}
98.333333% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.00007, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-left.ns-hide {
animation-name: animSlideLeft;
animation-duration: 0.25s;
}
@keyframes animSlideLeft {
0% {
transform: translate3d(-30px, 0, 0) translate3d(-100%, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-slide-right.ns-show {
animation: animSlideElasticRight 2000ms linear both;
}
@keyframes animSlideElasticRight {
0% {
transform: matrix3d(2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1000, 0, 0, 1);
}
2.15% {
transform: matrix3d(1.486, 0, 0, 0, 0, 0.514, 0, 0, 0, 0, 1, 0, 664.594, 0, 0, 1);
}
4.1% {
transform: matrix3d(1.147, 0, 0, 0, 0, 0.853, 0, 0, 0, 0, 1, 0, 419.708, 0, 0, 1);
}
4.3% {
transform: matrix3d(1.121, 0, 0, 0, 0, 0.879, 0, 0, 0, 0, 1, 0, 398.136, 0, 0, 1);
}
6.46% {
transform: matrix3d(0.948, 0, 0, 0, 0, 1.052, 0, 0, 0, 0, 1, 0, 206.714, 0, 0, 1);
}
8.11% {
transform: matrix3d(0.908, 0, 0, 0, 0, 1.092, 0, 0, 0, 0, 1, 0, 105.491, 0, 0, 1);
}
8.61% {
transform: matrix3d(0.907, 0, 0, 0, 0, 1.093, 0, 0, 0, 0, 1, 0, 81.572, 0, 0, 1);
}
12.11% {
transform: matrix3d(0.95, 0, 0, 0, 0, 1.05, 0, 0, 0, 0, 1, 0, -18.434, 0, 0, 1);
}
14.16% {
transform: matrix3d(0.979, 0, 0, 0, 0, 1.021, 0, 0, 0, 0, 1, 0, -38.734, 0, 0, 1);
}
16.12% {
transform: matrix3d(0.997, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, -43.356, 0, 0, 1);
}
19.72% {
transform: matrix3d(1.006, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, -34.155, 0, 0, 1);
}
27.23% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -7.839, 0, 0, 1);
}
30.83% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -1.951, 0, 0, 1);
}
38.34% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1.037, 0, 0, 1);
}
41.99% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.812, 0, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.159, 0, 0, 1);
}
60.56% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, -0.025, 0, 0, 1);
}
82.78% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0.001, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-right.ns-hide {
animation-name: animSlideRight;
animation-duration: 0.25s;
}
@keyframes animSlideRight {
0% {
transform: translate3d(30px, 0, 0) translate3d(100%, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-slide-center.ns-show {
animation: animSlideElasticCenter 2000ms linear both;
}
@keyframes animSlideElasticCenter {
0% {
transform: matrix3d(1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, -300, 0, 1);
}
2.15% {
transform: matrix3d(1, 0, 0, 0, 0, 1.971, 0, 0, 0, 0, 1, 0, 0, -199.378, 0, 1);
}
4.1% {
transform: matrix3d(1, 0, 0, 0, 0, 1.294, 0, 0, 0, 0, 1, 0, 0, -125.912, 0, 1);
}
4.3% {
transform: matrix3d(1, 0, 0, 0, 0, 1.243, 0, 0, 0, 0, 1, 0, 0, -119.441, 0, 1);
}
6.46% {
transform: matrix3d(1, 0, 0, 0, 0, 0.895, 0, 0, 0, 0, 1, 0, 0, -62.014, 0, 1);
}
8.11% {
transform: matrix3d(1, 0, 0, 0, 0, 0.817, 0, 0, 0, 0, 1, 0, 0, -31.647, 0, 1);
}
8.61% {
transform: matrix3d(1, 0, 0, 0, 0, 0.813, 0, 0, 0, 0, 1, 0, 0, -24.472, 0, 1);
}
12.11% {
transform: matrix3d(1, 0, 0, 0, 0, 0.9, 0, 0, 0, 0, 1, 0, 0, 5.53, 0, 1);
}
14.16% {
transform: matrix3d(1, 0, 0, 0, 0, 0.959, 0, 0, 0, 0, 1, 0, 0, 11.62, 0, 1);
}
16.12% {
transform: matrix3d(1, 0, 0, 0, 0, 0.994, 0, 0, 0, 0, 1, 0, 0, 13.007, 0, 1);
}
19.72% {
transform: matrix3d(1, 0, 0, 0, 0, 1.012, 0, 0, 0, 0, 1, 0, 0, 10.247, 0, 1);
}
27.23% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 2.352, 0, 1);
}
30.83% {
transform: matrix3d(1, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0.585, 0, 1);
}
38.34% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.311, 0, 1);
}
41.99% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.244, 0, 1);
}
50% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, -0.048, 0, 1);
}
60.56% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0.007, 0, 1);
}
82.78% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
.ns-effect-slide-center.ns-hide {
animation-name: animSlideCenter;
animation-duration: 0.25s;
}
@keyframes animSlideCenter {
0% {
transform: translate3d(0, -30px, 0) translate3d(0, -100%, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
.ns-effect-genie.ns-show,
.ns-effect-genie.ns-hide {
animation-name: animGenie;
animation-duration: 0.4s;
}
@keyframes animGenie {
0% {
opacity: 0;
transform: translate3d(0, calc(200% + 30px), 0) scale3d(0, 1, 1);
animation-timing-function: ease-in;
}
40% {
opacity: 0.5;
transform: translate3d(0, 0, 0) scale3d(0.02, 1.1, 1);
animation-timing-function: ease-out;
}
70% {
opacity: 0.6;
transform: translate3d(0, -40px, 0) scale3d(0.8, 1.1, 1);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
} | 0.656878 | 0.179656 |
@import url('https://fonts.googleapis.com/css?family=Baumans&display=swap');
.sheetform .charactersheet button[type=roll].sheet-d6-dice::before {
font-family: 'dicefontd6';
content: 'F ';
}
.sheetform .charactersheet main {
display: flex;
flex-wrap: wrap;
}
.col2 {
flex: 1 1 300px;
padding: .5em;
}
.sheetform .charactersheet section *, header *{
font-family: 'Baumans';
color: #006a83;
}
.sheetform .charactersheet input[type=text] {
width: 100%
}
.row {
margin: 0;
display: flex;
}
.row label {
flex-grow: 1;
display: flex;
}
.row .input-label {
margin: .2em 1em .2em .2em;
width: auto;
flex-grow: 0;
}
.row .number-label,.harm-label {
margin: .2em 1em .2em .2em;
width: auto;
flex-grow: 0;
}
section.column-section {
padding: .5em;
border-radius: 0px 0px 10px 10px;
display: flex;
flex-wrap: wrap;
width: 100%;
flex-direction: column;
}
section.harm-section {
flex-direction: row;
}
section.column-section>div,
section.column-section>label {
margin:0;
padding:.2em;
flex-grow: 1;
border: 2px solid #214E9B;
box-sizing: border-box;
overflow: hidden;
}
section.harm-section .harm-box {
width: 50%
}
section.column-section .column-label {
width: 100%
}
.sheetform .charactersheet section .column-label {
background-color: #214E9B;
color: white;
border: 2px solid #214E9B;
}
.harm-desc {
margin: .2em .2em .2em .2em;
width: auto;
flex-grow: 0;
}
.row input[type=text] {
flex-grow: 1;
}
table, table td,th {
border-collapse: separate;
padding:.2em;
}
table td input {
border: none;
text-align: center;
}
#attributes-table tr>:nth-child(n+2) {
border: 2px solid #214E9B;
border-top: 1px;
text-align: center;
}
#attributes-table tr>:first-child {
border: none;
text-align: right;
}
#attributes-table tr>th:nth-child(n+2) {
background-color: #214E9B;
color: white;
border: 2px solid #214E9B;
}
#attributes-table tr:last-child>td:nth-child(2) {
border-bottom-left-radius: 10px;
}
#attributes-table tr:last-child>td:last-child {
border-bottom-right-radius: 10px;
}
.repcontainer .repitem{
display: flex;
} | Hard Wired Island/hardwiredisland.css | @import url('https://fonts.googleapis.com/css?family=Baumans&display=swap');
.sheetform .charactersheet button[type=roll].sheet-d6-dice::before {
font-family: 'dicefontd6';
content: 'F ';
}
.sheetform .charactersheet main {
display: flex;
flex-wrap: wrap;
}
.col2 {
flex: 1 1 300px;
padding: .5em;
}
.sheetform .charactersheet section *, header *{
font-family: 'Baumans';
color: #006a83;
}
.sheetform .charactersheet input[type=text] {
width: 100%
}
.row {
margin: 0;
display: flex;
}
.row label {
flex-grow: 1;
display: flex;
}
.row .input-label {
margin: .2em 1em .2em .2em;
width: auto;
flex-grow: 0;
}
.row .number-label,.harm-label {
margin: .2em 1em .2em .2em;
width: auto;
flex-grow: 0;
}
section.column-section {
padding: .5em;
border-radius: 0px 0px 10px 10px;
display: flex;
flex-wrap: wrap;
width: 100%;
flex-direction: column;
}
section.harm-section {
flex-direction: row;
}
section.column-section>div,
section.column-section>label {
margin:0;
padding:.2em;
flex-grow: 1;
border: 2px solid #214E9B;
box-sizing: border-box;
overflow: hidden;
}
section.harm-section .harm-box {
width: 50%
}
section.column-section .column-label {
width: 100%
}
.sheetform .charactersheet section .column-label {
background-color: #214E9B;
color: white;
border: 2px solid #214E9B;
}
.harm-desc {
margin: .2em .2em .2em .2em;
width: auto;
flex-grow: 0;
}
.row input[type=text] {
flex-grow: 1;
}
table, table td,th {
border-collapse: separate;
padding:.2em;
}
table td input {
border: none;
text-align: center;
}
#attributes-table tr>:nth-child(n+2) {
border: 2px solid #214E9B;
border-top: 1px;
text-align: center;
}
#attributes-table tr>:first-child {
border: none;
text-align: right;
}
#attributes-table tr>th:nth-child(n+2) {
background-color: #214E9B;
color: white;
border: 2px solid #214E9B;
}
#attributes-table tr:last-child>td:nth-child(2) {
border-bottom-left-radius: 10px;
}
#attributes-table tr:last-child>td:last-child {
border-bottom-right-radius: 10px;
}
.repcontainer .repitem{
display: flex;
} | 0.381565 | 0.097734 |
.justify-content-center { -ms-flex-pack: center; justify-content: center; }
.align-content-center { -ms-flex-line-pack: center; align-content: center; }
@media (min-width: 780px) { .align-content-center-above-medium { -ms-flex-line-pack: center; align-content: center; } }
@media (max-width: 780px) { .align-content-center-below-medium { -ms-flex-line-pack: center; align-content: center; } }
@media (min-width: 1200px) { .align-content-center-above-large { -ms-flex-line-pack: center; align-content: center; } }
@media (max-width: 1200px) { .align-content-center-below-large { -ms-flex-line-pack: center; align-content: center; } }
.align-content-stretch { -ms-flex-line-pack: stretch; align-content: stretch; }
@media (min-width: 780px) { .align-content-stretch-above-medium { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (max-width: 780px) { .align-content-stretch-below-medium { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (min-width: 1200px) { .align-content-stretch-above-large { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (max-width: 1200px) { .align-content-stretch-below-large { -ms-flex-line-pack: stretch; align-content: stretch; } }
.align-content-flex-start { -ms-flex-line-pack: start; align-content: flex-start; }
@media (min-width: 780px) { .align-content-flex-start-above-medium { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (max-width: 780px) { .align-content-flex-start-below-medium { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (min-width: 1200px) { .align-content-flex-start-above-large { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (max-width: 1200px) { .align-content-flex-start-below-large { -ms-flex-line-pack: start; align-content: flex-start; } }
.align-content-flex-end { -ms-flex-line-pack: end; align-content: flex-end; }
@media (min-width: 780px) { .align-content-flex-end-above-medium { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (max-width: 780px) { .align-content-flex-end-below-medium { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (min-width: 1200px) { .align-content-flex-end-above-large { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (max-width: 1200px) { .align-content-flex-end-below-large { -ms-flex-line-pack: end; align-content: flex-end; } }
.align-content-space-between { -ms-flex-line-pack: justify; align-content: space-between; }
@media (min-width: 780px) { .align-content-space-between-above-medium { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (max-width: 780px) { .align-content-space-between-below-medium { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (min-width: 1200px) { .align-content-space-between-above-large { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (max-width: 1200px) { .align-content-space-between-below-large { -ms-flex-line-pack: justify; align-content: space-between; } }
.align-content-space-around { -ms-flex-line-pack: distribute; align-content: space-around; }
@media (min-width: 780px) { .align-content-space-around-above-medium { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (max-width: 780px) { .align-content-space-around-below-medium { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (min-width: 1200px) { .align-content-space-around-above-large { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (max-width: 1200px) { .align-content-space-around-below-large { -ms-flex-line-pack: distribute; align-content: space-around; } }
.align-items-flex-start { -ms-flex-align: start; align-items: flex-start; }
@media (min-width: 780px) { .align-items-flex-start-above-medium { -ms-flex-align: start; align-items: flex-start; } }
@media (max-width: 780px) { .align-items-flex-start-below-medium { -ms-flex-align: start; align-items: flex-start; } }
@media (min-width: 1200px) { .align-items-flex-start-above-large { -ms-flex-align: start; align-items: flex-start; } }
@media (max-width: 1200px) { .align-items-flex-start-below-large { -ms-flex-align: start; align-items: flex-start; } }
.align-items-flex-end { -ms-flex-align: end; align-items: flex-end; }
@media (min-width: 780px) { .align-items-flex-end-above-medium { -ms-flex-align: end; align-items: flex-end; } }
@media (max-width: 780px) { .align-items-flex-end-below-medium { -ms-flex-align: end; align-items: flex-end; } }
@media (min-width: 1200px) { .align-items-flex-end-above-large { -ms-flex-align: end; align-items: flex-end; } }
@media (max-width: 1200px) { .align-items-flex-end-below-large { -ms-flex-align: end; align-items: flex-end; } }
.align-items-center { -ms-flex-align: center; align-items: center; }
@media (min-width: 780px) { .align-items-center-above-medium { -ms-flex-align: center; align-items: center; } }
@media (max-width: 780px) { .align-items-center-below-medium { -ms-flex-align: center; align-items: center; } }
@media (min-width: 1200px) { .align-items-center-above-large { -ms-flex-align: center; align-items: center; } }
@media (max-width: 1200px) { .align-items-center-below-large { -ms-flex-align: center; align-items: center; } }
.aspect-ratio-16-9 { position: relative; }
.aspect-ratio-16-9:before { display: block; content: ""; width: 100%; padding-top: 56.25%; }
.aspect-ratio-16-9 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.aspect-ratio-4-3 { position: relative; }
.aspect-ratio-4-3:before { display: block; content: ""; width: 100%; padding-top: 75%; }
.aspect-ratio-4-3 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.aspect-ratio-1-1 { position: relative; }
.aspect-ratio-1-1:before { display: block; content: ""; width: 100%; padding-top: 100%; }
.aspect-ratio-1-1 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.background-white { background-color: white; }
.background-brand { background-color: blue; }
.background-brand-hover:hover { background-color: blue; }
.background-keyline { background-color: #efefef; }
.background-keyline-hover:hover { background-color: #efefef; }
.background-greyscale-x-light { background-color: #e5e5e5; }
.background-greyscale-x-light-hover:hover { background-color: #e5e5e5; }
.background-greyscale-50 { background-color: #ECEFF1; }
.background-greyscale-50-hover:hover { background-color: #ECEFF1; }
.background-greyscale-100 { background-color: #CFD8DC; }
.background-greyscale-100-hover:hover { background-color: #CFD8DC; }
.background-greyscale-200 { background-color: #B0BEC5; }
.background-greyscale-200-hover:hover { background-color: #B0BEC5; }
.background-greyscale-300 { background-color: #90A4AE; }
.background-greyscale-300-hover:hover { background-color: #90A4AE; }
.background-greyscale-400 { background-color: #78909C; }
.background-greyscale-400-hover:hover { background-color: #78909C; }
.background-greyscale-500 { background-color: #607D8B; }
.background-greyscale-500-hover:hover { background-color: #607D8B; }
.background-greyscale-600 { background-color: #546E7A; }
.background-greyscale-600-hover:hover { background-color: #546E7A; }
.background-greyscale-700 { background-color: #455A64; }
.background-greyscale-700-hover:hover { background-color: #455A64; }
.background-greyscale-800 { background-color: #37474F; }
.background-greyscale-800-hover:hover { background-color: #37474F; }
.background-greyscale-900 { background-color: #263238; }
.background-greyscale-900-hover:hover { background-color: #263238; }
.background-position-top { background-position: top; }
@media (min-width: 780px) { .background-position-top-above-medium { background-position: top; } }
@media (max-width: 780px) { .background-position-top-below-medium { background-position: top; } }
@media (min-width: 1200px) { .background-position-top-above-large { background-position: top; } }
@media (max-width: 1200px) { .background-position-top-below-large { background-position: top; } }
.background-position-center { background-position: center; }
@media (min-width: 780px) { .background-position-center-above-medium { background-position: center; } }
@media (max-width: 780px) { .background-position-center-below-medium { background-position: center; } }
@media (min-width: 1200px) { .background-position-center-above-large { background-position: center; } }
@media (max-width: 1200px) { .background-position-center-below-large { background-position: center; } }
.background-position-bottom { background-position: bottom; }
@media (min-width: 780px) { .background-position-bottom-above-medium { background-position: bottom; } }
@media (max-width: 780px) { .background-position-bottom-below-medium { background-position: bottom; } }
@media (min-width: 1200px) { .background-position-bottom-above-large { background-position: bottom; } }
@media (max-width: 1200px) { .background-position-bottom-below-large { background-position: bottom; } }
.background-size-cover { background-size: cover; }
@media (min-width: 780px) { .background-size-cover-above-medium { background-size: cover; } }
@media (max-width: 780px) { .background-size-cover-below-medium { background-size: cover; } }
@media (min-width: 1200px) { .background-size-cover-above-large { background-size: cover; } }
@media (max-width: 1200px) { .background-size-cover-below-large { background-size: cover; } }
.background-size-contain { background-size: contain; }
@media (min-width: 780px) { .background-size-contain-above-medium { background-size: contain; } }
@media (max-width: 780px) { .background-size-contain-below-medium { background-size: contain; } }
@media (min-width: 1200px) { .background-size-contain-above-large { background-size: contain; } }
@media (max-width: 1200px) { .background-size-contain-below-large { background-size: contain; } }
.background-size-100 { background-size: 100%; }
@media (min-width: 780px) { .background-size-100-above-medium { background-size: 100%; } }
@media (max-width: 780px) { .background-size-100-below-medium { background-size: 100%; } }
@media (min-width: 1200px) { .background-size-100-above-large { background-size: 100%; } }
@media (max-width: 1200px) { .background-size-100-below-large { background-size: 100%; } }
.border-radius-1 { border-radius: 1px; }
.border-radius-top-1 { border-top-left-radius: 1px; border-top-right-radius: 1px; }
.border-radius-top-left-1 { border-top-left-radius: 1px; }
.border-radius-top-right-1 { border-top-right-radius: 1px; }
.border-radius-bottom-1 { border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; }
.border-radius-bottom-left-1 { border-bottom-left-radius: 1px; }
.border-radius-bottom-right-1 { border-bottom-right-radius: 1px; }
.border-radius-2 { border-radius: 2px; }
.border-radius-top-2 { border-top-left-radius: 2px; border-top-right-radius: 2px; }
.border-radius-top-left-2 { border-top-left-radius: 2px; }
.border-radius-top-right-2 { border-top-right-radius: 2px; }
.border-radius-bottom-2 { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; }
.border-radius-bottom-left-2 { border-bottom-left-radius: 2px; }
.border-radius-bottom-right-2 { border-bottom-right-radius: 2px; }
.border-radius-3 { border-radius: 3px; }
.border-radius-top-3 { border-top-left-radius: 3px; border-top-right-radius: 3px; }
.border-radius-top-left-3 { border-top-left-radius: 3px; }
.border-radius-top-right-3 { border-top-right-radius: 3px; }
.border-radius-bottom-3 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; }
.border-radius-bottom-left-3 { border-bottom-left-radius: 3px; }
.border-radius-bottom-right-3 { border-bottom-right-radius: 3px; }
.border-radius-4 { border-radius: 4px; }
.border-radius-top-4 { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.border-radius-top-left-4 { border-top-left-radius: 4px; }
.border-radius-top-right-4 { border-top-right-radius: 4px; }
.border-radius-bottom-4 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.border-radius-bottom-left-4 { border-bottom-left-radius: 4px; }
.border-radius-bottom-right-4 { border-bottom-right-radius: 4px; }
.border-radius-5 { border-radius: 5px; }
.border-radius-top-5 { border-top-left-radius: 5px; border-top-right-radius: 5px; }
.border-radius-top-left-5 { border-top-left-radius: 5px; }
.border-radius-top-right-5 { border-top-right-radius: 5px; }
.border-radius-bottom-5 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
.border-radius-bottom-left-5 { border-bottom-left-radius: 5px; }
.border-radius-bottom-right-5 { border-bottom-right-radius: 5px; }
.no-border-radius { border-radius: 0 !important; }
.no-border-radius-top { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; }
.no-border-radius-top-left { border-top-left-radius: 0 !important; }
.no-border-radius-top-right { border-top-right-radius: 0 !important; }
.no-border-radius-bottom { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.no-border-radius-bottom-left { border-bottom-left-radius: 0 !important; }
.no-border-radius-bottom-right { border-bottom-right-radius: 0 !important; }
.no-border { border: none !important; }
@media (min-width: 780px) { .no-border-above-medium { border: none !important; } }
@media (max-width: 780px) { .no-border-below-medium { border: none !important; } }
@media (min-width: 1200px) { .no-border-above-large { border: none !important; } }
@media (max-width: 1200px) { .no-border-below-large { border: none !important; } }
.no-border-last:last-of-type { border: none !important; }
.border { border: 1px solid #efefef; }
@media (min-width: 780px) { .border-above-medium { border: 1px solid #efefef; } }
@media (max-width: 780px) { .border-below-medium { border: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-above-large { border: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-below-large { border: 1px solid #efefef; } }
.border { border-all: 1px solid #efefef; }
@media (min-width: 780px) { .border-above-medium { border-all: 1px solid #efefef; } }
@media (max-width: 780px) { .border-below-medium { border-all: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-above-large { border-all: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-below-large { border-all: 1px solid #efefef; } }
.border-top { border-top: 1px solid #efefef; }
@media (min-width: 780px) { .border-top-above-medium { border-top: 1px solid #efefef; } }
@media (max-width: 780px) { .border-top-below-medium { border-top: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-top-above-large { border-top: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-top-below-large { border-top: 1px solid #efefef; } }
.border-right { border-right: 1px solid #efefef; }
@media (min-width: 780px) { .border-right-above-medium { border-right: 1px solid #efefef; } }
@media (max-width: 780px) { .border-right-below-medium { border-right: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-right-above-large { border-right: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-right-below-large { border-right: 1px solid #efefef; } }
.bottom { border-bottom: 1px solid #efefef; }
@media (min-width: 780px) { .bottom-above-medium { border-bottom: 1px solid #efefef; } }
@media (max-width: 780px) { .bottom-below-medium { border-bottom: 1px solid #efefef; } }
@media (min-width: 1200px) { .bottom-above-large { border-bottom: 1px solid #efefef; } }
@media (max-width: 1200px) { .bottom-below-large { border-bottom: 1px solid #efefef; } }
.left { border-left: 1px solid #efefef; }
@media (min-width: 780px) { .left-above-medium { border-left: 1px solid #efefef; } }
@media (max-width: 780px) { .left-below-medium { border-left: 1px solid #efefef; } }
@media (min-width: 1200px) { .left-above-large { border-left: 1px solid #efefef; } }
@media (max-width: 1200px) { .left-below-large { border-left: 1px solid #efefef; } }
.no-border { border-all: none !important; }
@media (min-width: 780px) { .no-border { border-all: none !important; } }
@media (max-width: 780px) { .no-border { border-all: none !important; } }
@media (min-width: 1200px) { .no-border { border-all: none !important; } }
@media (max-width: 1200px) { .no-border { border-all: none !important; } }
.no-border-last:last-of-type { border-all: none !important; }
.no-border { border-top: none !important; }
@media (min-width: 780px) { .no-border { border-top: none !important; } }
@media (max-width: 780px) { .no-border { border-top: none !important; } }
@media (min-width: 1200px) { .no-border { border-top: none !important; } }
@media (max-width: 1200px) { .no-border { border-top: none !important; } }
.no-border-top-last:last-of-type { border-top: none !important; }
.no-border { border-right: none !important; }
@media (min-width: 780px) { .no-border { border-right: none !important; } }
@media (max-width: 780px) { .no-border { border-right: none !important; } }
@media (min-width: 1200px) { .no-border { border-right: none !important; } }
@media (max-width: 1200px) { .no-border { border-right: none !important; } }
.no-border-right-last:last-of-type { border-right: none !important; }
.no-border { border-bottom: none !important; }
@media (min-width: 780px) { .no-border { border-bottom: none !important; } }
@media (max-width: 780px) { .no-border { border-bottom: none !important; } }
@media (min-width: 1200px) { .no-border { border-bottom: none !important; } }
@media (max-width: 1200px) { .no-border { border-bottom: none !important; } }
.no-bottom-last:last-of-type { border-bottom: none !important; }
.no-border { border-left: none !important; }
@media (min-width: 780px) { .no-border { border-left: none !important; } }
@media (max-width: 780px) { .no-border { border-left: none !important; } }
@media (min-width: 1200px) { .no-border { border-left: none !important; } }
@media (max-width: 1200px) { .no-border { border-left: none !important; } }
.no-left-last:last-of-type { border-left: none !important; }
.bottom-0 { bottom: 0px; }
@media (min-width: 780px) { .bottom-0-above-medium { bottom: 0px; } }
@media (max-width: 780px) { .bottom-0-below-medium { bottom: 0px; } }
@media (min-width: 1200px) { .bottom-0-above-large { bottom: 0px; } }
@media (max-width: 1200px) { .bottom-0-below-large { bottom: 0px; } }
.bottom-1 { bottom: 5px; }
@media (min-width: 780px) { .bottom-1-above-medium { bottom: 5px; } }
@media (max-width: 780px) { .bottom-1-below-medium { bottom: 5px; } }
@media (min-width: 1200px) { .bottom-1-above-large { bottom: 5px; } }
@media (max-width: 1200px) { .bottom-1-below-large { bottom: 5px; } }
.bottom-2 { bottom: 10px; }
@media (min-width: 780px) { .bottom-2-above-medium { bottom: 10px; } }
@media (max-width: 780px) { .bottom-2-below-medium { bottom: 10px; } }
@media (min-width: 1200px) { .bottom-2-above-large { bottom: 10px; } }
@media (max-width: 1200px) { .bottom-2-below-large { bottom: 10px; } }
.bottom-3 { bottom: 15px; }
@media (min-width: 780px) { .bottom-3-above-medium { bottom: 15px; } }
@media (max-width: 780px) { .bottom-3-below-medium { bottom: 15px; } }
@media (min-width: 1200px) { .bottom-3-above-large { bottom: 15px; } }
@media (max-width: 1200px) { .bottom-3-below-large { bottom: 15px; } }
.bottom-4 { bottom: 20px; }
@media (min-width: 780px) { .bottom-4-above-medium { bottom: 20px; } }
@media (max-width: 780px) { .bottom-4-below-medium { bottom: 20px; } }
@media (min-width: 1200px) { .bottom-4-above-large { bottom: 20px; } }
@media (max-width: 1200px) { .bottom-4-below-large { bottom: 20px; } }
.bottom-5 { bottom: 25px; }
@media (min-width: 780px) { .bottom-5-above-medium { bottom: 25px; } }
@media (max-width: 780px) { .bottom-5-below-medium { bottom: 25px; } }
@media (min-width: 1200px) { .bottom-5-above-large { bottom: 25px; } }
@media (max-width: 1200px) { .bottom-5-below-large { bottom: 25px; } }
.bottom-6 { bottom: 30px; }
@media (min-width: 780px) { .bottom-6-above-medium { bottom: 30px; } }
@media (max-width: 780px) { .bottom-6-below-medium { bottom: 30px; } }
@media (min-width: 1200px) { .bottom-6-above-large { bottom: 30px; } }
@media (max-width: 1200px) { .bottom-6-below-large { bottom: 30px; } }
.bottom-7 { bottom: 35px; }
@media (min-width: 780px) { .bottom-7-above-medium { bottom: 35px; } }
@media (max-width: 780px) { .bottom-7-below-medium { bottom: 35px; } }
@media (min-width: 1200px) { .bottom-7-above-large { bottom: 35px; } }
@media (max-width: 1200px) { .bottom-7-below-large { bottom: 35px; } }
.bottom-8 { bottom: 40px; }
@media (min-width: 780px) { .bottom-8-above-medium { bottom: 40px; } }
@media (max-width: 780px) { .bottom-8-below-medium { bottom: 40px; } }
@media (min-width: 1200px) { .bottom-8-above-large { bottom: 40px; } }
@media (max-width: 1200px) { .bottom-8-below-large { bottom: 40px; } }
.bottom-9 { bottom: 45px; }
@media (min-width: 780px) { .bottom-9-above-medium { bottom: 45px; } }
@media (max-width: 780px) { .bottom-9-below-medium { bottom: 45px; } }
@media (min-width: 1200px) { .bottom-9-above-large { bottom: 45px; } }
@media (max-width: 1200px) { .bottom-9-below-large { bottom: 45px; } }
.bottom-10 { bottom: 50px; }
@media (min-width: 780px) { .bottom-10-above-medium { bottom: 50px; } }
@media (max-width: 780px) { .bottom-10-below-medium { bottom: 50px; } }
@media (min-width: 1200px) { .bottom-10-above-large { bottom: 50px; } }
@media (max-width: 1200px) { .bottom-10-below-large { bottom: 50px; } }
.bottom-11 { bottom: 55px; }
@media (min-width: 780px) { .bottom-11-above-medium { bottom: 55px; } }
@media (max-width: 780px) { .bottom-11-below-medium { bottom: 55px; } }
@media (min-width: 1200px) { .bottom-11-above-large { bottom: 55px; } }
@media (max-width: 1200px) { .bottom-11-below-large { bottom: 55px; } }
.bottom-12 { bottom: 60px; }
@media (min-width: 780px) { .bottom-12-above-medium { bottom: 60px; } }
@media (max-width: 780px) { .bottom-12-below-medium { bottom: 60px; } }
@media (min-width: 1200px) { .bottom-12-above-large { bottom: 60px; } }
@media (max-width: 1200px) { .bottom-12-below-large { bottom: 60px; } }
.bottom-13 { bottom: 65px; }
@media (min-width: 780px) { .bottom-13-above-medium { bottom: 65px; } }
@media (max-width: 780px) { .bottom-13-below-medium { bottom: 65px; } }
@media (min-width: 1200px) { .bottom-13-above-large { bottom: 65px; } }
@media (max-width: 1200px) { .bottom-13-below-large { bottom: 65px; } }
.bottom-14 { bottom: 70px; }
@media (min-width: 780px) { .bottom-14-above-medium { bottom: 70px; } }
@media (max-width: 780px) { .bottom-14-below-medium { bottom: 70px; } }
@media (min-width: 1200px) { .bottom-14-above-large { bottom: 70px; } }
@media (max-width: 1200px) { .bottom-14-below-large { bottom: 70px; } }
.bottom-15 { bottom: 75px; }
@media (min-width: 780px) { .bottom-15-above-medium { bottom: 75px; } }
@media (max-width: 780px) { .bottom-15-below-medium { bottom: 75px; } }
@media (min-width: 1200px) { .bottom-15-above-large { bottom: 75px; } }
@media (max-width: 1200px) { .bottom-15-below-large { bottom: 75px; } }
.bottom-auto { bottom: auto !important; }
.no-box-shadow { box-shadow: none !important; }
.clearfix { zoom: 1; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.no-clearfix:before, .no-clearfix:after { content: normal !important; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.display-none { display: none; }
@media (min-width: 780px) { .display-none-above-medium { display: none; } }
@media (max-width: 780px) { .display-none-below-medium { display: none; } }
@media (min-width: 1200px) { .display-none-above-large { display: none; } }
@media (max-width: 1200px) { .display-none-below-large { display: none; } }
.display-block { display: block; }
@media (min-width: 780px) { .display-block-above-medium { display: block; } }
@media (max-width: 780px) { .display-block-below-medium { display: block; } }
@media (min-width: 1200px) { .display-block-above-large { display: block; } }
@media (max-width: 1200px) { .display-block-below-large { display: block; } }
.display-inline-block { display: inline-block; }
@media (min-width: 780px) { .display-inline-block-above-medium { display: inline-block; } }
@media (max-width: 780px) { .display-inline-block-below-medium { display: inline-block; } }
@media (min-width: 1200px) { .display-inline-block-above-large { display: inline-block; } }
@media (max-width: 1200px) { .display-inline-block-below-large { display: inline-block; } }
.display-table { display: table; }
@media (min-width: 780px) { .display-table-above-medium { display: table; } }
@media (max-width: 780px) { .display-table-below-medium { display: table; } }
@media (min-width: 1200px) { .display-table-above-large { display: table; } }
@media (max-width: 1200px) { .display-table-below-large { display: table; } }
.display-table-row { display: table-row; }
@media (min-width: 780px) { .display-table-row-above-medium { display: table-row; } }
@media (max-width: 780px) { .display-table-row-below-medium { display: table-row; } }
@media (min-width: 1200px) { .display-table-row-above-large { display: table-row; } }
@media (max-width: 1200px) { .display-table-row-below-large { display: table-row; } }
.display-table-cell { display: table-cell; }
@media (min-width: 780px) { .display-table-cell-above-medium { display: table-cell; } }
@media (max-width: 780px) { .display-table-cell-below-medium { display: table-cell; } }
@media (min-width: 1200px) { .display-table-cell-above-large { display: table-cell; } }
@media (max-width: 1200px) { .display-table-cell-below-large { display: table-cell; } }
.display-flex { display: -ms-flexbox; display: flex; }
@media (min-width: 780px) { .display-flex-above-medium { display: -ms-flexbox; display: flex; } }
@media (max-width: 780px) { .display-flex-below-medium { display: -ms-flexbox; display: flex; } }
@media (min-width: 1200px) { .display-flex-above-large { display: -ms-flexbox; display: flex; } }
@media (max-width: 1200px) { .display-flex-below-large { display: -ms-flexbox; display: flex; } }
.fill-white { fill: white; }
.fill-brand { fill: blue; }
.fill-brand-hover:hover { fill: blue; }
.fill-keyline { fill: #efefef; }
.fill-keyline-hover:hover { fill: #efefef; }
.fill-greyscale-x-light { fill: #e5e5e5; }
.fill-greyscale-x-light-hover:hover { fill: #e5e5e5; }
.fill-greyscale-50 { fill: #ECEFF1; }
.fill-greyscale-50-hover:hover { fill: #ECEFF1; }
.fill-greyscale-100 { fill: #CFD8DC; }
.fill-greyscale-100-hover:hover { fill: #CFD8DC; }
.fill-greyscale-200 { fill: #B0BEC5; }
.fill-greyscale-200-hover:hover { fill: #B0BEC5; }
.fill-greyscale-300 { fill: #90A4AE; }
.fill-greyscale-300-hover:hover { fill: #90A4AE; }
.fill-greyscale-400 { fill: #78909C; }
.fill-greyscale-400-hover:hover { fill: #78909C; }
.fill-greyscale-500 { fill: #607D8B; }
.fill-greyscale-500-hover:hover { fill: #607D8B; }
.fill-greyscale-600 { fill: #546E7A; }
.fill-greyscale-600-hover:hover { fill: #546E7A; }
.fill-greyscale-700 { fill: #455A64; }
.fill-greyscale-700-hover:hover { fill: #455A64; }
.fill-greyscale-800 { fill: #37474F; }
.fill-greyscale-800-hover:hover { fill: #37474F; }
.fill-greyscale-900 { fill: #263238; }
.fill-greyscale-900-hover:hover { fill: #263238; }
.flex-direction-column { -ms-flex-direction: column; flex-direction: column; }
@media (min-width: 780px) { .flex-direction-column-above-medium { -ms-flex-direction: column; flex-direction: column; } }
@media (max-width: 780px) { .flex-direction-column-below-medium { -ms-flex-direction: column; flex-direction: column; } }
@media (min-width: 1200px) { .flex-direction-column-above-large { -ms-flex-direction: column; flex-direction: column; } }
@media (max-width: 1200px) { .flex-direction-column-below-large { -ms-flex-direction: column; flex-direction: column; } }
.flex-direction-row { -ms-flex-direction: row; flex-direction: row; }
@media (min-width: 780px) { .flex-direction-row-above-medium { -ms-flex-direction: row; flex-direction: row; } }
@media (max-width: 780px) { .flex-direction-row-below-medium { -ms-flex-direction: row; flex-direction: row; } }
@media (min-width: 1200px) { .flex-direction-row-above-large { -ms-flex-direction: row; flex-direction: row; } }
@media (max-width: 1200px) { .flex-direction-row-below-large { -ms-flex-direction: row; flex-direction: row; } }
.flex-order-1 { -ms-flex-order: 1; order: 1; }
@media (min-width: 780px) { .flex-order-1-above-medium { -ms-flex-order: 1; order: 1; } }
@media (max-width: 780px) { .flex-order-1-below-medium { -ms-flex-order: 1; order: 1; } }
@media (min-width: 1200px) { .flex-order-1-above-large { -ms-flex-order: 1; order: 1; } }
@media (max-width: 1200px) { .flex-order-1-below-large { -ms-flex-order: 1; order: 1; } }
.flex-order-2 { -ms-flex-order: 2; order: 2; }
@media (min-width: 780px) { .flex-order-2-above-medium { -ms-flex-order: 2; order: 2; } }
@media (max-width: 780px) { .flex-order-2-below-medium { -ms-flex-order: 2; order: 2; } }
@media (min-width: 1200px) { .flex-order-2-above-large { -ms-flex-order: 2; order: 2; } }
@media (max-width: 1200px) { .flex-order-2-below-large { -ms-flex-order: 2; order: 2; } }
.flex-order-3 { -ms-flex-order: 3; order: 3; }
@media (min-width: 780px) { .flex-order-3-above-medium { -ms-flex-order: 3; order: 3; } }
@media (max-width: 780px) { .flex-order-3-below-medium { -ms-flex-order: 3; order: 3; } }
@media (min-width: 1200px) { .flex-order-3-above-large { -ms-flex-order: 3; order: 3; } }
@media (max-width: 1200px) { .flex-order-3-below-large { -ms-flex-order: 3; order: 3; } }
.flex-order-4 { -ms-flex-order: 4; order: 4; }
@media (min-width: 780px) { .flex-order-4-above-medium { -ms-flex-order: 4; order: 4; } }
@media (max-width: 780px) { .flex-order-4-below-medium { -ms-flex-order: 4; order: 4; } }
@media (min-width: 1200px) { .flex-order-4-above-large { -ms-flex-order: 4; order: 4; } }
@media (max-width: 1200px) { .flex-order-4-below-large { -ms-flex-order: 4; order: 4; } }
.flex-order-5 { -ms-flex-order: 5; order: 5; }
@media (min-width: 780px) { .flex-order-5-above-medium { -ms-flex-order: 5; order: 5; } }
@media (max-width: 780px) { .flex-order-5-below-medium { -ms-flex-order: 5; order: 5; } }
@media (min-width: 1200px) { .flex-order-5-above-large { -ms-flex-order: 5; order: 5; } }
@media (max-width: 1200px) { .flex-order-5-below-large { -ms-flex-order: 5; order: 5; } }
.flex-order-6 { -ms-flex-order: 6; order: 6; }
@media (min-width: 780px) { .flex-order-6-above-medium { -ms-flex-order: 6; order: 6; } }
@media (max-width: 780px) { .flex-order-6-below-medium { -ms-flex-order: 6; order: 6; } }
@media (min-width: 1200px) { .flex-order-6-above-large { -ms-flex-order: 6; order: 6; } }
@media (max-width: 1200px) { .flex-order-6-below-large { -ms-flex-order: 6; order: 6; } }
.flex-order-7 { -ms-flex-order: 7; order: 7; }
@media (min-width: 780px) { .flex-order-7-above-medium { -ms-flex-order: 7; order: 7; } }
@media (max-width: 780px) { .flex-order-7-below-medium { -ms-flex-order: 7; order: 7; } }
@media (min-width: 1200px) { .flex-order-7-above-large { -ms-flex-order: 7; order: 7; } }
@media (max-width: 1200px) { .flex-order-7-below-large { -ms-flex-order: 7; order: 7; } }
.flex-order-8 { -ms-flex-order: 8; order: 8; }
@media (min-width: 780px) { .flex-order-8-above-medium { -ms-flex-order: 8; order: 8; } }
@media (max-width: 780px) { .flex-order-8-below-medium { -ms-flex-order: 8; order: 8; } }
@media (min-width: 1200px) { .flex-order-8-above-large { -ms-flex-order: 8; order: 8; } }
@media (max-width: 1200px) { .flex-order-8-below-large { -ms-flex-order: 8; order: 8; } }
.flex-order-9 { -ms-flex-order: 9; order: 9; }
@media (min-width: 780px) { .flex-order-9-above-medium { -ms-flex-order: 9; order: 9; } }
@media (max-width: 780px) { .flex-order-9-below-medium { -ms-flex-order: 9; order: 9; } }
@media (min-width: 1200px) { .flex-order-9-above-large { -ms-flex-order: 9; order: 9; } }
@media (max-width: 1200px) { .flex-order-9-below-large { -ms-flex-order: 9; order: 9; } }
.flex-order-10 { -ms-flex-order: 10; order: 10; }
@media (min-width: 780px) { .flex-order-10-above-medium { -ms-flex-order: 10; order: 10; } }
@media (max-width: 780px) { .flex-order-10-below-medium { -ms-flex-order: 10; order: 10; } }
@media (min-width: 1200px) { .flex-order-10-above-large { -ms-flex-order: 10; order: 10; } }
@media (max-width: 1200px) { .flex-order-10-below-large { -ms-flex-order: 10; order: 10; } }
.flex-wrap { -ms-flex-wrap: wrap; flex-wrap: wrap; }
@media (min-width: 780px) { .flex-wrap-above-medium { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (max-width: 780px) { .flex-wrap-below-medium { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (min-width: 1200px) { .flex-wrap-above-large { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (max-width: 1200px) { .flex-wrap-below-large { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
.flex-nowrap { -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
@media (min-width: 780px) { .flex-nowrap-above-medium { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (max-width: 780px) { .flex-nowrap-below-medium { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (min-width: 1200px) { .flex-nowrap-above-large { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (max-width: 1200px) { .flex-nowrap-below-large { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
.flex-wrap-reverse { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; }
@media (min-width: 780px) { .flex-wrap-reverse-above-medium { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (max-width: 780px) { .flex-wrap-reverse-below-medium { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (min-width: 1200px) { .flex-wrap-reverse-above-large { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (max-width: 1200px) { .flex-wrap-reverse-below-large { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
.float-left { float: left; }
@media (min-width: 780px) { .float-left-above-medium { float: left; } }
@media (max-width: 780px) { .float-left-below-medium { float: left; } }
@media (min-width: 1200px) { .float-left-above-large { float: left; } }
@media (max-width: 1200px) { .float-left-below-large { float: left; } }
.float-right { float: right; }
@media (min-width: 780px) { .float-right-above-medium { float: right; } }
@media (max-width: 780px) { .float-right-below-medium { float: right; } }
@media (min-width: 1200px) { .float-right-above-large { float: right; } }
@media (max-width: 1200px) { .float-right-below-large { float: right; } }
.no-float { float: none !important; }
@media (min-width: 780px) { .no-float-above-medium { float: none !important; } }
@media (max-width: 780px) { .no-float-below-medium { float: none !important; } }
@media (min-width: 1200px) { .no-float-above-large { float: none !important; } }
@media (max-width: 1200px) { .no-float-below-large { float: none !important; } }
.columns-1 { padding: 0 10px; }
@media (max-width: 780px) { .columns-1 { width: 100%; }
.columns-1:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-1 { float: left; width: 8.33333%; } }
.columns-2 { padding: 0 10px; }
@media (max-width: 780px) { .columns-2 { width: 100%; }
.columns-2:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-2 { float: left; width: 16.66667%; } }
.columns-3 { padding: 0 10px; }
@media (max-width: 780px) { .columns-3 { width: 100%; }
.columns-3:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-3 { float: left; width: 25%; } }
.columns-4 { padding: 0 10px; }
@media (max-width: 780px) { .columns-4 { width: 100%; }
.columns-4:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-4 { float: left; width: 33.33333%; } }
.columns-5 { padding: 0 10px; }
@media (max-width: 780px) { .columns-5 { width: 100%; }
.columns-5:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-5 { float: left; width: 41.66667%; } }
.columns-6 { padding: 0 10px; }
@media (max-width: 780px) { .columns-6 { width: 100%; }
.columns-6:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-6 { float: left; width: 50%; } }
.columns-7 { padding: 0 10px; }
@media (max-width: 780px) { .columns-7 { width: 100%; }
.columns-7:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-7 { float: left; width: 58.33333%; } }
.columns-8 { padding: 0 10px; }
@media (max-width: 780px) { .columns-8 { width: 100%; }
.columns-8:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-8 { float: left; width: 66.66667%; } }
.columns-9 { padding: 0 10px; }
@media (max-width: 780px) { .columns-9 { width: 100%; }
.columns-9:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-9 { float: left; width: 75%; } }
.columns-10 { padding: 0 10px; }
@media (max-width: 780px) { .columns-10 { width: 100%; }
.columns-10:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-10 { float: left; width: 83.33333%; } }
.columns-11 { padding: 0 10px; }
@media (max-width: 780px) { .columns-11 { width: 100%; }
.columns-11:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-11 { float: left; width: 91.66667%; } }
.columns-12 { padding: 0 10px; }
@media (max-width: 780px) { .columns-12 { width: 100%; }
.columns-12:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-12 { float: left; width: 100%; } }
.columns-1-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-1-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-1-above-medium { float: left; width: 8.33333%; } }
.columns-1-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-1-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-1-below-medium { float: left; width: 8.33333%; } }
.columns-2-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-2-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-2-above-medium { float: left; width: 16.66667%; } }
.columns-2-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-2-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-2-below-medium { float: left; width: 16.66667%; } }
.columns-3-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-3-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-3-above-medium { float: left; width: 25%; } }
.columns-3-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-3-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-3-below-medium { float: left; width: 25%; } }
.columns-4-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-4-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-4-above-medium { float: left; width: 33.33333%; } }
.columns-4-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-4-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-4-below-medium { float: left; width: 33.33333%; } }
.columns-5-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-5-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-5-above-medium { float: left; width: 41.66667%; } }
.columns-5-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-5-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-5-below-medium { float: left; width: 41.66667%; } }
.columns-6-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-6-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-6-above-medium { float: left; width: 50%; } }
.columns-6-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-6-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-6-below-medium { float: left; width: 50%; } }
.columns-7-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-7-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-7-above-medium { float: left; width: 58.33333%; } }
.columns-7-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-7-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-7-below-medium { float: left; width: 58.33333%; } }
.columns-8-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-8-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-8-above-medium { float: left; width: 66.66667%; } }
.columns-8-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-8-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-8-below-medium { float: left; width: 66.66667%; } }
.columns-9-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-9-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-9-above-medium { float: left; width: 75%; } }
.columns-9-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-9-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-9-below-medium { float: left; width: 75%; } }
.columns-10-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-10-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-10-above-medium { float: left; width: 83.33333%; } }
.columns-10-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-10-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-10-below-medium { float: left; width: 83.33333%; } }
.columns-11-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-11-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-11-above-medium { float: left; width: 91.66667%; } }
.columns-11-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-11-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-11-below-medium { float: left; width: 91.66667%; } }
.columns-12-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-12-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-12-above-medium { float: left; width: 100%; } }
.columns-12-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-12-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-12-below-medium { float: left; width: 100%; } }
.columns-1-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-1-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-1-above-large { float: left; width: 8.33333%; } }
.columns-1-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-1-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-1-below-large { float: left; width: 8.33333%; } }
.columns-2-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-2-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-2-above-large { float: left; width: 16.66667%; } }
.columns-2-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-2-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-2-below-large { float: left; width: 16.66667%; } }
.columns-3-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-3-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-3-above-large { float: left; width: 25%; } }
.columns-3-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-3-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-3-below-large { float: left; width: 25%; } }
.columns-4-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-4-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-4-above-large { float: left; width: 33.33333%; } }
.columns-4-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-4-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-4-below-large { float: left; width: 33.33333%; } }
.columns-5-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-5-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-5-above-large { float: left; width: 41.66667%; } }
.columns-5-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-5-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-5-below-large { float: left; width: 41.66667%; } }
.columns-6-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-6-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-6-above-large { float: left; width: 50%; } }
.columns-6-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-6-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-6-below-large { float: left; width: 50%; } }
.columns-7-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-7-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-7-above-large { float: left; width: 58.33333%; } }
.columns-7-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-7-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-7-below-large { float: left; width: 58.33333%; } }
.columns-8-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-8-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-8-above-large { float: left; width: 66.66667%; } }
.columns-8-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-8-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-8-below-large { float: left; width: 66.66667%; } }
.columns-9-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-9-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-9-above-large { float: left; width: 75%; } }
.columns-9-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-9-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-9-below-large { float: left; width: 75%; } }
.columns-10-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-10-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-10-above-large { float: left; width: 83.33333%; } }
.columns-10-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-10-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-10-below-large { float: left; width: 83.33333%; } }
.columns-11-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-11-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-11-above-large { float: left; width: 91.66667%; } }
.columns-11-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-11-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-11-below-large { float: left; width: 91.66667%; } }
.columns-12-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-12-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-12-above-large { float: left; width: 100%; } }
.columns-12-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-12-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-12-below-large { float: left; width: 100%; } }
.columns { zoom: 1; margin-left: -10px; margin-right: -10px; }
.columns:before, .columns:after { content: ""; display: table; }
.columns:after { clear: both; }
.columns.no-gutter { margin-left: 0; margin-right: 0; }
.columns.no-gutter > [class^="columns"] { padding: 0; }
@media (min-width: 780px) { .columns.gutter-half { margin-left: -5px; margin-right: -5px; }
.columns.gutter-half > [class^="columns"] { padding: 0 5px; }
.columns.gutter-double { margin-left: -20px; margin-right: -20px; }
.columns.gutter-double > [class^="columns"] { padding: 0 20px; } }
@media (min-width: 780px) { .offset-1 { margin-left: 8.33333%; } }
@media (min-width: 780px) { .offset-1-above-medium { margin-left: 8.33333%; } }
@media (max-width: 780px) { .offset-1-below-medium { margin-left: 8.33333%; } }
@media (min-width: 1200px) { .offset-1-above-large { margin-left: 8.33333%; } }
@media (max-width: 1200px) { .offset-1-below-large { margin-left: 8.33333%; } }
@media (min-width: 780px) { .offset-2 { margin-left: 16.66667%; } }
@media (min-width: 780px) { .offset-2-above-medium { margin-left: 16.66667%; } }
@media (max-width: 780px) { .offset-2-below-medium { margin-left: 16.66667%; } }
@media (min-width: 1200px) { .offset-2-above-large { margin-left: 16.66667%; } }
@media (max-width: 1200px) { .offset-2-below-large { margin-left: 16.66667%; } }
@media (min-width: 780px) { .offset-3 { margin-left: 25%; } }
@media (min-width: 780px) { .offset-3-above-medium { margin-left: 25%; } }
@media (max-width: 780px) { .offset-3-below-medium { margin-left: 25%; } }
@media (min-width: 1200px) { .offset-3-above-large { margin-left: 25%; } }
@media (max-width: 1200px) { .offset-3-below-large { margin-left: 25%; } }
@media (min-width: 780px) { .offset-4 { margin-left: 33.33333%; } }
@media (min-width: 780px) { .offset-4-above-medium { margin-left: 33.33333%; } }
@media (max-width: 780px) { .offset-4-below-medium { margin-left: 33.33333%; } }
@media (min-width: 1200px) { .offset-4-above-large { margin-left: 33.33333%; } }
@media (max-width: 1200px) { .offset-4-below-large { margin-left: 33.33333%; } }
@media (min-width: 780px) { .offset-5 { margin-left: 41.66667%; } }
@media (min-width: 780px) { .offset-5-above-medium { margin-left: 41.66667%; } }
@media (max-width: 780px) { .offset-5-below-medium { margin-left: 41.66667%; } }
@media (min-width: 1200px) { .offset-5-above-large { margin-left: 41.66667%; } }
@media (max-width: 1200px) { .offset-5-below-large { margin-left: 41.66667%; } }
@media (min-width: 780px) { .offset-6 { margin-left: 50%; } }
@media (min-width: 780px) { .offset-6-above-medium { margin-left: 50%; } }
@media (max-width: 780px) { .offset-6-below-medium { margin-left: 50%; } }
@media (min-width: 1200px) { .offset-6-above-large { margin-left: 50%; } }
@media (max-width: 1200px) { .offset-6-below-large { margin-left: 50%; } }
@media (min-width: 780px) { .offset-7 { margin-left: 58.33333%; } }
@media (min-width: 780px) { .offset-7-above-medium { margin-left: 58.33333%; } }
@media (max-width: 780px) { .offset-7-below-medium { margin-left: 58.33333%; } }
@media (min-width: 1200px) { .offset-7-above-large { margin-left: 58.33333%; } }
@media (max-width: 1200px) { .offset-7-below-large { margin-left: 58.33333%; } }
@media (min-width: 780px) { .offset-8 { margin-left: 66.66667%; } }
@media (min-width: 780px) { .offset-8-above-medium { margin-left: 66.66667%; } }
@media (max-width: 780px) { .offset-8-below-medium { margin-left: 66.66667%; } }
@media (min-width: 1200px) { .offset-8-above-large { margin-left: 66.66667%; } }
@media (max-width: 1200px) { .offset-8-below-large { margin-left: 66.66667%; } }
@media (min-width: 780px) { .offset-9 { margin-left: 75%; } }
@media (min-width: 780px) { .offset-9-above-medium { margin-left: 75%; } }
@media (max-width: 780px) { .offset-9-below-medium { margin-left: 75%; } }
@media (min-width: 1200px) { .offset-9-above-large { margin-left: 75%; } }
@media (max-width: 1200px) { .offset-9-below-large { margin-left: 75%; } }
@media (min-width: 780px) { .offset-10 { margin-left: 83.33333%; } }
@media (min-width: 780px) { .offset-10-above-medium { margin-left: 83.33333%; } }
@media (max-width: 780px) { .offset-10-below-medium { margin-left: 83.33333%; } }
@media (min-width: 1200px) { .offset-10-above-large { margin-left: 83.33333%; } }
@media (max-width: 1200px) { .offset-10-below-large { margin-left: 83.33333%; } }
@media (min-width: 780px) { .offset-11 { margin-left: 91.66667%; } }
@media (min-width: 780px) { .offset-11-above-medium { margin-left: 91.66667%; } }
@media (max-width: 780px) { .offset-11-below-medium { margin-left: 91.66667%; } }
@media (min-width: 1200px) { .offset-11-above-large { margin-left: 91.66667%; } }
@media (max-width: 1200px) { .offset-11-below-large { margin-left: 91.66667%; } }
@media (min-width: 780px) { .offset-12 { margin-left: 100%; } }
@media (min-width: 780px) { .offset-12-above-medium { margin-left: 100%; } }
@media (max-width: 780px) { .offset-12-below-medium { margin-left: 100%; } }
@media (min-width: 1200px) { .offset-12-above-large { margin-left: 100%; } }
@media (max-width: 1200px) { .offset-12-below-large { margin-left: 100%; } }
.height-25 { height: 25%; }
@media (min-width: 780px) { .height-25-above-medium { height: 25%; } }
@media (max-width: 780px) { .height-25-below-medium { height: 25%; } }
@media (min-width: 1200px) { .height-25-above-large { height: 25%; } }
@media (max-width: 1200px) { .height-25-below-large { height: 25%; } }
.height-50 { height: 50%; }
@media (min-width: 780px) { .height-50-above-medium { height: 50%; } }
@media (max-width: 780px) { .height-50-below-medium { height: 50%; } }
@media (min-width: 1200px) { .height-50-above-large { height: 50%; } }
@media (max-width: 1200px) { .height-50-below-large { height: 50%; } }
.height-75 { height: 75%; }
@media (min-width: 780px) { .height-75-above-medium { height: 75%; } }
@media (max-width: 780px) { .height-75-below-medium { height: 75%; } }
@media (min-width: 1200px) { .height-75-above-large { height: 75%; } }
@media (max-width: 1200px) { .height-75-below-large { height: 75%; } }
.height-100 { height: 100%; }
@media (min-width: 780px) { .height-100-above-medium { height: 100%; } }
@media (max-width: 780px) { .height-100-below-medium { height: 100%; } }
@media (min-width: 1200px) { .height-100-above-large { height: 100%; } }
@media (max-width: 1200px) { .height-100-below-large { height: 100%; } }
.height-auto { height: auto !important; }
.left-0 { left: 0px; }
@media (min-width: 780px) { .left-0-above-medium { left: 0px; } }
@media (max-width: 780px) { .left-0-below-medium { left: 0px; } }
@media (min-width: 1200px) { .left-0-above-large { left: 0px; } }
@media (max-width: 1200px) { .left-0-below-large { left: 0px; } }
.left-1 { left: 5px; }
@media (min-width: 780px) { .left-1-above-medium { left: 5px; } }
@media (max-width: 780px) { .left-1-below-medium { left: 5px; } }
@media (min-width: 1200px) { .left-1-above-large { left: 5px; } }
@media (max-width: 1200px) { .left-1-below-large { left: 5px; } }
.left-2 { left: 10px; }
@media (min-width: 780px) { .left-2-above-medium { left: 10px; } }
@media (max-width: 780px) { .left-2-below-medium { left: 10px; } }
@media (min-width: 1200px) { .left-2-above-large { left: 10px; } }
@media (max-width: 1200px) { .left-2-below-large { left: 10px; } }
.left-3 { left: 15px; }
@media (min-width: 780px) { .left-3-above-medium { left: 15px; } }
@media (max-width: 780px) { .left-3-below-medium { left: 15px; } }
@media (min-width: 1200px) { .left-3-above-large { left: 15px; } }
@media (max-width: 1200px) { .left-3-below-large { left: 15px; } }
.left-4 { left: 20px; }
@media (min-width: 780px) { .left-4-above-medium { left: 20px; } }
@media (max-width: 780px) { .left-4-below-medium { left: 20px; } }
@media (min-width: 1200px) { .left-4-above-large { left: 20px; } }
@media (max-width: 1200px) { .left-4-below-large { left: 20px; } }
.left-5 { left: 25px; }
@media (min-width: 780px) { .left-5-above-medium { left: 25px; } }
@media (max-width: 780px) { .left-5-below-medium { left: 25px; } }
@media (min-width: 1200px) { .left-5-above-large { left: 25px; } }
@media (max-width: 1200px) { .left-5-below-large { left: 25px; } }
.left-6 { left: 30px; }
@media (min-width: 780px) { .left-6-above-medium { left: 30px; } }
@media (max-width: 780px) { .left-6-below-medium { left: 30px; } }
@media (min-width: 1200px) { .left-6-above-large { left: 30px; } }
@media (max-width: 1200px) { .left-6-below-large { left: 30px; } }
.left-7 { left: 35px; }
@media (min-width: 780px) { .left-7-above-medium { left: 35px; } }
@media (max-width: 780px) { .left-7-below-medium { left: 35px; } }
@media (min-width: 1200px) { .left-7-above-large { left: 35px; } }
@media (max-width: 1200px) { .left-7-below-large { left: 35px; } }
.left-8 { left: 40px; }
@media (min-width: 780px) { .left-8-above-medium { left: 40px; } }
@media (max-width: 780px) { .left-8-below-medium { left: 40px; } }
@media (min-width: 1200px) { .left-8-above-large { left: 40px; } }
@media (max-width: 1200px) { .left-8-below-large { left: 40px; } }
.left-9 { left: 45px; }
@media (min-width: 780px) { .left-9-above-medium { left: 45px; } }
@media (max-width: 780px) { .left-9-below-medium { left: 45px; } }
@media (min-width: 1200px) { .left-9-above-large { left: 45px; } }
@media (max-width: 1200px) { .left-9-below-large { left: 45px; } }
.left-10 { left: 50px; }
@media (min-width: 780px) { .left-10-above-medium { left: 50px; } }
@media (max-width: 780px) { .left-10-below-medium { left: 50px; } }
@media (min-width: 1200px) { .left-10-above-large { left: 50px; } }
@media (max-width: 1200px) { .left-10-below-large { left: 50px; } }
.left-11 { left: 55px; }
@media (min-width: 780px) { .left-11-above-medium { left: 55px; } }
@media (max-width: 780px) { .left-11-below-medium { left: 55px; } }
@media (min-width: 1200px) { .left-11-above-large { left: 55px; } }
@media (max-width: 1200px) { .left-11-below-large { left: 55px; } }
.left-12 { left: 60px; }
@media (min-width: 780px) { .left-12-above-medium { left: 60px; } }
@media (max-width: 780px) { .left-12-below-medium { left: 60px; } }
@media (min-width: 1200px) { .left-12-above-large { left: 60px; } }
@media (max-width: 1200px) { .left-12-below-large { left: 60px; } }
.left-13 { left: 65px; }
@media (min-width: 780px) { .left-13-above-medium { left: 65px; } }
@media (max-width: 780px) { .left-13-below-medium { left: 65px; } }
@media (min-width: 1200px) { .left-13-above-large { left: 65px; } }
@media (max-width: 1200px) { .left-13-below-large { left: 65px; } }
.left-14 { left: 70px; }
@media (min-width: 780px) { .left-14-above-medium { left: 70px; } }
@media (max-width: 780px) { .left-14-below-medium { left: 70px; } }
@media (min-width: 1200px) { .left-14-above-large { left: 70px; } }
@media (max-width: 1200px) { .left-14-below-large { left: 70px; } }
.left-15 { left: 75px; }
@media (min-width: 780px) { .left-15-above-medium { left: 75px; } }
@media (max-width: 780px) { .left-15-below-medium { left: 75px; } }
@media (min-width: 1200px) { .left-15-above-large { left: 75px; } }
@media (max-width: 1200px) { .left-15-below-large { left: 75px; } }
.left-auto { left: auto !important; }
.no-letter-spacing { letter-spacing: 0 !important; }
.line-height-small { line-height: 1.2; }
@media (min-width: 780px) { .line-height-small-above-medium { line-height: 1.2; } }
@media (max-width: 780px) { .line-height-small-below-medium { line-height: 1.2; } }
@media (min-width: 1200px) { .line-height-small-above-large { line-height: 1.2; } }
@media (max-width: 1200px) { .line-height-small-below-large { line-height: 1.2; } }
.line-height-medium { line-height: 1.5; }
@media (min-width: 780px) { .line-height-medium-above-medium { line-height: 1.5; } }
@media (max-width: 780px) { .line-height-medium-below-medium { line-height: 1.5; } }
@media (min-width: 1200px) { .line-height-medium-above-large { line-height: 1.5; } }
@media (max-width: 1200px) { .line-height-medium-below-large { line-height: 1.5; } }
.no-line-height { line-height: 1 !important; }
.margin-top-1 { margin-top: 5px; }
@media (min-width: 780px) { .margin-top-1-above-medium { margin-top: 5px; } }
@media (max-width: 780px) { .margin-top-1-below-medium { margin-top: 5px; } }
@media (min-width: 1200px) { .margin-top-1-above-large { margin-top: 5px; } }
@media (max-width: 1200px) { .margin-top-1-below-large { margin-top: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-right-1 { margin-right: 5px; }
@media (min-width: 780px) { .margin-right-1-above-medium { margin-right: 5px; } }
@media (max-width: 780px) { .margin-right-1-below-medium { margin-right: 5px; } }
@media (min-width: 1200px) { .margin-right-1-above-large { margin-right: 5px; } }
@media (max-width: 1200px) { .margin-right-1-below-large { margin-right: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-bottom-1 { margin-bottom: 5px; }
@media (min-width: 780px) { .margin-bottom-1-above-medium { margin-bottom: 5px; } }
@media (max-width: 780px) { .margin-bottom-1-below-medium { margin-bottom: 5px; } }
@media (min-width: 1200px) { .margin-bottom-1-above-large { margin-bottom: 5px; } }
@media (max-width: 1200px) { .margin-bottom-1-below-large { margin-bottom: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-left-1 { margin-left: 5px; }
@media (min-width: 780px) { .margin-left-1-above-medium { margin-left: 5px; } }
@media (max-width: 780px) { .margin-left-1-below-medium { margin-left: 5px; } }
@media (min-width: 1200px) { .margin-left-1-above-large { margin-left: 5px; } }
@media (max-width: 1200px) { .margin-left-1-below-large { margin-left: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-vertical-1 { margin-top: 5px; margin-bottom: 5px; }
@media (min-width: 780px) { .margin-vertical-1-above-medium { margin-top: 5px; margin-bottom: 5px; } }
@media (max-width: 780px) { .margin-vertical-1-below-medium { margin-top: 5px; margin-bottom: 5px; } }
@media (min-width: 1200px) { .margin-vertical-1-above-large { margin-top: 5px; margin-bottom: 5px; } }
@media (max-width: 1200px) { .margin-vertical-1-below-large { margin-top: 5px; margin-bottom: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-horizontal-1 { margin-left: 5px; margin-right: 5px; }
@media (min-width: 780px) { .margin-horizontal-1-above-medium { margin-left: 5px; margin-right: 5px; } }
@media (max-width: 780px) { .margin-horizontal-1-below-medium { margin-left: 5px; margin-right: 5px; } }
@media (min-width: 1200px) { .margin-horizontal-1-above-large { margin-left: 5px; margin-right: 5px; } }
@media (max-width: 1200px) { .margin-horizontal-1-below-large { margin-left: 5px; margin-right: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-top-2 { margin-top: 10px; }
@media (min-width: 780px) { .margin-top-2-above-medium { margin-top: 10px; } }
@media (max-width: 780px) { .margin-top-2-below-medium { margin-top: 10px; } }
@media (min-width: 1200px) { .margin-top-2-above-large { margin-top: 10px; } }
@media (max-width: 1200px) { .margin-top-2-below-large { margin-top: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-right-2 { margin-right: 10px; }
@media (min-width: 780px) { .margin-right-2-above-medium { margin-right: 10px; } }
@media (max-width: 780px) { .margin-right-2-below-medium { margin-right: 10px; } }
@media (min-width: 1200px) { .margin-right-2-above-large { margin-right: 10px; } }
@media (max-width: 1200px) { .margin-right-2-below-large { margin-right: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-bottom-2 { margin-bottom: 10px; }
@media (min-width: 780px) { .margin-bottom-2-above-medium { margin-bottom: 10px; } }
@media (max-width: 780px) { .margin-bottom-2-below-medium { margin-bottom: 10px; } }
@media (min-width: 1200px) { .margin-bottom-2-above-large { margin-bottom: 10px; } }
@media (max-width: 1200px) { .margin-bottom-2-below-large { margin-bottom: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-left-2 { margin-left: 10px; }
@media (min-width: 780px) { .margin-left-2-above-medium { margin-left: 10px; } }
@media (max-width: 780px) { .margin-left-2-below-medium { margin-left: 10px; } }
@media (min-width: 1200px) { .margin-left-2-above-large { margin-left: 10px; } }
@media (max-width: 1200px) { .margin-left-2-below-large { margin-left: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-vertical-2 { margin-top: 10px; margin-bottom: 10px; }
@media (min-width: 780px) { .margin-vertical-2-above-medium { margin-top: 10px; margin-bottom: 10px; } }
@media (max-width: 780px) { .margin-vertical-2-below-medium { margin-top: 10px; margin-bottom: 10px; } }
@media (min-width: 1200px) { .margin-vertical-2-above-large { margin-top: 10px; margin-bottom: 10px; } }
@media (max-width: 1200px) { .margin-vertical-2-below-large { margin-top: 10px; margin-bottom: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-horizontal-2 { margin-left: 10px; margin-right: 10px; }
@media (min-width: 780px) { .margin-horizontal-2-above-medium { margin-left: 10px; margin-right: 10px; } }
@media (max-width: 780px) { .margin-horizontal-2-below-medium { margin-left: 10px; margin-right: 10px; } }
@media (min-width: 1200px) { .margin-horizontal-2-above-large { margin-left: 10px; margin-right: 10px; } }
@media (max-width: 1200px) { .margin-horizontal-2-below-large { margin-left: 10px; margin-right: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-top-3 { margin-top: 15px; }
@media (min-width: 780px) { .margin-top-3-above-medium { margin-top: 15px; } }
@media (max-width: 780px) { .margin-top-3-below-medium { margin-top: 15px; } }
@media (min-width: 1200px) { .margin-top-3-above-large { margin-top: 15px; } }
@media (max-width: 1200px) { .margin-top-3-below-large { margin-top: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-right-3 { margin-right: 15px; }
@media (min-width: 780px) { .margin-right-3-above-medium { margin-right: 15px; } }
@media (max-width: 780px) { .margin-right-3-below-medium { margin-right: 15px; } }
@media (min-width: 1200px) { .margin-right-3-above-large { margin-right: 15px; } }
@media (max-width: 1200px) { .margin-right-3-below-large { margin-right: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-bottom-3 { margin-bottom: 15px; }
@media (min-width: 780px) { .margin-bottom-3-above-medium { margin-bottom: 15px; } }
@media (max-width: 780px) { .margin-bottom-3-below-medium { margin-bottom: 15px; } }
@media (min-width: 1200px) { .margin-bottom-3-above-large { margin-bottom: 15px; } }
@media (max-width: 1200px) { .margin-bottom-3-below-large { margin-bottom: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-left-3 { margin-left: 15px; }
@media (min-width: 780px) { .margin-left-3-above-medium { margin-left: 15px; } }
@media (max-width: 780px) { .margin-left-3-below-medium { margin-left: 15px; } }
@media (min-width: 1200px) { .margin-left-3-above-large { margin-left: 15px; } }
@media (max-width: 1200px) { .margin-left-3-below-large { margin-left: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-vertical-3 { margin-top: 15px; margin-bottom: 15px; }
@media (min-width: 780px) { .margin-vertical-3-above-medium { margin-top: 15px; margin-bottom: 15px; } }
@media (max-width: 780px) { .margin-vertical-3-below-medium { margin-top: 15px; margin-bottom: 15px; } }
@media (min-width: 1200px) { .margin-vertical-3-above-large { margin-top: 15px; margin-bottom: 15px; } }
@media (max-width: 1200px) { .margin-vertical-3-below-large { margin-top: 15px; margin-bottom: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-horizontal-3 { margin-left: 15px; margin-right: 15px; }
@media (min-width: 780px) { .margin-horizontal-3-above-medium { margin-left: 15px; margin-right: 15px; } }
@media (max-width: 780px) { .margin-horizontal-3-below-medium { margin-left: 15px; margin-right: 15px; } }
@media (min-width: 1200px) { .margin-horizontal-3-above-large { margin-left: 15px; margin-right: 15px; } }
@media (max-width: 1200px) { .margin-horizontal-3-below-large { margin-left: 15px; margin-right: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-top-4 { margin-top: 20px; }
@media (min-width: 780px) { .margin-top-4-above-medium { margin-top: 20px; } }
@media (max-width: 780px) { .margin-top-4-below-medium { margin-top: 20px; } }
@media (min-width: 1200px) { .margin-top-4-above-large { margin-top: 20px; } }
@media (max-width: 1200px) { .margin-top-4-below-large { margin-top: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-right-4 { margin-right: 20px; }
@media (min-width: 780px) { .margin-right-4-above-medium { margin-right: 20px; } }
@media (max-width: 780px) { .margin-right-4-below-medium { margin-right: 20px; } }
@media (min-width: 1200px) { .margin-right-4-above-large { margin-right: 20px; } }
@media (max-width: 1200px) { .margin-right-4-below-large { margin-right: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-bottom-4 { margin-bottom: 20px; }
@media (min-width: 780px) { .margin-bottom-4-above-medium { margin-bottom: 20px; } }
@media (max-width: 780px) { .margin-bottom-4-below-medium { margin-bottom: 20px; } }
@media (min-width: 1200px) { .margin-bottom-4-above-large { margin-bottom: 20px; } }
@media (max-width: 1200px) { .margin-bottom-4-below-large { margin-bottom: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-left-4 { margin-left: 20px; }
@media (min-width: 780px) { .margin-left-4-above-medium { margin-left: 20px; } }
@media (max-width: 780px) { .margin-left-4-below-medium { margin-left: 20px; } }
@media (min-width: 1200px) { .margin-left-4-above-large { margin-left: 20px; } }
@media (max-width: 1200px) { .margin-left-4-below-large { margin-left: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-vertical-4 { margin-top: 20px; margin-bottom: 20px; }
@media (min-width: 780px) { .margin-vertical-4-above-medium { margin-top: 20px; margin-bottom: 20px; } }
@media (max-width: 780px) { .margin-vertical-4-below-medium { margin-top: 20px; margin-bottom: 20px; } }
@media (min-width: 1200px) { .margin-vertical-4-above-large { margin-top: 20px; margin-bottom: 20px; } }
@media (max-width: 1200px) { .margin-vertical-4-below-large { margin-top: 20px; margin-bottom: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-horizontal-4 { margin-left: 20px; margin-right: 20px; }
@media (min-width: 780px) { .margin-horizontal-4-above-medium { margin-left: 20px; margin-right: 20px; } }
@media (max-width: 780px) { .margin-horizontal-4-below-medium { margin-left: 20px; margin-right: 20px; } }
@media (min-width: 1200px) { .margin-horizontal-4-above-large { margin-left: 20px; margin-right: 20px; } }
@media (max-width: 1200px) { .margin-horizontal-4-below-large { margin-left: 20px; margin-right: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-top-5 { margin-top: 25px; }
@media (min-width: 780px) { .margin-top-5-above-medium { margin-top: 25px; } }
@media (max-width: 780px) { .margin-top-5-below-medium { margin-top: 25px; } }
@media (min-width: 1200px) { .margin-top-5-above-large { margin-top: 25px; } }
@media (max-width: 1200px) { .margin-top-5-below-large { margin-top: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-right-5 { margin-right: 25px; }
@media (min-width: 780px) { .margin-right-5-above-medium { margin-right: 25px; } }
@media (max-width: 780px) { .margin-right-5-below-medium { margin-right: 25px; } }
@media (min-width: 1200px) { .margin-right-5-above-large { margin-right: 25px; } }
@media (max-width: 1200px) { .margin-right-5-below-large { margin-right: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-bottom-5 { margin-bottom: 25px; }
@media (min-width: 780px) { .margin-bottom-5-above-medium { margin-bottom: 25px; } }
@media (max-width: 780px) { .margin-bottom-5-below-medium { margin-bottom: 25px; } }
@media (min-width: 1200px) { .margin-bottom-5-above-large { margin-bottom: 25px; } }
@media (max-width: 1200px) { .margin-bottom-5-below-large { margin-bottom: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-left-5 { margin-left: 25px; }
@media (min-width: 780px) { .margin-left-5-above-medium { margin-left: 25px; } }
@media (max-width: 780px) { .margin-left-5-below-medium { margin-left: 25px; } }
@media (min-width: 1200px) { .margin-left-5-above-large { margin-left: 25px; } }
@media (max-width: 1200px) { .margin-left-5-below-large { margin-left: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-vertical-5 { margin-top: 25px; margin-bottom: 25px; }
@media (min-width: 780px) { .margin-vertical-5-above-medium { margin-top: 25px; margin-bottom: 25px; } }
@media (max-width: 780px) { .margin-vertical-5-below-medium { margin-top: 25px; margin-bottom: 25px; } }
@media (min-width: 1200px) { .margin-vertical-5-above-large { margin-top: 25px; margin-bottom: 25px; } }
@media (max-width: 1200px) { .margin-vertical-5-below-large { margin-top: 25px; margin-bottom: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-horizontal-5 { margin-left: 25px; margin-right: 25px; }
@media (min-width: 780px) { .margin-horizontal-5-above-medium { margin-left: 25px; margin-right: 25px; } }
@media (max-width: 780px) { .margin-horizontal-5-below-medium { margin-left: 25px; margin-right: 25px; } }
@media (min-width: 1200px) { .margin-horizontal-5-above-large { margin-left: 25px; margin-right: 25px; } }
@media (max-width: 1200px) { .margin-horizontal-5-below-large { margin-left: 25px; margin-right: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-top-6 { margin-top: 30px; }
@media (min-width: 780px) { .margin-top-6-above-medium { margin-top: 30px; } }
@media (max-width: 780px) { .margin-top-6-below-medium { margin-top: 30px; } }
@media (min-width: 1200px) { .margin-top-6-above-large { margin-top: 30px; } }
@media (max-width: 1200px) { .margin-top-6-below-large { margin-top: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-right-6 { margin-right: 30px; }
@media (min-width: 780px) { .margin-right-6-above-medium { margin-right: 30px; } }
@media (max-width: 780px) { .margin-right-6-below-medium { margin-right: 30px; } }
@media (min-width: 1200px) { .margin-right-6-above-large { margin-right: 30px; } }
@media (max-width: 1200px) { .margin-right-6-below-large { margin-right: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-bottom-6 { margin-bottom: 30px; }
@media (min-width: 780px) { .margin-bottom-6-above-medium { margin-bottom: 30px; } }
@media (max-width: 780px) { .margin-bottom-6-below-medium { margin-bottom: 30px; } }
@media (min-width: 1200px) { .margin-bottom-6-above-large { margin-bottom: 30px; } }
@media (max-width: 1200px) { .margin-bottom-6-below-large { margin-bottom: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-left-6 { margin-left: 30px; }
@media (min-width: 780px) { .margin-left-6-above-medium { margin-left: 30px; } }
@media (max-width: 780px) { .margin-left-6-below-medium { margin-left: 30px; } }
@media (min-width: 1200px) { .margin-left-6-above-large { margin-left: 30px; } }
@media (max-width: 1200px) { .margin-left-6-below-large { margin-left: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-vertical-6 { margin-top: 30px; margin-bottom: 30px; }
@media (min-width: 780px) { .margin-vertical-6-above-medium { margin-top: 30px; margin-bottom: 30px; } }
@media (max-width: 780px) { .margin-vertical-6-below-medium { margin-top: 30px; margin-bottom: 30px; } }
@media (min-width: 1200px) { .margin-vertical-6-above-large { margin-top: 30px; margin-bottom: 30px; } }
@media (max-width: 1200px) { .margin-vertical-6-below-large { margin-top: 30px; margin-bottom: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-horizontal-6 { margin-left: 30px; margin-right: 30px; }
@media (min-width: 780px) { .margin-horizontal-6-above-medium { margin-left: 30px; margin-right: 30px; } }
@media (max-width: 780px) { .margin-horizontal-6-below-medium { margin-left: 30px; margin-right: 30px; } }
@media (min-width: 1200px) { .margin-horizontal-6-above-large { margin-left: 30px; margin-right: 30px; } }
@media (max-width: 1200px) { .margin-horizontal-6-below-large { margin-left: 30px; margin-right: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-top-7 { margin-top: 35px; }
@media (min-width: 780px) { .margin-top-7-above-medium { margin-top: 35px; } }
@media (max-width: 780px) { .margin-top-7-below-medium { margin-top: 35px; } }
@media (min-width: 1200px) { .margin-top-7-above-large { margin-top: 35px; } }
@media (max-width: 1200px) { .margin-top-7-below-large { margin-top: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-right-7 { margin-right: 35px; }
@media (min-width: 780px) { .margin-right-7-above-medium { margin-right: 35px; } }
@media (max-width: 780px) { .margin-right-7-below-medium { margin-right: 35px; } }
@media (min-width: 1200px) { .margin-right-7-above-large { margin-right: 35px; } }
@media (max-width: 1200px) { .margin-right-7-below-large { margin-right: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-bottom-7 { margin-bottom: 35px; }
@media (min-width: 780px) { .margin-bottom-7-above-medium { margin-bottom: 35px; } }
@media (max-width: 780px) { .margin-bottom-7-below-medium { margin-bottom: 35px; } }
@media (min-width: 1200px) { .margin-bottom-7-above-large { margin-bottom: 35px; } }
@media (max-width: 1200px) { .margin-bottom-7-below-large { margin-bottom: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-left-7 { margin-left: 35px; }
@media (min-width: 780px) { .margin-left-7-above-medium { margin-left: 35px; } }
@media (max-width: 780px) { .margin-left-7-below-medium { margin-left: 35px; } }
@media (min-width: 1200px) { .margin-left-7-above-large { margin-left: 35px; } }
@media (max-width: 1200px) { .margin-left-7-below-large { margin-left: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-vertical-7 { margin-top: 35px; margin-bottom: 35px; }
@media (min-width: 780px) { .margin-vertical-7-above-medium { margin-top: 35px; margin-bottom: 35px; } }
@media (max-width: 780px) { .margin-vertical-7-below-medium { margin-top: 35px; margin-bottom: 35px; } }
@media (min-width: 1200px) { .margin-vertical-7-above-large { margin-top: 35px; margin-bottom: 35px; } }
@media (max-width: 1200px) { .margin-vertical-7-below-large { margin-top: 35px; margin-bottom: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-horizontal-7 { margin-left: 35px; margin-right: 35px; }
@media (min-width: 780px) { .margin-horizontal-7-above-medium { margin-left: 35px; margin-right: 35px; } }
@media (max-width: 780px) { .margin-horizontal-7-below-medium { margin-left: 35px; margin-right: 35px; } }
@media (min-width: 1200px) { .margin-horizontal-7-above-large { margin-left: 35px; margin-right: 35px; } }
@media (max-width: 1200px) { .margin-horizontal-7-below-large { margin-left: 35px; margin-right: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-top-8 { margin-top: 40px; }
@media (min-width: 780px) { .margin-top-8-above-medium { margin-top: 40px; } }
@media (max-width: 780px) { .margin-top-8-below-medium { margin-top: 40px; } }
@media (min-width: 1200px) { .margin-top-8-above-large { margin-top: 40px; } }
@media (max-width: 1200px) { .margin-top-8-below-large { margin-top: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-right-8 { margin-right: 40px; }
@media (min-width: 780px) { .margin-right-8-above-medium { margin-right: 40px; } }
@media (max-width: 780px) { .margin-right-8-below-medium { margin-right: 40px; } }
@media (min-width: 1200px) { .margin-right-8-above-large { margin-right: 40px; } }
@media (max-width: 1200px) { .margin-right-8-below-large { margin-right: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-bottom-8 { margin-bottom: 40px; }
@media (min-width: 780px) { .margin-bottom-8-above-medium { margin-bottom: 40px; } }
@media (max-width: 780px) { .margin-bottom-8-below-medium { margin-bottom: 40px; } }
@media (min-width: 1200px) { .margin-bottom-8-above-large { margin-bottom: 40px; } }
@media (max-width: 1200px) { .margin-bottom-8-below-large { margin-bottom: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-left-8 { margin-left: 40px; }
@media (min-width: 780px) { .margin-left-8-above-medium { margin-left: 40px; } }
@media (max-width: 780px) { .margin-left-8-below-medium { margin-left: 40px; } }
@media (min-width: 1200px) { .margin-left-8-above-large { margin-left: 40px; } }
@media (max-width: 1200px) { .margin-left-8-below-large { margin-left: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-vertical-8 { margin-top: 40px; margin-bottom: 40px; }
@media (min-width: 780px) { .margin-vertical-8-above-medium { margin-top: 40px; margin-bottom: 40px; } }
@media (max-width: 780px) { .margin-vertical-8-below-medium { margin-top: 40px; margin-bottom: 40px; } }
@media (min-width: 1200px) { .margin-vertical-8-above-large { margin-top: 40px; margin-bottom: 40px; } }
@media (max-width: 1200px) { .margin-vertical-8-below-large { margin-top: 40px; margin-bottom: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-horizontal-8 { margin-left: 40px; margin-right: 40px; }
@media (min-width: 780px) { .margin-horizontal-8-above-medium { margin-left: 40px; margin-right: 40px; } }
@media (max-width: 780px) { .margin-horizontal-8-below-medium { margin-left: 40px; margin-right: 40px; } }
@media (min-width: 1200px) { .margin-horizontal-8-above-large { margin-left: 40px; margin-right: 40px; } }
@media (max-width: 1200px) { .margin-horizontal-8-below-large { margin-left: 40px; margin-right: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-top-9 { margin-top: 45px; }
@media (min-width: 780px) { .margin-top-9-above-medium { margin-top: 45px; } }
@media (max-width: 780px) { .margin-top-9-below-medium { margin-top: 45px; } }
@media (min-width: 1200px) { .margin-top-9-above-large { margin-top: 45px; } }
@media (max-width: 1200px) { .margin-top-9-below-large { margin-top: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-right-9 { margin-right: 45px; }
@media (min-width: 780px) { .margin-right-9-above-medium { margin-right: 45px; } }
@media (max-width: 780px) { .margin-right-9-below-medium { margin-right: 45px; } }
@media (min-width: 1200px) { .margin-right-9-above-large { margin-right: 45px; } }
@media (max-width: 1200px) { .margin-right-9-below-large { margin-right: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-bottom-9 { margin-bottom: 45px; }
@media (min-width: 780px) { .margin-bottom-9-above-medium { margin-bottom: 45px; } }
@media (max-width: 780px) { .margin-bottom-9-below-medium { margin-bottom: 45px; } }
@media (min-width: 1200px) { .margin-bottom-9-above-large { margin-bottom: 45px; } }
@media (max-width: 1200px) { .margin-bottom-9-below-large { margin-bottom: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-left-9 { margin-left: 45px; }
@media (min-width: 780px) { .margin-left-9-above-medium { margin-left: 45px; } }
@media (max-width: 780px) { .margin-left-9-below-medium { margin-left: 45px; } }
@media (min-width: 1200px) { .margin-left-9-above-large { margin-left: 45px; } }
@media (max-width: 1200px) { .margin-left-9-below-large { margin-left: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-vertical-9 { margin-top: 45px; margin-bottom: 45px; }
@media (min-width: 780px) { .margin-vertical-9-above-medium { margin-top: 45px; margin-bottom: 45px; } }
@media (max-width: 780px) { .margin-vertical-9-below-medium { margin-top: 45px; margin-bottom: 45px; } }
@media (min-width: 1200px) { .margin-vertical-9-above-large { margin-top: 45px; margin-bottom: 45px; } }
@media (max-width: 1200px) { .margin-vertical-9-below-large { margin-top: 45px; margin-bottom: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-horizontal-9 { margin-left: 45px; margin-right: 45px; }
@media (min-width: 780px) { .margin-horizontal-9-above-medium { margin-left: 45px; margin-right: 45px; } }
@media (max-width: 780px) { .margin-horizontal-9-below-medium { margin-left: 45px; margin-right: 45px; } }
@media (min-width: 1200px) { .margin-horizontal-9-above-large { margin-left: 45px; margin-right: 45px; } }
@media (max-width: 1200px) { .margin-horizontal-9-below-large { margin-left: 45px; margin-right: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-top-10 { margin-top: 50px; }
@media (min-width: 780px) { .margin-top-10-above-medium { margin-top: 50px; } }
@media (max-width: 780px) { .margin-top-10-below-medium { margin-top: 50px; } }
@media (min-width: 1200px) { .margin-top-10-above-large { margin-top: 50px; } }
@media (max-width: 1200px) { .margin-top-10-below-large { margin-top: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-right-10 { margin-right: 50px; }
@media (min-width: 780px) { .margin-right-10-above-medium { margin-right: 50px; } }
@media (max-width: 780px) { .margin-right-10-below-medium { margin-right: 50px; } }
@media (min-width: 1200px) { .margin-right-10-above-large { margin-right: 50px; } }
@media (max-width: 1200px) { .margin-right-10-below-large { margin-right: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-bottom-10 { margin-bottom: 50px; }
@media (min-width: 780px) { .margin-bottom-10-above-medium { margin-bottom: 50px; } }
@media (max-width: 780px) { .margin-bottom-10-below-medium { margin-bottom: 50px; } }
@media (min-width: 1200px) { .margin-bottom-10-above-large { margin-bottom: 50px; } }
@media (max-width: 1200px) { .margin-bottom-10-below-large { margin-bottom: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-left-10 { margin-left: 50px; }
@media (min-width: 780px) { .margin-left-10-above-medium { margin-left: 50px; } }
@media (max-width: 780px) { .margin-left-10-below-medium { margin-left: 50px; } }
@media (min-width: 1200px) { .margin-left-10-above-large { margin-left: 50px; } }
@media (max-width: 1200px) { .margin-left-10-below-large { margin-left: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-vertical-10 { margin-top: 50px; margin-bottom: 50px; }
@media (min-width: 780px) { .margin-vertical-10-above-medium { margin-top: 50px; margin-bottom: 50px; } }
@media (max-width: 780px) { .margin-vertical-10-below-medium { margin-top: 50px; margin-bottom: 50px; } }
@media (min-width: 1200px) { .margin-vertical-10-above-large { margin-top: 50px; margin-bottom: 50px; } }
@media (max-width: 1200px) { .margin-vertical-10-below-large { margin-top: 50px; margin-bottom: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-horizontal-10 { margin-left: 50px; margin-right: 50px; }
@media (min-width: 780px) { .margin-horizontal-10-above-medium { margin-left: 50px; margin-right: 50px; } }
@media (max-width: 780px) { .margin-horizontal-10-below-medium { margin-left: 50px; margin-right: 50px; } }
@media (min-width: 1200px) { .margin-horizontal-10-above-large { margin-left: 50px; margin-right: 50px; } }
@media (max-width: 1200px) { .margin-horizontal-10-below-large { margin-left: 50px; margin-right: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-top-11 { margin-top: 55px; }
@media (min-width: 780px) { .margin-top-11-above-medium { margin-top: 55px; } }
@media (max-width: 780px) { .margin-top-11-below-medium { margin-top: 55px; } }
@media (min-width: 1200px) { .margin-top-11-above-large { margin-top: 55px; } }
@media (max-width: 1200px) { .margin-top-11-below-large { margin-top: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-right-11 { margin-right: 55px; }
@media (min-width: 780px) { .margin-right-11-above-medium { margin-right: 55px; } }
@media (max-width: 780px) { .margin-right-11-below-medium { margin-right: 55px; } }
@media (min-width: 1200px) { .margin-right-11-above-large { margin-right: 55px; } }
@media (max-width: 1200px) { .margin-right-11-below-large { margin-right: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-bottom-11 { margin-bottom: 55px; }
@media (min-width: 780px) { .margin-bottom-11-above-medium { margin-bottom: 55px; } }
@media (max-width: 780px) { .margin-bottom-11-below-medium { margin-bottom: 55px; } }
@media (min-width: 1200px) { .margin-bottom-11-above-large { margin-bottom: 55px; } }
@media (max-width: 1200px) { .margin-bottom-11-below-large { margin-bottom: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-left-11 { margin-left: 55px; }
@media (min-width: 780px) { .margin-left-11-above-medium { margin-left: 55px; } }
@media (max-width: 780px) { .margin-left-11-below-medium { margin-left: 55px; } }
@media (min-width: 1200px) { .margin-left-11-above-large { margin-left: 55px; } }
@media (max-width: 1200px) { .margin-left-11-below-large { margin-left: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-vertical-11 { margin-top: 55px; margin-bottom: 55px; }
@media (min-width: 780px) { .margin-vertical-11-above-medium { margin-top: 55px; margin-bottom: 55px; } }
@media (max-width: 780px) { .margin-vertical-11-below-medium { margin-top: 55px; margin-bottom: 55px; } }
@media (min-width: 1200px) { .margin-vertical-11-above-large { margin-top: 55px; margin-bottom: 55px; } }
@media (max-width: 1200px) { .margin-vertical-11-below-large { margin-top: 55px; margin-bottom: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-horizontal-11 { margin-left: 55px; margin-right: 55px; }
@media (min-width: 780px) { .margin-horizontal-11-above-medium { margin-left: 55px; margin-right: 55px; } }
@media (max-width: 780px) { .margin-horizontal-11-below-medium { margin-left: 55px; margin-right: 55px; } }
@media (min-width: 1200px) { .margin-horizontal-11-above-large { margin-left: 55px; margin-right: 55px; } }
@media (max-width: 1200px) { .margin-horizontal-11-below-large { margin-left: 55px; margin-right: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-top-12 { margin-top: 60px; }
@media (min-width: 780px) { .margin-top-12-above-medium { margin-top: 60px; } }
@media (max-width: 780px) { .margin-top-12-below-medium { margin-top: 60px; } }
@media (min-width: 1200px) { .margin-top-12-above-large { margin-top: 60px; } }
@media (max-width: 1200px) { .margin-top-12-below-large { margin-top: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-right-12 { margin-right: 60px; }
@media (min-width: 780px) { .margin-right-12-above-medium { margin-right: 60px; } }
@media (max-width: 780px) { .margin-right-12-below-medium { margin-right: 60px; } }
@media (min-width: 1200px) { .margin-right-12-above-large { margin-right: 60px; } }
@media (max-width: 1200px) { .margin-right-12-below-large { margin-right: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-bottom-12 { margin-bottom: 60px; }
@media (min-width: 780px) { .margin-bottom-12-above-medium { margin-bottom: 60px; } }
@media (max-width: 780px) { .margin-bottom-12-below-medium { margin-bottom: 60px; } }
@media (min-width: 1200px) { .margin-bottom-12-above-large { margin-bottom: 60px; } }
@media (max-width: 1200px) { .margin-bottom-12-below-large { margin-bottom: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-left-12 { margin-left: 60px; }
@media (min-width: 780px) { .margin-left-12-above-medium { margin-left: 60px; } }
@media (max-width: 780px) { .margin-left-12-below-medium { margin-left: 60px; } }
@media (min-width: 1200px) { .margin-left-12-above-large { margin-left: 60px; } }
@media (max-width: 1200px) { .margin-left-12-below-large { margin-left: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-vertical-12 { margin-top: 60px; margin-bottom: 60px; }
@media (min-width: 780px) { .margin-vertical-12-above-medium { margin-top: 60px; margin-bottom: 60px; } }
@media (max-width: 780px) { .margin-vertical-12-below-medium { margin-top: 60px; margin-bottom: 60px; } }
@media (min-width: 1200px) { .margin-vertical-12-above-large { margin-top: 60px; margin-bottom: 60px; } }
@media (max-width: 1200px) { .margin-vertical-12-below-large { margin-top: 60px; margin-bottom: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-horizontal-12 { margin-left: 60px; margin-right: 60px; }
@media (min-width: 780px) { .margin-horizontal-12-above-medium { margin-left: 60px; margin-right: 60px; } }
@media (max-width: 780px) { .margin-horizontal-12-below-medium { margin-left: 60px; margin-right: 60px; } }
@media (min-width: 1200px) { .margin-horizontal-12-above-large { margin-left: 60px; margin-right: 60px; } }
@media (max-width: 1200px) { .margin-horizontal-12-below-large { margin-left: 60px; margin-right: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-top-13 { margin-top: 65px; }
@media (min-width: 780px) { .margin-top-13-above-medium { margin-top: 65px; } }
@media (max-width: 780px) { .margin-top-13-below-medium { margin-top: 65px; } }
@media (min-width: 1200px) { .margin-top-13-above-large { margin-top: 65px; } }
@media (max-width: 1200px) { .margin-top-13-below-large { margin-top: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-right-13 { margin-right: 65px; }
@media (min-width: 780px) { .margin-right-13-above-medium { margin-right: 65px; } }
@media (max-width: 780px) { .margin-right-13-below-medium { margin-right: 65px; } }
@media (min-width: 1200px) { .margin-right-13-above-large { margin-right: 65px; } }
@media (max-width: 1200px) { .margin-right-13-below-large { margin-right: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-bottom-13 { margin-bottom: 65px; }
@media (min-width: 780px) { .margin-bottom-13-above-medium { margin-bottom: 65px; } }
@media (max-width: 780px) { .margin-bottom-13-below-medium { margin-bottom: 65px; } }
@media (min-width: 1200px) { .margin-bottom-13-above-large { margin-bottom: 65px; } }
@media (max-width: 1200px) { .margin-bottom-13-below-large { margin-bottom: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-left-13 { margin-left: 65px; }
@media (min-width: 780px) { .margin-left-13-above-medium { margin-left: 65px; } }
@media (max-width: 780px) { .margin-left-13-below-medium { margin-left: 65px; } }
@media (min-width: 1200px) { .margin-left-13-above-large { margin-left: 65px; } }
@media (max-width: 1200px) { .margin-left-13-below-large { margin-left: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-vertical-13 { margin-top: 65px; margin-bottom: 65px; }
@media (min-width: 780px) { .margin-vertical-13-above-medium { margin-top: 65px; margin-bottom: 65px; } }
@media (max-width: 780px) { .margin-vertical-13-below-medium { margin-top: 65px; margin-bottom: 65px; } }
@media (min-width: 1200px) { .margin-vertical-13-above-large { margin-top: 65px; margin-bottom: 65px; } }
@media (max-width: 1200px) { .margin-vertical-13-below-large { margin-top: 65px; margin-bottom: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-horizontal-13 { margin-left: 65px; margin-right: 65px; }
@media (min-width: 780px) { .margin-horizontal-13-above-medium { margin-left: 65px; margin-right: 65px; } }
@media (max-width: 780px) { .margin-horizontal-13-below-medium { margin-left: 65px; margin-right: 65px; } }
@media (min-width: 1200px) { .margin-horizontal-13-above-large { margin-left: 65px; margin-right: 65px; } }
@media (max-width: 1200px) { .margin-horizontal-13-below-large { margin-left: 65px; margin-right: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-top-14 { margin-top: 70px; }
@media (min-width: 780px) { .margin-top-14-above-medium { margin-top: 70px; } }
@media (max-width: 780px) { .margin-top-14-below-medium { margin-top: 70px; } }
@media (min-width: 1200px) { .margin-top-14-above-large { margin-top: 70px; } }
@media (max-width: 1200px) { .margin-top-14-below-large { margin-top: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-right-14 { margin-right: 70px; }
@media (min-width: 780px) { .margin-right-14-above-medium { margin-right: 70px; } }
@media (max-width: 780px) { .margin-right-14-below-medium { margin-right: 70px; } }
@media (min-width: 1200px) { .margin-right-14-above-large { margin-right: 70px; } }
@media (max-width: 1200px) { .margin-right-14-below-large { margin-right: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-bottom-14 { margin-bottom: 70px; }
@media (min-width: 780px) { .margin-bottom-14-above-medium { margin-bottom: 70px; } }
@media (max-width: 780px) { .margin-bottom-14-below-medium { margin-bottom: 70px; } }
@media (min-width: 1200px) { .margin-bottom-14-above-large { margin-bottom: 70px; } }
@media (max-width: 1200px) { .margin-bottom-14-below-large { margin-bottom: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-left-14 { margin-left: 70px; }
@media (min-width: 780px) { .margin-left-14-above-medium { margin-left: 70px; } }
@media (max-width: 780px) { .margin-left-14-below-medium { margin-left: 70px; } }
@media (min-width: 1200px) { .margin-left-14-above-large { margin-left: 70px; } }
@media (max-width: 1200px) { .margin-left-14-below-large { margin-left: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-vertical-14 { margin-top: 70px; margin-bottom: 70px; }
@media (min-width: 780px) { .margin-vertical-14-above-medium { margin-top: 70px; margin-bottom: 70px; } }
@media (max-width: 780px) { .margin-vertical-14-below-medium { margin-top: 70px; margin-bottom: 70px; } }
@media (min-width: 1200px) { .margin-vertical-14-above-large { margin-top: 70px; margin-bottom: 70px; } }
@media (max-width: 1200px) { .margin-vertical-14-below-large { margin-top: 70px; margin-bottom: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-horizontal-14 { margin-left: 70px; margin-right: 70px; }
@media (min-width: 780px) { .margin-horizontal-14-above-medium { margin-left: 70px; margin-right: 70px; } }
@media (max-width: 780px) { .margin-horizontal-14-below-medium { margin-left: 70px; margin-right: 70px; } }
@media (min-width: 1200px) { .margin-horizontal-14-above-large { margin-left: 70px; margin-right: 70px; } }
@media (max-width: 1200px) { .margin-horizontal-14-below-large { margin-left: 70px; margin-right: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-top-15 { margin-top: 75px; }
@media (min-width: 780px) { .margin-top-15-above-medium { margin-top: 75px; } }
@media (max-width: 780px) { .margin-top-15-below-medium { margin-top: 75px; } }
@media (min-width: 1200px) { .margin-top-15-above-large { margin-top: 75px; } }
@media (max-width: 1200px) { .margin-top-15-below-large { margin-top: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-right-15 { margin-right: 75px; }
@media (min-width: 780px) { .margin-right-15-above-medium { margin-right: 75px; } }
@media (max-width: 780px) { .margin-right-15-below-medium { margin-right: 75px; } }
@media (min-width: 1200px) { .margin-right-15-above-large { margin-right: 75px; } }
@media (max-width: 1200px) { .margin-right-15-below-large { margin-right: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-bottom-15 { margin-bottom: 75px; }
@media (min-width: 780px) { .margin-bottom-15-above-medium { margin-bottom: 75px; } }
@media (max-width: 780px) { .margin-bottom-15-below-medium { margin-bottom: 75px; } }
@media (min-width: 1200px) { .margin-bottom-15-above-large { margin-bottom: 75px; } }
@media (max-width: 1200px) { .margin-bottom-15-below-large { margin-bottom: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-left-15 { margin-left: 75px; }
@media (min-width: 780px) { .margin-left-15-above-medium { margin-left: 75px; } }
@media (max-width: 780px) { .margin-left-15-below-medium { margin-left: 75px; } }
@media (min-width: 1200px) { .margin-left-15-above-large { margin-left: 75px; } }
@media (max-width: 1200px) { .margin-left-15-below-large { margin-left: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-vertical-15 { margin-top: 75px; margin-bottom: 75px; }
@media (min-width: 780px) { .margin-vertical-15-above-medium { margin-top: 75px; margin-bottom: 75px; } }
@media (max-width: 780px) { .margin-vertical-15-below-medium { margin-top: 75px; margin-bottom: 75px; } }
@media (min-width: 1200px) { .margin-vertical-15-above-large { margin-top: 75px; margin-bottom: 75px; } }
@media (max-width: 1200px) { .margin-vertical-15-below-large { margin-top: 75px; margin-bottom: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-horizontal-15 { margin-left: 75px; margin-right: 75px; }
@media (min-width: 780px) { .margin-horizontal-15-above-medium { margin-left: 75px; margin-right: 75px; } }
@media (max-width: 780px) { .margin-horizontal-15-below-medium { margin-left: 75px; margin-right: 75px; } }
@media (min-width: 1200px) { .margin-horizontal-15-above-large { margin-left: 75px; margin-right: 75px; } }
@media (max-width: 1200px) { .margin-horizontal-15-below-large { margin-left: 75px; margin-right: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.no-margin { margin: 0 !important; }
@media (min-width: 780px) { .no-margin-above-medium { margin: 0 !important; } }
@media (max-width: 780px) { .no-margin-below-medium { margin: 0 !important; } }
@media (min-width: 1200px) { .no-margin-above-large { margin: 0 !important; } }
@media (max-width: 1200px) { .no-margin-below-large { margin: 0 !important; } }
.no-margin-last:last-of-type { margin: 0 !important; }
.margin-auto { margin: 0 auto; }
@media (min-width: 780px) { .margin-auto-above-medium { margin: 0 auto; } }
@media (max-width: 780px) { .margin-auto-below-medium { margin: 0 auto; } }
@media (min-width: 1200px) { .margin-auto-above-large { margin: 0 auto; } }
@media (max-width: 1200px) { .margin-auto-below-large { margin: 0 auto; } }
.max-width-100 { max-width: 100px; }
.max-width-200 { max-width: 200px; }
.max-width-300 { max-width: 300px; }
.max-width-400 { max-width: 400px; }
.max-width-500 { max-width: 500px; }
.max-width-600 { max-width: 600px; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }
.max-width-900 { max-width: 900px; }
.max-width-1000 { max-width: 1000px; }
.no-max-width { max-width: 100% !important; }
.opacity-0 { opacity: 0; }
.opacity-1 { opacity: 0.1; }
.opacity-2 { opacity: 0.2; }
.opacity-3 { opacity: 0.3; }
.opacity-4 { opacity: 0.4; }
.opacity-5 { opacity: 0.5; }
.opacity-6 { opacity: 0.6; }
.opacity-7 { opacity: 0.7; }
.opacity-8 { opacity: 0.8; }
.opacity-9 { opacity: 0.9; }
.opacity-10 { opacity: 1; }
.padding-top-1 { padding-top: 5px; }
@media (min-width: 780px) { .padding-top-1-above-medium { padding-top: 5px; } }
@media (max-width: 780px) { .padding-top-1-below-medium { padding-top: 5px; } }
@media (min-width: 1200px) { .padding-top-1-above-large { padding-top: 5px; } }
@media (max-width: 1200px) { .padding-top-1-below-large { padding-top: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-right-1 { padding-right: 5px; }
@media (min-width: 780px) { .padding-right-1-above-medium { padding-right: 5px; } }
@media (max-width: 780px) { .padding-right-1-below-medium { padding-right: 5px; } }
@media (min-width: 1200px) { .padding-right-1-above-large { padding-right: 5px; } }
@media (max-width: 1200px) { .padding-right-1-below-large { padding-right: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-bottom-1 { padding-bottom: 5px; }
@media (min-width: 780px) { .padding-bottom-1-above-medium { padding-bottom: 5px; } }
@media (max-width: 780px) { .padding-bottom-1-below-medium { padding-bottom: 5px; } }
@media (min-width: 1200px) { .padding-bottom-1-above-large { padding-bottom: 5px; } }
@media (max-width: 1200px) { .padding-bottom-1-below-large { padding-bottom: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-left-1 { padding-left: 5px; }
@media (min-width: 780px) { .padding-left-1-above-medium { padding-left: 5px; } }
@media (max-width: 780px) { .padding-left-1-below-medium { padding-left: 5px; } }
@media (min-width: 1200px) { .padding-left-1-above-large { padding-left: 5px; } }
@media (max-width: 1200px) { .padding-left-1-below-large { padding-left: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-vertical-1 { padding-top: 5px; padding-bottom: 5px; }
@media (min-width: 780px) { .padding-vertical-1-above-medium { padding-top: 5px; padding-bottom: 5px; } }
@media (max-width: 780px) { .padding-vertical-1-below-medium { padding-top: 5px; padding-bottom: 5px; } }
@media (min-width: 1200px) { .padding-vertical-1-above-large { padding-top: 5px; padding-bottom: 5px; } }
@media (max-width: 1200px) { .padding-vertical-1-below-large { padding-top: 5px; padding-bottom: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-horizontal-1 { padding-left: 5px; padding-right: 5px; }
@media (min-width: 780px) { .padding-horizontal-1-above-medium { padding-left: 5px; padding-right: 5px; } }
@media (max-width: 780px) { .padding-horizontal-1-below-medium { padding-left: 5px; padding-right: 5px; } }
@media (min-width: 1200px) { .padding-horizontal-1-above-large { padding-left: 5px; padding-right: 5px; } }
@media (max-width: 1200px) { .padding-horizontal-1-below-large { padding-left: 5px; padding-right: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-top-2 { padding-top: 10px; }
@media (min-width: 780px) { .padding-top-2-above-medium { padding-top: 10px; } }
@media (max-width: 780px) { .padding-top-2-below-medium { padding-top: 10px; } }
@media (min-width: 1200px) { .padding-top-2-above-large { padding-top: 10px; } }
@media (max-width: 1200px) { .padding-top-2-below-large { padding-top: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-right-2 { padding-right: 10px; }
@media (min-width: 780px) { .padding-right-2-above-medium { padding-right: 10px; } }
@media (max-width: 780px) { .padding-right-2-below-medium { padding-right: 10px; } }
@media (min-width: 1200px) { .padding-right-2-above-large { padding-right: 10px; } }
@media (max-width: 1200px) { .padding-right-2-below-large { padding-right: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-bottom-2 { padding-bottom: 10px; }
@media (min-width: 780px) { .padding-bottom-2-above-medium { padding-bottom: 10px; } }
@media (max-width: 780px) { .padding-bottom-2-below-medium { padding-bottom: 10px; } }
@media (min-width: 1200px) { .padding-bottom-2-above-large { padding-bottom: 10px; } }
@media (max-width: 1200px) { .padding-bottom-2-below-large { padding-bottom: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-left-2 { padding-left: 10px; }
@media (min-width: 780px) { .padding-left-2-above-medium { padding-left: 10px; } }
@media (max-width: 780px) { .padding-left-2-below-medium { padding-left: 10px; } }
@media (min-width: 1200px) { .padding-left-2-above-large { padding-left: 10px; } }
@media (max-width: 1200px) { .padding-left-2-below-large { padding-left: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-vertical-2 { padding-top: 10px; padding-bottom: 10px; }
@media (min-width: 780px) { .padding-vertical-2-above-medium { padding-top: 10px; padding-bottom: 10px; } }
@media (max-width: 780px) { .padding-vertical-2-below-medium { padding-top: 10px; padding-bottom: 10px; } }
@media (min-width: 1200px) { .padding-vertical-2-above-large { padding-top: 10px; padding-bottom: 10px; } }
@media (max-width: 1200px) { .padding-vertical-2-below-large { padding-top: 10px; padding-bottom: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-horizontal-2 { padding-left: 10px; padding-right: 10px; }
@media (min-width: 780px) { .padding-horizontal-2-above-medium { padding-left: 10px; padding-right: 10px; } }
@media (max-width: 780px) { .padding-horizontal-2-below-medium { padding-left: 10px; padding-right: 10px; } }
@media (min-width: 1200px) { .padding-horizontal-2-above-large { padding-left: 10px; padding-right: 10px; } }
@media (max-width: 1200px) { .padding-horizontal-2-below-large { padding-left: 10px; padding-right: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-top-3 { padding-top: 15px; }
@media (min-width: 780px) { .padding-top-3-above-medium { padding-top: 15px; } }
@media (max-width: 780px) { .padding-top-3-below-medium { padding-top: 15px; } }
@media (min-width: 1200px) { .padding-top-3-above-large { padding-top: 15px; } }
@media (max-width: 1200px) { .padding-top-3-below-large { padding-top: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-right-3 { padding-right: 15px; }
@media (min-width: 780px) { .padding-right-3-above-medium { padding-right: 15px; } }
@media (max-width: 780px) { .padding-right-3-below-medium { padding-right: 15px; } }
@media (min-width: 1200px) { .padding-right-3-above-large { padding-right: 15px; } }
@media (max-width: 1200px) { .padding-right-3-below-large { padding-right: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-bottom-3 { padding-bottom: 15px; }
@media (min-width: 780px) { .padding-bottom-3-above-medium { padding-bottom: 15px; } }
@media (max-width: 780px) { .padding-bottom-3-below-medium { padding-bottom: 15px; } }
@media (min-width: 1200px) { .padding-bottom-3-above-large { padding-bottom: 15px; } }
@media (max-width: 1200px) { .padding-bottom-3-below-large { padding-bottom: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-left-3 { padding-left: 15px; }
@media (min-width: 780px) { .padding-left-3-above-medium { padding-left: 15px; } }
@media (max-width: 780px) { .padding-left-3-below-medium { padding-left: 15px; } }
@media (min-width: 1200px) { .padding-left-3-above-large { padding-left: 15px; } }
@media (max-width: 1200px) { .padding-left-3-below-large { padding-left: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-vertical-3 { padding-top: 15px; padding-bottom: 15px; }
@media (min-width: 780px) { .padding-vertical-3-above-medium { padding-top: 15px; padding-bottom: 15px; } }
@media (max-width: 780px) { .padding-vertical-3-below-medium { padding-top: 15px; padding-bottom: 15px; } }
@media (min-width: 1200px) { .padding-vertical-3-above-large { padding-top: 15px; padding-bottom: 15px; } }
@media (max-width: 1200px) { .padding-vertical-3-below-large { padding-top: 15px; padding-bottom: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-horizontal-3 { padding-left: 15px; padding-right: 15px; }
@media (min-width: 780px) { .padding-horizontal-3-above-medium { padding-left: 15px; padding-right: 15px; } }
@media (max-width: 780px) { .padding-horizontal-3-below-medium { padding-left: 15px; padding-right: 15px; } }
@media (min-width: 1200px) { .padding-horizontal-3-above-large { padding-left: 15px; padding-right: 15px; } }
@media (max-width: 1200px) { .padding-horizontal-3-below-large { padding-left: 15px; padding-right: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-top-4 { padding-top: 20px; }
@media (min-width: 780px) { .padding-top-4-above-medium { padding-top: 20px; } }
@media (max-width: 780px) { .padding-top-4-below-medium { padding-top: 20px; } }
@media (min-width: 1200px) { .padding-top-4-above-large { padding-top: 20px; } }
@media (max-width: 1200px) { .padding-top-4-below-large { padding-top: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-right-4 { padding-right: 20px; }
@media (min-width: 780px) { .padding-right-4-above-medium { padding-right: 20px; } }
@media (max-width: 780px) { .padding-right-4-below-medium { padding-right: 20px; } }
@media (min-width: 1200px) { .padding-right-4-above-large { padding-right: 20px; } }
@media (max-width: 1200px) { .padding-right-4-below-large { padding-right: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-bottom-4 { padding-bottom: 20px; }
@media (min-width: 780px) { .padding-bottom-4-above-medium { padding-bottom: 20px; } }
@media (max-width: 780px) { .padding-bottom-4-below-medium { padding-bottom: 20px; } }
@media (min-width: 1200px) { .padding-bottom-4-above-large { padding-bottom: 20px; } }
@media (max-width: 1200px) { .padding-bottom-4-below-large { padding-bottom: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-left-4 { padding-left: 20px; }
@media (min-width: 780px) { .padding-left-4-above-medium { padding-left: 20px; } }
@media (max-width: 780px) { .padding-left-4-below-medium { padding-left: 20px; } }
@media (min-width: 1200px) { .padding-left-4-above-large { padding-left: 20px; } }
@media (max-width: 1200px) { .padding-left-4-below-large { padding-left: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-vertical-4 { padding-top: 20px; padding-bottom: 20px; }
@media (min-width: 780px) { .padding-vertical-4-above-medium { padding-top: 20px; padding-bottom: 20px; } }
@media (max-width: 780px) { .padding-vertical-4-below-medium { padding-top: 20px; padding-bottom: 20px; } }
@media (min-width: 1200px) { .padding-vertical-4-above-large { padding-top: 20px; padding-bottom: 20px; } }
@media (max-width: 1200px) { .padding-vertical-4-below-large { padding-top: 20px; padding-bottom: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-horizontal-4 { padding-left: 20px; padding-right: 20px; }
@media (min-width: 780px) { .padding-horizontal-4-above-medium { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 780px) { .padding-horizontal-4-below-medium { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 1200px) { .padding-horizontal-4-above-large { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 1200px) { .padding-horizontal-4-below-large { padding-left: 20px; padding-right: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-top-5 { padding-top: 25px; }
@media (min-width: 780px) { .padding-top-5-above-medium { padding-top: 25px; } }
@media (max-width: 780px) { .padding-top-5-below-medium { padding-top: 25px; } }
@media (min-width: 1200px) { .padding-top-5-above-large { padding-top: 25px; } }
@media (max-width: 1200px) { .padding-top-5-below-large { padding-top: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-right-5 { padding-right: 25px; }
@media (min-width: 780px) { .padding-right-5-above-medium { padding-right: 25px; } }
@media (max-width: 780px) { .padding-right-5-below-medium { padding-right: 25px; } }
@media (min-width: 1200px) { .padding-right-5-above-large { padding-right: 25px; } }
@media (max-width: 1200px) { .padding-right-5-below-large { padding-right: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-bottom-5 { padding-bottom: 25px; }
@media (min-width: 780px) { .padding-bottom-5-above-medium { padding-bottom: 25px; } }
@media (max-width: 780px) { .padding-bottom-5-below-medium { padding-bottom: 25px; } }
@media (min-width: 1200px) { .padding-bottom-5-above-large { padding-bottom: 25px; } }
@media (max-width: 1200px) { .padding-bottom-5-below-large { padding-bottom: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-left-5 { padding-left: 25px; }
@media (min-width: 780px) { .padding-left-5-above-medium { padding-left: 25px; } }
@media (max-width: 780px) { .padding-left-5-below-medium { padding-left: 25px; } }
@media (min-width: 1200px) { .padding-left-5-above-large { padding-left: 25px; } }
@media (max-width: 1200px) { .padding-left-5-below-large { padding-left: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-vertical-5 { padding-top: 25px; padding-bottom: 25px; }
@media (min-width: 780px) { .padding-vertical-5-above-medium { padding-top: 25px; padding-bottom: 25px; } }
@media (max-width: 780px) { .padding-vertical-5-below-medium { padding-top: 25px; padding-bottom: 25px; } }
@media (min-width: 1200px) { .padding-vertical-5-above-large { padding-top: 25px; padding-bottom: 25px; } }
@media (max-width: 1200px) { .padding-vertical-5-below-large { padding-top: 25px; padding-bottom: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-horizontal-5 { padding-left: 25px; padding-right: 25px; }
@media (min-width: 780px) { .padding-horizontal-5-above-medium { padding-left: 25px; padding-right: 25px; } }
@media (max-width: 780px) { .padding-horizontal-5-below-medium { padding-left: 25px; padding-right: 25px; } }
@media (min-width: 1200px) { .padding-horizontal-5-above-large { padding-left: 25px; padding-right: 25px; } }
@media (max-width: 1200px) { .padding-horizontal-5-below-large { padding-left: 25px; padding-right: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-top-6 { padding-top: 30px; }
@media (min-width: 780px) { .padding-top-6-above-medium { padding-top: 30px; } }
@media (max-width: 780px) { .padding-top-6-below-medium { padding-top: 30px; } }
@media (min-width: 1200px) { .padding-top-6-above-large { padding-top: 30px; } }
@media (max-width: 1200px) { .padding-top-6-below-large { padding-top: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-right-6 { padding-right: 30px; }
@media (min-width: 780px) { .padding-right-6-above-medium { padding-right: 30px; } }
@media (max-width: 780px) { .padding-right-6-below-medium { padding-right: 30px; } }
@media (min-width: 1200px) { .padding-right-6-above-large { padding-right: 30px; } }
@media (max-width: 1200px) { .padding-right-6-below-large { padding-right: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-bottom-6 { padding-bottom: 30px; }
@media (min-width: 780px) { .padding-bottom-6-above-medium { padding-bottom: 30px; } }
@media (max-width: 780px) { .padding-bottom-6-below-medium { padding-bottom: 30px; } }
@media (min-width: 1200px) { .padding-bottom-6-above-large { padding-bottom: 30px; } }
@media (max-width: 1200px) { .padding-bottom-6-below-large { padding-bottom: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-left-6 { padding-left: 30px; }
@media (min-width: 780px) { .padding-left-6-above-medium { padding-left: 30px; } }
@media (max-width: 780px) { .padding-left-6-below-medium { padding-left: 30px; } }
@media (min-width: 1200px) { .padding-left-6-above-large { padding-left: 30px; } }
@media (max-width: 1200px) { .padding-left-6-below-large { padding-left: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-vertical-6 { padding-top: 30px; padding-bottom: 30px; }
@media (min-width: 780px) { .padding-vertical-6-above-medium { padding-top: 30px; padding-bottom: 30px; } }
@media (max-width: 780px) { .padding-vertical-6-below-medium { padding-top: 30px; padding-bottom: 30px; } }
@media (min-width: 1200px) { .padding-vertical-6-above-large { padding-top: 30px; padding-bottom: 30px; } }
@media (max-width: 1200px) { .padding-vertical-6-below-large { padding-top: 30px; padding-bottom: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-horizontal-6 { padding-left: 30px; padding-right: 30px; }
@media (min-width: 780px) { .padding-horizontal-6-above-medium { padding-left: 30px; padding-right: 30px; } }
@media (max-width: 780px) { .padding-horizontal-6-below-medium { padding-left: 30px; padding-right: 30px; } }
@media (min-width: 1200px) { .padding-horizontal-6-above-large { padding-left: 30px; padding-right: 30px; } }
@media (max-width: 1200px) { .padding-horizontal-6-below-large { padding-left: 30px; padding-right: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-top-7 { padding-top: 35px; }
@media (min-width: 780px) { .padding-top-7-above-medium { padding-top: 35px; } }
@media (max-width: 780px) { .padding-top-7-below-medium { padding-top: 35px; } }
@media (min-width: 1200px) { .padding-top-7-above-large { padding-top: 35px; } }
@media (max-width: 1200px) { .padding-top-7-below-large { padding-top: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-right-7 { padding-right: 35px; }
@media (min-width: 780px) { .padding-right-7-above-medium { padding-right: 35px; } }
@media (max-width: 780px) { .padding-right-7-below-medium { padding-right: 35px; } }
@media (min-width: 1200px) { .padding-right-7-above-large { padding-right: 35px; } }
@media (max-width: 1200px) { .padding-right-7-below-large { padding-right: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-bottom-7 { padding-bottom: 35px; }
@media (min-width: 780px) { .padding-bottom-7-above-medium { padding-bottom: 35px; } }
@media (max-width: 780px) { .padding-bottom-7-below-medium { padding-bottom: 35px; } }
@media (min-width: 1200px) { .padding-bottom-7-above-large { padding-bottom: 35px; } }
@media (max-width: 1200px) { .padding-bottom-7-below-large { padding-bottom: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-left-7 { padding-left: 35px; }
@media (min-width: 780px) { .padding-left-7-above-medium { padding-left: 35px; } }
@media (max-width: 780px) { .padding-left-7-below-medium { padding-left: 35px; } }
@media (min-width: 1200px) { .padding-left-7-above-large { padding-left: 35px; } }
@media (max-width: 1200px) { .padding-left-7-below-large { padding-left: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-vertical-7 { padding-top: 35px; padding-bottom: 35px; }
@media (min-width: 780px) { .padding-vertical-7-above-medium { padding-top: 35px; padding-bottom: 35px; } }
@media (max-width: 780px) { .padding-vertical-7-below-medium { padding-top: 35px; padding-bottom: 35px; } }
@media (min-width: 1200px) { .padding-vertical-7-above-large { padding-top: 35px; padding-bottom: 35px; } }
@media (max-width: 1200px) { .padding-vertical-7-below-large { padding-top: 35px; padding-bottom: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-horizontal-7 { padding-left: 35px; padding-right: 35px; }
@media (min-width: 780px) { .padding-horizontal-7-above-medium { padding-left: 35px; padding-right: 35px; } }
@media (max-width: 780px) { .padding-horizontal-7-below-medium { padding-left: 35px; padding-right: 35px; } }
@media (min-width: 1200px) { .padding-horizontal-7-above-large { padding-left: 35px; padding-right: 35px; } }
@media (max-width: 1200px) { .padding-horizontal-7-below-large { padding-left: 35px; padding-right: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-top-8 { padding-top: 40px; }
@media (min-width: 780px) { .padding-top-8-above-medium { padding-top: 40px; } }
@media (max-width: 780px) { .padding-top-8-below-medium { padding-top: 40px; } }
@media (min-width: 1200px) { .padding-top-8-above-large { padding-top: 40px; } }
@media (max-width: 1200px) { .padding-top-8-below-large { padding-top: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-right-8 { padding-right: 40px; }
@media (min-width: 780px) { .padding-right-8-above-medium { padding-right: 40px; } }
@media (max-width: 780px) { .padding-right-8-below-medium { padding-right: 40px; } }
@media (min-width: 1200px) { .padding-right-8-above-large { padding-right: 40px; } }
@media (max-width: 1200px) { .padding-right-8-below-large { padding-right: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-bottom-8 { padding-bottom: 40px; }
@media (min-width: 780px) { .padding-bottom-8-above-medium { padding-bottom: 40px; } }
@media (max-width: 780px) { .padding-bottom-8-below-medium { padding-bottom: 40px; } }
@media (min-width: 1200px) { .padding-bottom-8-above-large { padding-bottom: 40px; } }
@media (max-width: 1200px) { .padding-bottom-8-below-large { padding-bottom: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-left-8 { padding-left: 40px; }
@media (min-width: 780px) { .padding-left-8-above-medium { padding-left: 40px; } }
@media (max-width: 780px) { .padding-left-8-below-medium { padding-left: 40px; } }
@media (min-width: 1200px) { .padding-left-8-above-large { padding-left: 40px; } }
@media (max-width: 1200px) { .padding-left-8-below-large { padding-left: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-vertical-8 { padding-top: 40px; padding-bottom: 40px; }
@media (min-width: 780px) { .padding-vertical-8-above-medium { padding-top: 40px; padding-bottom: 40px; } }
@media (max-width: 780px) { .padding-vertical-8-below-medium { padding-top: 40px; padding-bottom: 40px; } }
@media (min-width: 1200px) { .padding-vertical-8-above-large { padding-top: 40px; padding-bottom: 40px; } }
@media (max-width: 1200px) { .padding-vertical-8-below-large { padding-top: 40px; padding-bottom: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-horizontal-8 { padding-left: 40px; padding-right: 40px; }
@media (min-width: 780px) { .padding-horizontal-8-above-medium { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 780px) { .padding-horizontal-8-below-medium { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1200px) { .padding-horizontal-8-above-large { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 1200px) { .padding-horizontal-8-below-large { padding-left: 40px; padding-right: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-top-9 { padding-top: 45px; }
@media (min-width: 780px) { .padding-top-9-above-medium { padding-top: 45px; } }
@media (max-width: 780px) { .padding-top-9-below-medium { padding-top: 45px; } }
@media (min-width: 1200px) { .padding-top-9-above-large { padding-top: 45px; } }
@media (max-width: 1200px) { .padding-top-9-below-large { padding-top: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-right-9 { padding-right: 45px; }
@media (min-width: 780px) { .padding-right-9-above-medium { padding-right: 45px; } }
@media (max-width: 780px) { .padding-right-9-below-medium { padding-right: 45px; } }
@media (min-width: 1200px) { .padding-right-9-above-large { padding-right: 45px; } }
@media (max-width: 1200px) { .padding-right-9-below-large { padding-right: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-bottom-9 { padding-bottom: 45px; }
@media (min-width: 780px) { .padding-bottom-9-above-medium { padding-bottom: 45px; } }
@media (max-width: 780px) { .padding-bottom-9-below-medium { padding-bottom: 45px; } }
@media (min-width: 1200px) { .padding-bottom-9-above-large { padding-bottom: 45px; } }
@media (max-width: 1200px) { .padding-bottom-9-below-large { padding-bottom: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-left-9 { padding-left: 45px; }
@media (min-width: 780px) { .padding-left-9-above-medium { padding-left: 45px; } }
@media (max-width: 780px) { .padding-left-9-below-medium { padding-left: 45px; } }
@media (min-width: 1200px) { .padding-left-9-above-large { padding-left: 45px; } }
@media (max-width: 1200px) { .padding-left-9-below-large { padding-left: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-vertical-9 { padding-top: 45px; padding-bottom: 45px; }
@media (min-width: 780px) { .padding-vertical-9-above-medium { padding-top: 45px; padding-bottom: 45px; } }
@media (max-width: 780px) { .padding-vertical-9-below-medium { padding-top: 45px; padding-bottom: 45px; } }
@media (min-width: 1200px) { .padding-vertical-9-above-large { padding-top: 45px; padding-bottom: 45px; } }
@media (max-width: 1200px) { .padding-vertical-9-below-large { padding-top: 45px; padding-bottom: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-horizontal-9 { padding-left: 45px; padding-right: 45px; }
@media (min-width: 780px) { .padding-horizontal-9-above-medium { padding-left: 45px; padding-right: 45px; } }
@media (max-width: 780px) { .padding-horizontal-9-below-medium { padding-left: 45px; padding-right: 45px; } }
@media (min-width: 1200px) { .padding-horizontal-9-above-large { padding-left: 45px; padding-right: 45px; } }
@media (max-width: 1200px) { .padding-horizontal-9-below-large { padding-left: 45px; padding-right: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-top-10 { padding-top: 50px; }
@media (min-width: 780px) { .padding-top-10-above-medium { padding-top: 50px; } }
@media (max-width: 780px) { .padding-top-10-below-medium { padding-top: 50px; } }
@media (min-width: 1200px) { .padding-top-10-above-large { padding-top: 50px; } }
@media (max-width: 1200px) { .padding-top-10-below-large { padding-top: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-right-10 { padding-right: 50px; }
@media (min-width: 780px) { .padding-right-10-above-medium { padding-right: 50px; } }
@media (max-width: 780px) { .padding-right-10-below-medium { padding-right: 50px; } }
@media (min-width: 1200px) { .padding-right-10-above-large { padding-right: 50px; } }
@media (max-width: 1200px) { .padding-right-10-below-large { padding-right: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-bottom-10 { padding-bottom: 50px; }
@media (min-width: 780px) { .padding-bottom-10-above-medium { padding-bottom: 50px; } }
@media (max-width: 780px) { .padding-bottom-10-below-medium { padding-bottom: 50px; } }
@media (min-width: 1200px) { .padding-bottom-10-above-large { padding-bottom: 50px; } }
@media (max-width: 1200px) { .padding-bottom-10-below-large { padding-bottom: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-left-10 { padding-left: 50px; }
@media (min-width: 780px) { .padding-left-10-above-medium { padding-left: 50px; } }
@media (max-width: 780px) { .padding-left-10-below-medium { padding-left: 50px; } }
@media (min-width: 1200px) { .padding-left-10-above-large { padding-left: 50px; } }
@media (max-width: 1200px) { .padding-left-10-below-large { padding-left: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-vertical-10 { padding-top: 50px; padding-bottom: 50px; }
@media (min-width: 780px) { .padding-vertical-10-above-medium { padding-top: 50px; padding-bottom: 50px; } }
@media (max-width: 780px) { .padding-vertical-10-below-medium { padding-top: 50px; padding-bottom: 50px; } }
@media (min-width: 1200px) { .padding-vertical-10-above-large { padding-top: 50px; padding-bottom: 50px; } }
@media (max-width: 1200px) { .padding-vertical-10-below-large { padding-top: 50px; padding-bottom: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-horizontal-10 { padding-left: 50px; padding-right: 50px; }
@media (min-width: 780px) { .padding-horizontal-10-above-medium { padding-left: 50px; padding-right: 50px; } }
@media (max-width: 780px) { .padding-horizontal-10-below-medium { padding-left: 50px; padding-right: 50px; } }
@media (min-width: 1200px) { .padding-horizontal-10-above-large { padding-left: 50px; padding-right: 50px; } }
@media (max-width: 1200px) { .padding-horizontal-10-below-large { padding-left: 50px; padding-right: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-top-11 { padding-top: 55px; }
@media (min-width: 780px) { .padding-top-11-above-medium { padding-top: 55px; } }
@media (max-width: 780px) { .padding-top-11-below-medium { padding-top: 55px; } }
@media (min-width: 1200px) { .padding-top-11-above-large { padding-top: 55px; } }
@media (max-width: 1200px) { .padding-top-11-below-large { padding-top: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-right-11 { padding-right: 55px; }
@media (min-width: 780px) { .padding-right-11-above-medium { padding-right: 55px; } }
@media (max-width: 780px) { .padding-right-11-below-medium { padding-right: 55px; } }
@media (min-width: 1200px) { .padding-right-11-above-large { padding-right: 55px; } }
@media (max-width: 1200px) { .padding-right-11-below-large { padding-right: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-bottom-11 { padding-bottom: 55px; }
@media (min-width: 780px) { .padding-bottom-11-above-medium { padding-bottom: 55px; } }
@media (max-width: 780px) { .padding-bottom-11-below-medium { padding-bottom: 55px; } }
@media (min-width: 1200px) { .padding-bottom-11-above-large { padding-bottom: 55px; } }
@media (max-width: 1200px) { .padding-bottom-11-below-large { padding-bottom: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-left-11 { padding-left: 55px; }
@media (min-width: 780px) { .padding-left-11-above-medium { padding-left: 55px; } }
@media (max-width: 780px) { .padding-left-11-below-medium { padding-left: 55px; } }
@media (min-width: 1200px) { .padding-left-11-above-large { padding-left: 55px; } }
@media (max-width: 1200px) { .padding-left-11-below-large { padding-left: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-vertical-11 { padding-top: 55px; padding-bottom: 55px; }
@media (min-width: 780px) { .padding-vertical-11-above-medium { padding-top: 55px; padding-bottom: 55px; } }
@media (max-width: 780px) { .padding-vertical-11-below-medium { padding-top: 55px; padding-bottom: 55px; } }
@media (min-width: 1200px) { .padding-vertical-11-above-large { padding-top: 55px; padding-bottom: 55px; } }
@media (max-width: 1200px) { .padding-vertical-11-below-large { padding-top: 55px; padding-bottom: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-horizontal-11 { padding-left: 55px; padding-right: 55px; }
@media (min-width: 780px) { .padding-horizontal-11-above-medium { padding-left: 55px; padding-right: 55px; } }
@media (max-width: 780px) { .padding-horizontal-11-below-medium { padding-left: 55px; padding-right: 55px; } }
@media (min-width: 1200px) { .padding-horizontal-11-above-large { padding-left: 55px; padding-right: 55px; } }
@media (max-width: 1200px) { .padding-horizontal-11-below-large { padding-left: 55px; padding-right: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-top-12 { padding-top: 60px; }
@media (min-width: 780px) { .padding-top-12-above-medium { padding-top: 60px; } }
@media (max-width: 780px) { .padding-top-12-below-medium { padding-top: 60px; } }
@media (min-width: 1200px) { .padding-top-12-above-large { padding-top: 60px; } }
@media (max-width: 1200px) { .padding-top-12-below-large { padding-top: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-right-12 { padding-right: 60px; }
@media (min-width: 780px) { .padding-right-12-above-medium { padding-right: 60px; } }
@media (max-width: 780px) { .padding-right-12-below-medium { padding-right: 60px; } }
@media (min-width: 1200px) { .padding-right-12-above-large { padding-right: 60px; } }
@media (max-width: 1200px) { .padding-right-12-below-large { padding-right: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-bottom-12 { padding-bottom: 60px; }
@media (min-width: 780px) { .padding-bottom-12-above-medium { padding-bottom: 60px; } }
@media (max-width: 780px) { .padding-bottom-12-below-medium { padding-bottom: 60px; } }
@media (min-width: 1200px) { .padding-bottom-12-above-large { padding-bottom: 60px; } }
@media (max-width: 1200px) { .padding-bottom-12-below-large { padding-bottom: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-left-12 { padding-left: 60px; }
@media (min-width: 780px) { .padding-left-12-above-medium { padding-left: 60px; } }
@media (max-width: 780px) { .padding-left-12-below-medium { padding-left: 60px; } }
@media (min-width: 1200px) { .padding-left-12-above-large { padding-left: 60px; } }
@media (max-width: 1200px) { .padding-left-12-below-large { padding-left: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-vertical-12 { padding-top: 60px; padding-bottom: 60px; }
@media (min-width: 780px) { .padding-vertical-12-above-medium { padding-top: 60px; padding-bottom: 60px; } }
@media (max-width: 780px) { .padding-vertical-12-below-medium { padding-top: 60px; padding-bottom: 60px; } }
@media (min-width: 1200px) { .padding-vertical-12-above-large { padding-top: 60px; padding-bottom: 60px; } }
@media (max-width: 1200px) { .padding-vertical-12-below-large { padding-top: 60px; padding-bottom: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-horizontal-12 { padding-left: 60px; padding-right: 60px; }
@media (min-width: 780px) { .padding-horizontal-12-above-medium { padding-left: 60px; padding-right: 60px; } }
@media (max-width: 780px) { .padding-horizontal-12-below-medium { padding-left: 60px; padding-right: 60px; } }
@media (min-width: 1200px) { .padding-horizontal-12-above-large { padding-left: 60px; padding-right: 60px; } }
@media (max-width: 1200px) { .padding-horizontal-12-below-large { padding-left: 60px; padding-right: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-top-13 { padding-top: 65px; }
@media (min-width: 780px) { .padding-top-13-above-medium { padding-top: 65px; } }
@media (max-width: 780px) { .padding-top-13-below-medium { padding-top: 65px; } }
@media (min-width: 1200px) { .padding-top-13-above-large { padding-top: 65px; } }
@media (max-width: 1200px) { .padding-top-13-below-large { padding-top: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-right-13 { padding-right: 65px; }
@media (min-width: 780px) { .padding-right-13-above-medium { padding-right: 65px; } }
@media (max-width: 780px) { .padding-right-13-below-medium { padding-right: 65px; } }
@media (min-width: 1200px) { .padding-right-13-above-large { padding-right: 65px; } }
@media (max-width: 1200px) { .padding-right-13-below-large { padding-right: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-bottom-13 { padding-bottom: 65px; }
@media (min-width: 780px) { .padding-bottom-13-above-medium { padding-bottom: 65px; } }
@media (max-width: 780px) { .padding-bottom-13-below-medium { padding-bottom: 65px; } }
@media (min-width: 1200px) { .padding-bottom-13-above-large { padding-bottom: 65px; } }
@media (max-width: 1200px) { .padding-bottom-13-below-large { padding-bottom: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-left-13 { padding-left: 65px; }
@media (min-width: 780px) { .padding-left-13-above-medium { padding-left: 65px; } }
@media (max-width: 780px) { .padding-left-13-below-medium { padding-left: 65px; } }
@media (min-width: 1200px) { .padding-left-13-above-large { padding-left: 65px; } }
@media (max-width: 1200px) { .padding-left-13-below-large { padding-left: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-vertical-13 { padding-top: 65px; padding-bottom: 65px; }
@media (min-width: 780px) { .padding-vertical-13-above-medium { padding-top: 65px; padding-bottom: 65px; } }
@media (max-width: 780px) { .padding-vertical-13-below-medium { padding-top: 65px; padding-bottom: 65px; } }
@media (min-width: 1200px) { .padding-vertical-13-above-large { padding-top: 65px; padding-bottom: 65px; } }
@media (max-width: 1200px) { .padding-vertical-13-below-large { padding-top: 65px; padding-bottom: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-horizontal-13 { padding-left: 65px; padding-right: 65px; }
@media (min-width: 780px) { .padding-horizontal-13-above-medium { padding-left: 65px; padding-right: 65px; } }
@media (max-width: 780px) { .padding-horizontal-13-below-medium { padding-left: 65px; padding-right: 65px; } }
@media (min-width: 1200px) { .padding-horizontal-13-above-large { padding-left: 65px; padding-right: 65px; } }
@media (max-width: 1200px) { .padding-horizontal-13-below-large { padding-left: 65px; padding-right: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-top-14 { padding-top: 70px; }
@media (min-width: 780px) { .padding-top-14-above-medium { padding-top: 70px; } }
@media (max-width: 780px) { .padding-top-14-below-medium { padding-top: 70px; } }
@media (min-width: 1200px) { .padding-top-14-above-large { padding-top: 70px; } }
@media (max-width: 1200px) { .padding-top-14-below-large { padding-top: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-right-14 { padding-right: 70px; }
@media (min-width: 780px) { .padding-right-14-above-medium { padding-right: 70px; } }
@media (max-width: 780px) { .padding-right-14-below-medium { padding-right: 70px; } }
@media (min-width: 1200px) { .padding-right-14-above-large { padding-right: 70px; } }
@media (max-width: 1200px) { .padding-right-14-below-large { padding-right: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-bottom-14 { padding-bottom: 70px; }
@media (min-width: 780px) { .padding-bottom-14-above-medium { padding-bottom: 70px; } }
@media (max-width: 780px) { .padding-bottom-14-below-medium { padding-bottom: 70px; } }
@media (min-width: 1200px) { .padding-bottom-14-above-large { padding-bottom: 70px; } }
@media (max-width: 1200px) { .padding-bottom-14-below-large { padding-bottom: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-left-14 { padding-left: 70px; }
@media (min-width: 780px) { .padding-left-14-above-medium { padding-left: 70px; } }
@media (max-width: 780px) { .padding-left-14-below-medium { padding-left: 70px; } }
@media (min-width: 1200px) { .padding-left-14-above-large { padding-left: 70px; } }
@media (max-width: 1200px) { .padding-left-14-below-large { padding-left: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-vertical-14 { padding-top: 70px; padding-bottom: 70px; }
@media (min-width: 780px) { .padding-vertical-14-above-medium { padding-top: 70px; padding-bottom: 70px; } }
@media (max-width: 780px) { .padding-vertical-14-below-medium { padding-top: 70px; padding-bottom: 70px; } }
@media (min-width: 1200px) { .padding-vertical-14-above-large { padding-top: 70px; padding-bottom: 70px; } }
@media (max-width: 1200px) { .padding-vertical-14-below-large { padding-top: 70px; padding-bottom: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-horizontal-14 { padding-left: 70px; padding-right: 70px; }
@media (min-width: 780px) { .padding-horizontal-14-above-medium { padding-left: 70px; padding-right: 70px; } }
@media (max-width: 780px) { .padding-horizontal-14-below-medium { padding-left: 70px; padding-right: 70px; } }
@media (min-width: 1200px) { .padding-horizontal-14-above-large { padding-left: 70px; padding-right: 70px; } }
@media (max-width: 1200px) { .padding-horizontal-14-below-large { padding-left: 70px; padding-right: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-top-15 { padding-top: 75px; }
@media (min-width: 780px) { .padding-top-15-above-medium { padding-top: 75px; } }
@media (max-width: 780px) { .padding-top-15-below-medium { padding-top: 75px; } }
@media (min-width: 1200px) { .padding-top-15-above-large { padding-top: 75px; } }
@media (max-width: 1200px) { .padding-top-15-below-large { padding-top: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-right-15 { padding-right: 75px; }
@media (min-width: 780px) { .padding-right-15-above-medium { padding-right: 75px; } }
@media (max-width: 780px) { .padding-right-15-below-medium { padding-right: 75px; } }
@media (min-width: 1200px) { .padding-right-15-above-large { padding-right: 75px; } }
@media (max-width: 1200px) { .padding-right-15-below-large { padding-right: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-bottom-15 { padding-bottom: 75px; }
@media (min-width: 780px) { .padding-bottom-15-above-medium { padding-bottom: 75px; } }
@media (max-width: 780px) { .padding-bottom-15-below-medium { padding-bottom: 75px; } }
@media (min-width: 1200px) { .padding-bottom-15-above-large { padding-bottom: 75px; } }
@media (max-width: 1200px) { .padding-bottom-15-below-large { padding-bottom: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-left-15 { padding-left: 75px; }
@media (min-width: 780px) { .padding-left-15-above-medium { padding-left: 75px; } }
@media (max-width: 780px) { .padding-left-15-below-medium { padding-left: 75px; } }
@media (min-width: 1200px) { .padding-left-15-above-large { padding-left: 75px; } }
@media (max-width: 1200px) { .padding-left-15-below-large { padding-left: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-vertical-15 { padding-top: 75px; padding-bottom: 75px; }
@media (min-width: 780px) { .padding-vertical-15-above-medium { padding-top: 75px; padding-bottom: 75px; } }
@media (max-width: 780px) { .padding-vertical-15-below-medium { padding-top: 75px; padding-bottom: 75px; } }
@media (min-width: 1200px) { .padding-vertical-15-above-large { padding-top: 75px; padding-bottom: 75px; } }
@media (max-width: 1200px) { .padding-vertical-15-below-large { padding-top: 75px; padding-bottom: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-horizontal-15 { padding-left: 75px; padding-right: 75px; }
@media (min-width: 780px) { .padding-horizontal-15-above-medium { padding-left: 75px; padding-right: 75px; } }
@media (max-width: 780px) { .padding-horizontal-15-below-medium { padding-left: 75px; padding-right: 75px; } }
@media (min-width: 1200px) { .padding-horizontal-15-above-large { padding-left: 75px; padding-right: 75px; } }
@media (max-width: 1200px) { .padding-horizontal-15-below-large { padding-left: 75px; padding-right: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.no-padding { padding: 0 !important; }
@media (min-width: 780px) { .no-padding-above-medium { padding: 0 !important; } }
@media (max-width: 780px) { .no-padding-below-medium { padding: 0 !important; } }
@media (min-width: 1200px) { .no-padding-above-large { padding: 0 !important; } }
@media (max-width: 1200px) { .no-padding-below-large { padding: 0 !important; } }
.no-padding-last:last-of-type { padding: 0 !important; }
.padding-auto { padding: 0 auto; }
@media (min-width: 780px) { .padding-auto-above-medium { padding: 0 auto; } }
@media (max-width: 780px) { .padding-auto-below-medium { padding: 0 auto; } }
@media (min-width: 1200px) { .padding-auto-above-large { padding: 0 auto; } }
@media (max-width: 1200px) { .padding-auto-below-large { padding: 0 auto; } }
.position-absolute { position: absolute; }
@media (min-width: 780px) { .position-absolute-above-medium { position: absolute; } }
@media (max-width: 780px) { .position-absolute-below-medium { position: absolute; } }
@media (min-width: 1200px) { .position-absolute-above-large { position: absolute; } }
@media (max-width: 1200px) { .position-absolute-below-large { position: absolute; } }
.position-static { position: static; }
@media (min-width: 780px) { .position-static-above-medium { position: static; } }
@media (max-width: 780px) { .position-static-below-medium { position: static; } }
@media (min-width: 1200px) { .position-static-above-large { position: static; } }
@media (max-width: 1200px) { .position-static-below-large { position: static; } }
.position-relative { position: relative; }
@media (min-width: 780px) { .position-relative-above-medium { position: relative; } }
@media (max-width: 780px) { .position-relative-below-medium { position: relative; } }
@media (min-width: 1200px) { .position-relative-above-large { position: relative; } }
@media (max-width: 1200px) { .position-relative-below-large { position: relative; } }
.position-fixed { position: fixed; }
@media (min-width: 780px) { .position-fixed-above-medium { position: fixed; } }
@media (max-width: 780px) { .position-fixed-below-medium { position: fixed; } }
@media (min-width: 1200px) { .position-fixed-above-large { position: fixed; } }
@media (max-width: 1200px) { .position-fixed-below-large { position: fixed; } }
*, *:before, *:after { box-sizing: border-box; }
*:focus { outline: none; }
html, body, div, span, object, iframe, hr, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, button, textarea, select, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; line-height: 1; }
a, a:visited { color: inherit; text-decoration: none; cursor: pointer; }
a img { border: 0; }
img { max-width: 100%; }
.right-0 { right: 0px; }
@media (min-width: 780px) { .right-0-above-medium { right: 0px; } }
@media (max-width: 780px) { .right-0-below-medium { right: 0px; } }
@media (min-width: 1200px) { .right-0-above-large { right: 0px; } }
@media (max-width: 1200px) { .right-0-below-large { right: 0px; } }
.right-1 { right: 5px; }
@media (min-width: 780px) { .right-1-above-medium { right: 5px; } }
@media (max-width: 780px) { .right-1-below-medium { right: 5px; } }
@media (min-width: 1200px) { .right-1-above-large { right: 5px; } }
@media (max-width: 1200px) { .right-1-below-large { right: 5px; } }
.right-2 { right: 10px; }
@media (min-width: 780px) { .right-2-above-medium { right: 10px; } }
@media (max-width: 780px) { .right-2-below-medium { right: 10px; } }
@media (min-width: 1200px) { .right-2-above-large { right: 10px; } }
@media (max-width: 1200px) { .right-2-below-large { right: 10px; } }
.right-3 { right: 15px; }
@media (min-width: 780px) { .right-3-above-medium { right: 15px; } }
@media (max-width: 780px) { .right-3-below-medium { right: 15px; } }
@media (min-width: 1200px) { .right-3-above-large { right: 15px; } }
@media (max-width: 1200px) { .right-3-below-large { right: 15px; } }
.right-4 { right: 20px; }
@media (min-width: 780px) { .right-4-above-medium { right: 20px; } }
@media (max-width: 780px) { .right-4-below-medium { right: 20px; } }
@media (min-width: 1200px) { .right-4-above-large { right: 20px; } }
@media (max-width: 1200px) { .right-4-below-large { right: 20px; } }
.right-5 { right: 25px; }
@media (min-width: 780px) { .right-5-above-medium { right: 25px; } }
@media (max-width: 780px) { .right-5-below-medium { right: 25px; } }
@media (min-width: 1200px) { .right-5-above-large { right: 25px; } }
@media (max-width: 1200px) { .right-5-below-large { right: 25px; } }
.right-6 { right: 30px; }
@media (min-width: 780px) { .right-6-above-medium { right: 30px; } }
@media (max-width: 780px) { .right-6-below-medium { right: 30px; } }
@media (min-width: 1200px) { .right-6-above-large { right: 30px; } }
@media (max-width: 1200px) { .right-6-below-large { right: 30px; } }
.right-7 { right: 35px; }
@media (min-width: 780px) { .right-7-above-medium { right: 35px; } }
@media (max-width: 780px) { .right-7-below-medium { right: 35px; } }
@media (min-width: 1200px) { .right-7-above-large { right: 35px; } }
@media (max-width: 1200px) { .right-7-below-large { right: 35px; } }
.right-8 { right: 40px; }
@media (min-width: 780px) { .right-8-above-medium { right: 40px; } }
@media (max-width: 780px) { .right-8-below-medium { right: 40px; } }
@media (min-width: 1200px) { .right-8-above-large { right: 40px; } }
@media (max-width: 1200px) { .right-8-below-large { right: 40px; } }
.right-9 { right: 45px; }
@media (min-width: 780px) { .right-9-above-medium { right: 45px; } }
@media (max-width: 780px) { .right-9-below-medium { right: 45px; } }
@media (min-width: 1200px) { .right-9-above-large { right: 45px; } }
@media (max-width: 1200px) { .right-9-below-large { right: 45px; } }
.right-10 { right: 50px; }
@media (min-width: 780px) { .right-10-above-medium { right: 50px; } }
@media (max-width: 780px) { .right-10-below-medium { right: 50px; } }
@media (min-width: 1200px) { .right-10-above-large { right: 50px; } }
@media (max-width: 1200px) { .right-10-below-large { right: 50px; } }
.right-11 { right: 55px; }
@media (min-width: 780px) { .right-11-above-medium { right: 55px; } }
@media (max-width: 780px) { .right-11-below-medium { right: 55px; } }
@media (min-width: 1200px) { .right-11-above-large { right: 55px; } }
@media (max-width: 1200px) { .right-11-below-large { right: 55px; } }
.right-12 { right: 60px; }
@media (min-width: 780px) { .right-12-above-medium { right: 60px; } }
@media (max-width: 780px) { .right-12-below-medium { right: 60px; } }
@media (min-width: 1200px) { .right-12-above-large { right: 60px; } }
@media (max-width: 1200px) { .right-12-below-large { right: 60px; } }
.right-13 { right: 65px; }
@media (min-width: 780px) { .right-13-above-medium { right: 65px; } }
@media (max-width: 780px) { .right-13-below-medium { right: 65px; } }
@media (min-width: 1200px) { .right-13-above-large { right: 65px; } }
@media (max-width: 1200px) { .right-13-below-large { right: 65px; } }
.right-14 { right: 70px; }
@media (min-width: 780px) { .right-14-above-medium { right: 70px; } }
@media (max-width: 780px) { .right-14-below-medium { right: 70px; } }
@media (min-width: 1200px) { .right-14-above-large { right: 70px; } }
@media (max-width: 1200px) { .right-14-below-large { right: 70px; } }
.right-15 { right: 75px; }
@media (min-width: 780px) { .right-15-above-medium { right: 75px; } }
@media (max-width: 780px) { .right-15-below-medium { right: 75px; } }
@media (min-width: 1200px) { .right-15-above-large { right: 75px; } }
@media (max-width: 1200px) { .right-15-below-large { right: 75px; } }
.right-auto { right: auto !important; }
.table-border-collapse { border-collapse: collapse; border-spacing: 0; }
.table-layout-fixed { table-layout: fixed; }
.text-left { text-align: left; }
@media (min-width: 780px) { .text-left-above-medium { text-align: left; } }
@media (max-width: 780px) { .text-left-below-medium { text-align: left; } }
@media (min-width: 1200px) { .text-left-above-large { text-align: left; } }
@media (max-width: 1200px) { .text-left-below-large { text-align: left; } }
.text-center { text-align: center; }
@media (min-width: 780px) { .text-center-above-medium { text-align: center; } }
@media (max-width: 780px) { .text-center-below-medium { text-align: center; } }
@media (min-width: 1200px) { .text-center-above-large { text-align: center; } }
@media (max-width: 1200px) { .text-center-below-large { text-align: center; } }
.text-right { text-align: right; }
@media (min-width: 780px) { .text-right-above-medium { text-align: right; } }
@media (max-width: 780px) { .text-right-below-medium { text-align: right; } }
@media (min-width: 1200px) { .text-right-above-large { text-align: right; } }
@media (max-width: 1200px) { .text-right-below-large { text-align: right; } }
.text-brand { color: blue; }
.text-brand-hover:hover { color: blue; }
.text-keyline { color: #efefef; }
.text-keyline-hover:hover { color: #efefef; }
.text-greyscale-x-light { color: #e5e5e5; }
.text-greyscale-x-light-hover:hover { color: #e5e5e5; }
.text-greyscale-50 { color: #ECEFF1; }
.text-greyscale-50-hover:hover { color: #ECEFF1; }
.text-greyscale-100 { color: #CFD8DC; }
.text-greyscale-100-hover:hover { color: #CFD8DC; }
.text-greyscale-200 { color: #B0BEC5; }
.text-greyscale-200-hover:hover { color: #B0BEC5; }
.text-greyscale-300 { color: #90A4AE; }
.text-greyscale-300-hover:hover { color: #90A4AE; }
.text-greyscale-400 { color: #78909C; }
.text-greyscale-400-hover:hover { color: #78909C; }
.text-greyscale-500 { color: #607D8B; }
.text-greyscale-500-hover:hover { color: #607D8B; }
.text-greyscale-600 { color: #546E7A; }
.text-greyscale-600-hover:hover { color: #546E7A; }
.text-greyscale-700 { color: #455A64; }
.text-greyscale-700-hover:hover { color: #455A64; }
.text-greyscale-800 { color: #37474F; }
.text-greyscale-800-hover:hover { color: #37474F; }
.text-greyscale-900 { color: #263238; }
.text-greyscale-900-hover:hover { color: #263238; }
.line-through { text-decoration: text-line-through; }
.line-through-hover:hover { text-decoration: text-line-through; }
.no-line-through { text-decoration: none !important; }
.underline { text-decoration: text-underline; }
.underline-hover:hover { text-decoration: text-underline; }
.no-underline { text-decoration: none !important; }
.text-11 { font-size: 11px; }
@media (min-width: 780px) { .text-11-above-medium { font-size: 11px; } }
@media (max-width: 780px) { .text-11-below-medium { font-size: 11px; } }
@media (min-width: 1200px) { .text-11-above-large { font-size: 11px; } }
@media (max-width: 1200px) { .text-11-below-large { font-size: 11px; } }
.text-13 { font-size: 13px; }
@media (min-width: 780px) { .text-13-above-medium { font-size: 13px; } }
@media (max-width: 780px) { .text-13-below-medium { font-size: 13px; } }
@media (min-width: 1200px) { .text-13-above-large { font-size: 13px; } }
@media (max-width: 1200px) { .text-13-below-large { font-size: 13px; } }
.text-15 { font-size: 15px; }
@media (min-width: 780px) { .text-15-above-medium { font-size: 15px; } }
@media (max-width: 780px) { .text-15-below-medium { font-size: 15px; } }
@media (min-width: 1200px) { .text-15-above-large { font-size: 15px; } }
@media (max-width: 1200px) { .text-15-below-large { font-size: 15px; } }
.text-20 { font-size: 20px; }
@media (min-width: 780px) { .text-20-above-medium { font-size: 20px; } }
@media (max-width: 780px) { .text-20-below-medium { font-size: 20px; } }
@media (min-width: 1200px) { .text-20-above-large { font-size: 20px; } }
@media (max-width: 1200px) { .text-20-below-large { font-size: 20px; } }
.text-28 { font-size: 28px; }
@media (min-width: 780px) { .text-28-above-medium { font-size: 28px; } }
@media (max-width: 780px) { .text-28-below-medium { font-size: 28px; } }
@media (min-width: 1200px) { .text-28-above-large { font-size: 28px; } }
@media (max-width: 1200px) { .text-28-below-large { font-size: 28px; } }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.text-atlas-grotesk { font-family: atlas grotesk, Helvetica, Arial, sans-serif; }
.text-atlas-grotesk-semi { font-weight: 700; }
.text-atlas-grotesk-bold { font-weight: 900; }
.top-0 { top: 0px; }
@media (min-width: 780px) { .top-0-above-medium { top: 0px; } }
@media (max-width: 780px) { .top-0-below-medium { top: 0px; } }
@media (min-width: 1200px) { .top-0-above-large { top: 0px; } }
@media (max-width: 1200px) { .top-0-below-large { top: 0px; } }
.top-1 { top: 5px; }
@media (min-width: 780px) { .top-1-above-medium { top: 5px; } }
@media (max-width: 780px) { .top-1-below-medium { top: 5px; } }
@media (min-width: 1200px) { .top-1-above-large { top: 5px; } }
@media (max-width: 1200px) { .top-1-below-large { top: 5px; } }
.top-2 { top: 10px; }
@media (min-width: 780px) { .top-2-above-medium { top: 10px; } }
@media (max-width: 780px) { .top-2-below-medium { top: 10px; } }
@media (min-width: 1200px) { .top-2-above-large { top: 10px; } }
@media (max-width: 1200px) { .top-2-below-large { top: 10px; } }
.top-3 { top: 15px; }
@media (min-width: 780px) { .top-3-above-medium { top: 15px; } }
@media (max-width: 780px) { .top-3-below-medium { top: 15px; } }
@media (min-width: 1200px) { .top-3-above-large { top: 15px; } }
@media (max-width: 1200px) { .top-3-below-large { top: 15px; } }
.top-4 { top: 20px; }
@media (min-width: 780px) { .top-4-above-medium { top: 20px; } }
@media (max-width: 780px) { .top-4-below-medium { top: 20px; } }
@media (min-width: 1200px) { .top-4-above-large { top: 20px; } }
@media (max-width: 1200px) { .top-4-below-large { top: 20px; } }
.top-5 { top: 25px; }
@media (min-width: 780px) { .top-5-above-medium { top: 25px; } }
@media (max-width: 780px) { .top-5-below-medium { top: 25px; } }
@media (min-width: 1200px) { .top-5-above-large { top: 25px; } }
@media (max-width: 1200px) { .top-5-below-large { top: 25px; } }
.top-6 { top: 30px; }
@media (min-width: 780px) { .top-6-above-medium { top: 30px; } }
@media (max-width: 780px) { .top-6-below-medium { top: 30px; } }
@media (min-width: 1200px) { .top-6-above-large { top: 30px; } }
@media (max-width: 1200px) { .top-6-below-large { top: 30px; } }
.top-7 { top: 35px; }
@media (min-width: 780px) { .top-7-above-medium { top: 35px; } }
@media (max-width: 780px) { .top-7-below-medium { top: 35px; } }
@media (min-width: 1200px) { .top-7-above-large { top: 35px; } }
@media (max-width: 1200px) { .top-7-below-large { top: 35px; } }
.top-8 { top: 40px; }
@media (min-width: 780px) { .top-8-above-medium { top: 40px; } }
@media (max-width: 780px) { .top-8-below-medium { top: 40px; } }
@media (min-width: 1200px) { .top-8-above-large { top: 40px; } }
@media (max-width: 1200px) { .top-8-below-large { top: 40px; } }
.top-9 { top: 45px; }
@media (min-width: 780px) { .top-9-above-medium { top: 45px; } }
@media (max-width: 780px) { .top-9-below-medium { top: 45px; } }
@media (min-width: 1200px) { .top-9-above-large { top: 45px; } }
@media (max-width: 1200px) { .top-9-below-large { top: 45px; } }
.top-10 { top: 50px; }
@media (min-width: 780px) { .top-10-above-medium { top: 50px; } }
@media (max-width: 780px) { .top-10-below-medium { top: 50px; } }
@media (min-width: 1200px) { .top-10-above-large { top: 50px; } }
@media (max-width: 1200px) { .top-10-below-large { top: 50px; } }
.top-11 { top: 55px; }
@media (min-width: 780px) { .top-11-above-medium { top: 55px; } }
@media (max-width: 780px) { .top-11-below-medium { top: 55px; } }
@media (min-width: 1200px) { .top-11-above-large { top: 55px; } }
@media (max-width: 1200px) { .top-11-below-large { top: 55px; } }
.top-12 { top: 60px; }
@media (min-width: 780px) { .top-12-above-medium { top: 60px; } }
@media (max-width: 780px) { .top-12-below-medium { top: 60px; } }
@media (min-width: 1200px) { .top-12-above-large { top: 60px; } }
@media (max-width: 1200px) { .top-12-below-large { top: 60px; } }
.top-13 { top: 65px; }
@media (min-width: 780px) { .top-13-above-medium { top: 65px; } }
@media (max-width: 780px) { .top-13-below-medium { top: 65px; } }
@media (min-width: 1200px) { .top-13-above-large { top: 65px; } }
@media (max-width: 1200px) { .top-13-below-large { top: 65px; } }
.top-14 { top: 70px; }
@media (min-width: 780px) { .top-14-above-medium { top: 70px; } }
@media (max-width: 780px) { .top-14-below-medium { top: 70px; } }
@media (min-width: 1200px) { .top-14-above-large { top: 70px; } }
@media (max-width: 1200px) { .top-14-below-large { top: 70px; } }
.top-15 { top: 75px; }
@media (min-width: 780px) { .top-15-above-medium { top: 75px; } }
@media (max-width: 780px) { .top-15-below-medium { top: 75px; } }
@media (min-width: 1200px) { .top-15-above-large { top: 75px; } }
@media (max-width: 1200px) { .top-15-below-large { top: 75px; } }
.top-auto { top: auto !important; }
.transition-0-25 { transition: 0.25s; }
.transition-0-5 { transition: 0.5s; }
.transition-1 { transition: 1s; }
.transition-1-5 { transition: 1.5s; }
.vertical-align-top { vertical-align: top; }
@media (min-width: 780px) { .vertical-align-top-above-medium { vertical-align: top; } }
@media (max-width: 780px) { .vertical-align-top-below-medium { vertical-align: top; } }
@media (min-width: 1200px) { .vertical-align-top-above-large { vertical-align: top; } }
@media (max-width: 1200px) { .vertical-align-top-below-large { vertical-align: top; } }
.vertical-align-middle { vertical-align: middle; }
@media (min-width: 780px) { .vertical-align-middle-above-medium { vertical-align: middle; } }
@media (max-width: 780px) { .vertical-align-middle-below-medium { vertical-align: middle; } }
@media (min-width: 1200px) { .vertical-align-middle-above-large { vertical-align: middle; } }
@media (max-width: 1200px) { .vertical-align-middle-below-large { vertical-align: middle; } }
.vertical-align-bottom { vertical-align: bottom; }
@media (min-width: 780px) { .vertical-align-bottom-above-medium { vertical-align: bottom; } }
@media (max-width: 780px) { .vertical-align-bottom-below-medium { vertical-align: bottom; } }
@media (min-width: 1200px) { .vertical-align-bottom-above-large { vertical-align: bottom; } }
@media (max-width: 1200px) { .vertical-align-bottom-below-large { vertical-align: bottom; } }
.visibility { visibility: visible; }
@media (min-width: 780px) { .visibility-above-medium { visibility: visible; } }
@media (max-width: 780px) { .visibility-below-medium { visibility: visible; } }
@media (min-width: 1200px) { .visibility-above-large { visibility: visible; } }
@media (max-width: 1200px) { .visibility-below-large { visibility: visible; } }
.hidden { visibility: hidden !important; }
@media (min-width: 780px) { .hidden-above-medium { visibility: hidden !important; } }
@media (max-width: 780px) { .hidden-below-medium { visibility: hidden !important; } }
@media (min-width: 1200px) { .hidden-above-large { visibility: hidden !important; } }
@media (max-width: 1200px) { .hidden-below-large { visibility: hidden !important; } }
.hide { display: none !important; }
@media (min-width: 780px) { .hide-above-medium { display: none !important; } }
@media (max-width: 780px) { .hide-below-medium { display: none !important; } }
@media (min-width: 1200px) { .hide-above-large { display: none !important; } }
@media (max-width: 1200px) { .hide-below-large { display: none !important; } }
.is-visible { display: block !important; }
.is-hidden { display: none !important; }
.hide { display: none !important; }
.width-full { width: 100%; }
.width-100 { width: 100px; }
.width-200 { width: 200px; }
.width-300 { width: 300px; }
.width-400 { width: 400px; }
.width-500 { width: 500px; }
.width-600 { width: 600px; }
.width-700 { width: 700px; }
.width-800 { width: 800px; }
.width-900 { width: 900px; }
.width-1000 { width: 1000px; }
.z-index-0 { z-index: 0; }
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }
.z-index-4 { z-index: 4; }
.z-index-5 { z-index: 5; }
.z-index-6 { z-index: 6; }
.z-index-7 { z-index: 7; }
.z-index-8 { z-index: 8; }
.z-index-9 { z-index: 9; }
.z-index-10 { z-index: 10; }
.z-index-99 { z-index: 99; }
.z-index-999 { z-index: 999; }
.z-index-9999 { z-index: 9999; }
.button { background-color: blue; border: 0; display: inline-block; color: white; padding: 0 30px; height: 45px; line-height: 45px; border-radius: 100px; }
.button { border: 1px solid #d6d6ff; color: blue; bottom: 20px; left: 30px; background: white; padding: 0 40px; font-weight: 400 !important; }
table { width: 100%; border: 1px solid #e8e8e8; border-spacing: 0; border-radius: 3px; }
table td { padding: 25px; font-size: 14px; }
table thead th { text-align: left; padding: 15px 25px; font-weight: 400; font-size: 14px; border-bottom: 1px solid #e8e8e8; }
table td { vertical-align: top; }
table td, table th { border-right: 1px solid #e5e5e5; }
table p { font-size: 14px !important; }
.settings-table { width: 100%; }
.settings-table tr td:first-child { width: 400px; }
.settings-intro { border: 0 !important; }
.article, section { padding: 100px 0; }
.article:not(:last-of-type), section:not(:last-of-type) { border-bottom: 1px solid #efefef; }
.article h1, section h1 { font-size: 42px; }
.article h1, section h1 { margin-bottom: 50px; }
.article > h1, .article h2, .article table, section > h1, section h2, section table { max-width: 650px; margin: 0 auto; }
.article > h1, .article h2, section > h1, section h2 { font-weight: 400 !important; }
.article > h1:after, .article h2:after, section > h1:after, section h2:after { content: ""; background: blue; width: 30px; left: 0; height: 5px; display: block; margin: 25px 0; }
.article .page-title, section .page-title { font-size: 60px; }
.article .page-title:after, section .page-title:after { display: none; }
.article > h1, .article h2, .article h3, .article h4, .article h5, .article h6, section > h1, section h2, section h3, section h4, section h5, section h6 { font-weight: 100; }
.article h2, section h2 { font-size: 28px; }
.article h3, section h3 { font-size: 24px; }
.article .link, section .link { text-decoration: none !important; position: relative; }
.article .link:after, section .link:after { content: ""; position: absolute; top: 100%; width: 100%; left: 0; height: 2px; background: #efefef; }
.article .link:hover:after, section .link:hover:after { background: #bcbcbc; }
.article .bullet-list, section .bullet-list { list-style-type: none; margin: 0; padding: 0; }
.article .bullet-list > li, section .bullet-list > li { line-height: inherit; }
.article .bullet-list > li, section .bullet-list > li { position: relative; padding-left: 20px; }
.article .bullet-list > li:after, section .bullet-list > li:after { width: 6px; height: 6px; border-radius: 6px; background: blue; position: absolute; top: 14px; left: 0; content: ""; display: block; }
.article h3, section h3 { max-width: 650px; margin: 0 auto; }
.article p, .article .bullet-list, section p, section .bullet-list { font-weight: 300; font-size: 16px; margin: 0 auto 30px; max-width: 650px; line-height: 2; }
@media (min-width: 1200px) { .article p, .article .bullet-list, section p, section .bullet-list { font-size: 18px; } }
.article p > a, .article li > a, section p > a, section li > a { text-decoration: underline; }
.article ul > li, section ul > li { line-height: 1.5; }
.article ul > li:last-child, section ul > li:last-child { margin-bottom: 0; }
.article h2, section h2 { margin-bottom: 25px; }
.article h3, section h3 { margin-top: 100px; margin-bottom: 25px; }
.article p:last-child, .article ul li:last-child, section p:last-child, section ul li:last-child { margin-bottom: 0; }
.docs-container { overflow: hidden; height: 100%; background: #f5f5f5; }
.docs-container .docs-content { width: calc(100% - 300px); float: left; height: 100%; }
.docs-container .docs-content .inner { overflow-y: scroll; background: white; height: calc(100% - 100px); max-width: 1000px; }
.intro-section { border-bottom: 0 !important; padding-bottom: 0; }
.intro-section h1 { font-size: 80px; font-weight: 100 !important; margin-bottom: 0 !important; }
.intro-section h1:after { display: none; }
.inline-code { font-family: "Roboto Mono"; border: 1px solid #efefef; padding: 3px 5px 4px 5px; color: #263238; font-size: 13px; border-radius: 2px; line-height: 1; display: inline-block; position: relative; top: -1px; }
code { font-family: "Roboto Mono"; }
pre { font-family: "Roboto Mono"; border: 1px solid #e8e8e8; padding: 25px; font-size: 13px; border-radius: 3px; margin: 0; line-height: 1.5; max-width: 650px; margin: 0 auto; -moz-tab-size: 3; tab-size: 3; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; }
pre:not(:last-of-type) { margin-bottom: 40px; }
.hljs { display: block; overflow-x: auto; background: #FFFFFF; }
.hljs-keyword { color: #607D8B; }
.hljs-comment { color: #90A4AE; }
.hljs-variable, .hljs-number, .hljs-selector-class, .hljs-attribute { color: #455A64; }
.docs-navigation { width: 300px; float: left; height: 100%; background: white; border-right: 1px solid #efefef; position: relative; z-index: 999; }
.docs-navigation > a { display: block; padding: 40px; color: #546E7A; }
.docs-navigation .parent { padding: 30px 40px; display: block; }
.docs-navigation .parent:hover { color: blue; }
.docs-navigation .inner { height: calc(100% - 100px); overflow-y: scroll; }
.docs-navigation .navigation-footer { border-top: 1px solid #efefef; display: table; width: 100%; text-align: center; height: 100px; }
.sub-navigation { list-style-type: none; margin: 0; padding: 0; background: #ECEFF1; display: none; }
.sub-navigation > li { line-height: inherit; }
.sub-navigation a { display: block; padding: 25px 40px; font-size: 14px; color: #607D8B; }
.sub-navigation a:hover { color: black; }
.nav-logo { padding: 60px; text-align: center; }
.nav-logo img { max-width: 160px; display: inline-block; }
.tabbed-code { border: 1px solid #efefef; }
.tabbed-code .tabbed-code-navigation { list-style-type: none; margin: 0; padding: 0; zoom: 1; border-bottom: 1px solid #efefef; }
.tabbed-code .tabbed-code-navigation > li { line-height: inherit; }
.tabbed-code .tabbed-code-navigation:before, .tabbed-code .tabbed-code-navigation:after { content: ""; display: table; }
.tabbed-code .tabbed-code-navigation:after { clear: both; }
.tabbed-code .tabbed-code-navigation > li { float: left; padding: 15px 25px; font-size: 13px; border-right: 1px solid #efefef; cursor: pointer; }
.tabbed-code .tabbed-code-navigation > li.is-active { color: blue; }
.tabbed-code pre { border: 0; }
.tabbed-code .tabbed-code-tab { display: none; overflow: scroll; max-height: 400px; }
.tabbed-code .tabbed-code-tab.is-open { display: block; }
.label { text-transform: uppercase; letter-spacing: 0.1em; border-radius: 40px; padding: 5px 8px 2px 8px; font-size: 10px; color: green; border: 1px solid green; }
.label.label-red { border: 1px solid red; color: red; }
html { color: #263238; }
body { overflow: hidden; height: 100%; font-family: atlas grotesk, Helvetica, Arial, sans-serif; }
.next { background: white; border-top: 1px solid #efefef; box-shadow: -10px -20px 5px rgba(0, 0, 0, 0.2); padding: 30px; font-size: 18px; bottom: 0; text-align: right; max-width: 1000px; }
.next:hover { background-color: #3333ff; cursor: pointer; }
.next .next-arrow { width: 120px; height: 120px; position: absolute; background-color: #0000cc; right: 0; top: 0; }
::-moz-selection { background: #e6e6ff; }
::selection { background: #e6e6ff; } | documentation/inc/css/style.css | .justify-content-center { -ms-flex-pack: center; justify-content: center; }
.align-content-center { -ms-flex-line-pack: center; align-content: center; }
@media (min-width: 780px) { .align-content-center-above-medium { -ms-flex-line-pack: center; align-content: center; } }
@media (max-width: 780px) { .align-content-center-below-medium { -ms-flex-line-pack: center; align-content: center; } }
@media (min-width: 1200px) { .align-content-center-above-large { -ms-flex-line-pack: center; align-content: center; } }
@media (max-width: 1200px) { .align-content-center-below-large { -ms-flex-line-pack: center; align-content: center; } }
.align-content-stretch { -ms-flex-line-pack: stretch; align-content: stretch; }
@media (min-width: 780px) { .align-content-stretch-above-medium { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (max-width: 780px) { .align-content-stretch-below-medium { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (min-width: 1200px) { .align-content-stretch-above-large { -ms-flex-line-pack: stretch; align-content: stretch; } }
@media (max-width: 1200px) { .align-content-stretch-below-large { -ms-flex-line-pack: stretch; align-content: stretch; } }
.align-content-flex-start { -ms-flex-line-pack: start; align-content: flex-start; }
@media (min-width: 780px) { .align-content-flex-start-above-medium { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (max-width: 780px) { .align-content-flex-start-below-medium { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (min-width: 1200px) { .align-content-flex-start-above-large { -ms-flex-line-pack: start; align-content: flex-start; } }
@media (max-width: 1200px) { .align-content-flex-start-below-large { -ms-flex-line-pack: start; align-content: flex-start; } }
.align-content-flex-end { -ms-flex-line-pack: end; align-content: flex-end; }
@media (min-width: 780px) { .align-content-flex-end-above-medium { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (max-width: 780px) { .align-content-flex-end-below-medium { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (min-width: 1200px) { .align-content-flex-end-above-large { -ms-flex-line-pack: end; align-content: flex-end; } }
@media (max-width: 1200px) { .align-content-flex-end-below-large { -ms-flex-line-pack: end; align-content: flex-end; } }
.align-content-space-between { -ms-flex-line-pack: justify; align-content: space-between; }
@media (min-width: 780px) { .align-content-space-between-above-medium { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (max-width: 780px) { .align-content-space-between-below-medium { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (min-width: 1200px) { .align-content-space-between-above-large { -ms-flex-line-pack: justify; align-content: space-between; } }
@media (max-width: 1200px) { .align-content-space-between-below-large { -ms-flex-line-pack: justify; align-content: space-between; } }
.align-content-space-around { -ms-flex-line-pack: distribute; align-content: space-around; }
@media (min-width: 780px) { .align-content-space-around-above-medium { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (max-width: 780px) { .align-content-space-around-below-medium { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (min-width: 1200px) { .align-content-space-around-above-large { -ms-flex-line-pack: distribute; align-content: space-around; } }
@media (max-width: 1200px) { .align-content-space-around-below-large { -ms-flex-line-pack: distribute; align-content: space-around; } }
.align-items-flex-start { -ms-flex-align: start; align-items: flex-start; }
@media (min-width: 780px) { .align-items-flex-start-above-medium { -ms-flex-align: start; align-items: flex-start; } }
@media (max-width: 780px) { .align-items-flex-start-below-medium { -ms-flex-align: start; align-items: flex-start; } }
@media (min-width: 1200px) { .align-items-flex-start-above-large { -ms-flex-align: start; align-items: flex-start; } }
@media (max-width: 1200px) { .align-items-flex-start-below-large { -ms-flex-align: start; align-items: flex-start; } }
.align-items-flex-end { -ms-flex-align: end; align-items: flex-end; }
@media (min-width: 780px) { .align-items-flex-end-above-medium { -ms-flex-align: end; align-items: flex-end; } }
@media (max-width: 780px) { .align-items-flex-end-below-medium { -ms-flex-align: end; align-items: flex-end; } }
@media (min-width: 1200px) { .align-items-flex-end-above-large { -ms-flex-align: end; align-items: flex-end; } }
@media (max-width: 1200px) { .align-items-flex-end-below-large { -ms-flex-align: end; align-items: flex-end; } }
.align-items-center { -ms-flex-align: center; align-items: center; }
@media (min-width: 780px) { .align-items-center-above-medium { -ms-flex-align: center; align-items: center; } }
@media (max-width: 780px) { .align-items-center-below-medium { -ms-flex-align: center; align-items: center; } }
@media (min-width: 1200px) { .align-items-center-above-large { -ms-flex-align: center; align-items: center; } }
@media (max-width: 1200px) { .align-items-center-below-large { -ms-flex-align: center; align-items: center; } }
.aspect-ratio-16-9 { position: relative; }
.aspect-ratio-16-9:before { display: block; content: ""; width: 100%; padding-top: 56.25%; }
.aspect-ratio-16-9 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.aspect-ratio-4-3 { position: relative; }
.aspect-ratio-4-3:before { display: block; content: ""; width: 100%; padding-top: 75%; }
.aspect-ratio-4-3 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.aspect-ratio-1-1 { position: relative; }
.aspect-ratio-1-1:before { display: block; content: ""; width: 100%; padding-top: 100%; }
.aspect-ratio-1-1 > .aspect-ratio-content { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
.background-white { background-color: white; }
.background-brand { background-color: blue; }
.background-brand-hover:hover { background-color: blue; }
.background-keyline { background-color: #efefef; }
.background-keyline-hover:hover { background-color: #efefef; }
.background-greyscale-x-light { background-color: #e5e5e5; }
.background-greyscale-x-light-hover:hover { background-color: #e5e5e5; }
.background-greyscale-50 { background-color: #ECEFF1; }
.background-greyscale-50-hover:hover { background-color: #ECEFF1; }
.background-greyscale-100 { background-color: #CFD8DC; }
.background-greyscale-100-hover:hover { background-color: #CFD8DC; }
.background-greyscale-200 { background-color: #B0BEC5; }
.background-greyscale-200-hover:hover { background-color: #B0BEC5; }
.background-greyscale-300 { background-color: #90A4AE; }
.background-greyscale-300-hover:hover { background-color: #90A4AE; }
.background-greyscale-400 { background-color: #78909C; }
.background-greyscale-400-hover:hover { background-color: #78909C; }
.background-greyscale-500 { background-color: #607D8B; }
.background-greyscale-500-hover:hover { background-color: #607D8B; }
.background-greyscale-600 { background-color: #546E7A; }
.background-greyscale-600-hover:hover { background-color: #546E7A; }
.background-greyscale-700 { background-color: #455A64; }
.background-greyscale-700-hover:hover { background-color: #455A64; }
.background-greyscale-800 { background-color: #37474F; }
.background-greyscale-800-hover:hover { background-color: #37474F; }
.background-greyscale-900 { background-color: #263238; }
.background-greyscale-900-hover:hover { background-color: #263238; }
.background-position-top { background-position: top; }
@media (min-width: 780px) { .background-position-top-above-medium { background-position: top; } }
@media (max-width: 780px) { .background-position-top-below-medium { background-position: top; } }
@media (min-width: 1200px) { .background-position-top-above-large { background-position: top; } }
@media (max-width: 1200px) { .background-position-top-below-large { background-position: top; } }
.background-position-center { background-position: center; }
@media (min-width: 780px) { .background-position-center-above-medium { background-position: center; } }
@media (max-width: 780px) { .background-position-center-below-medium { background-position: center; } }
@media (min-width: 1200px) { .background-position-center-above-large { background-position: center; } }
@media (max-width: 1200px) { .background-position-center-below-large { background-position: center; } }
.background-position-bottom { background-position: bottom; }
@media (min-width: 780px) { .background-position-bottom-above-medium { background-position: bottom; } }
@media (max-width: 780px) { .background-position-bottom-below-medium { background-position: bottom; } }
@media (min-width: 1200px) { .background-position-bottom-above-large { background-position: bottom; } }
@media (max-width: 1200px) { .background-position-bottom-below-large { background-position: bottom; } }
.background-size-cover { background-size: cover; }
@media (min-width: 780px) { .background-size-cover-above-medium { background-size: cover; } }
@media (max-width: 780px) { .background-size-cover-below-medium { background-size: cover; } }
@media (min-width: 1200px) { .background-size-cover-above-large { background-size: cover; } }
@media (max-width: 1200px) { .background-size-cover-below-large { background-size: cover; } }
.background-size-contain { background-size: contain; }
@media (min-width: 780px) { .background-size-contain-above-medium { background-size: contain; } }
@media (max-width: 780px) { .background-size-contain-below-medium { background-size: contain; } }
@media (min-width: 1200px) { .background-size-contain-above-large { background-size: contain; } }
@media (max-width: 1200px) { .background-size-contain-below-large { background-size: contain; } }
.background-size-100 { background-size: 100%; }
@media (min-width: 780px) { .background-size-100-above-medium { background-size: 100%; } }
@media (max-width: 780px) { .background-size-100-below-medium { background-size: 100%; } }
@media (min-width: 1200px) { .background-size-100-above-large { background-size: 100%; } }
@media (max-width: 1200px) { .background-size-100-below-large { background-size: 100%; } }
.border-radius-1 { border-radius: 1px; }
.border-radius-top-1 { border-top-left-radius: 1px; border-top-right-radius: 1px; }
.border-radius-top-left-1 { border-top-left-radius: 1px; }
.border-radius-top-right-1 { border-top-right-radius: 1px; }
.border-radius-bottom-1 { border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; }
.border-radius-bottom-left-1 { border-bottom-left-radius: 1px; }
.border-radius-bottom-right-1 { border-bottom-right-radius: 1px; }
.border-radius-2 { border-radius: 2px; }
.border-radius-top-2 { border-top-left-radius: 2px; border-top-right-radius: 2px; }
.border-radius-top-left-2 { border-top-left-radius: 2px; }
.border-radius-top-right-2 { border-top-right-radius: 2px; }
.border-radius-bottom-2 { border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; }
.border-radius-bottom-left-2 { border-bottom-left-radius: 2px; }
.border-radius-bottom-right-2 { border-bottom-right-radius: 2px; }
.border-radius-3 { border-radius: 3px; }
.border-radius-top-3 { border-top-left-radius: 3px; border-top-right-radius: 3px; }
.border-radius-top-left-3 { border-top-left-radius: 3px; }
.border-radius-top-right-3 { border-top-right-radius: 3px; }
.border-radius-bottom-3 { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; }
.border-radius-bottom-left-3 { border-bottom-left-radius: 3px; }
.border-radius-bottom-right-3 { border-bottom-right-radius: 3px; }
.border-radius-4 { border-radius: 4px; }
.border-radius-top-4 { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.border-radius-top-left-4 { border-top-left-radius: 4px; }
.border-radius-top-right-4 { border-top-right-radius: 4px; }
.border-radius-bottom-4 { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.border-radius-bottom-left-4 { border-bottom-left-radius: 4px; }
.border-radius-bottom-right-4 { border-bottom-right-radius: 4px; }
.border-radius-5 { border-radius: 5px; }
.border-radius-top-5 { border-top-left-radius: 5px; border-top-right-radius: 5px; }
.border-radius-top-left-5 { border-top-left-radius: 5px; }
.border-radius-top-right-5 { border-top-right-radius: 5px; }
.border-radius-bottom-5 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; }
.border-radius-bottom-left-5 { border-bottom-left-radius: 5px; }
.border-radius-bottom-right-5 { border-bottom-right-radius: 5px; }
.no-border-radius { border-radius: 0 !important; }
.no-border-radius-top { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; }
.no-border-radius-top-left { border-top-left-radius: 0 !important; }
.no-border-radius-top-right { border-top-right-radius: 0 !important; }
.no-border-radius-bottom { border-bottom-left-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.no-border-radius-bottom-left { border-bottom-left-radius: 0 !important; }
.no-border-radius-bottom-right { border-bottom-right-radius: 0 !important; }
.no-border { border: none !important; }
@media (min-width: 780px) { .no-border-above-medium { border: none !important; } }
@media (max-width: 780px) { .no-border-below-medium { border: none !important; } }
@media (min-width: 1200px) { .no-border-above-large { border: none !important; } }
@media (max-width: 1200px) { .no-border-below-large { border: none !important; } }
.no-border-last:last-of-type { border: none !important; }
.border { border: 1px solid #efefef; }
@media (min-width: 780px) { .border-above-medium { border: 1px solid #efefef; } }
@media (max-width: 780px) { .border-below-medium { border: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-above-large { border: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-below-large { border: 1px solid #efefef; } }
.border { border-all: 1px solid #efefef; }
@media (min-width: 780px) { .border-above-medium { border-all: 1px solid #efefef; } }
@media (max-width: 780px) { .border-below-medium { border-all: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-above-large { border-all: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-below-large { border-all: 1px solid #efefef; } }
.border-top { border-top: 1px solid #efefef; }
@media (min-width: 780px) { .border-top-above-medium { border-top: 1px solid #efefef; } }
@media (max-width: 780px) { .border-top-below-medium { border-top: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-top-above-large { border-top: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-top-below-large { border-top: 1px solid #efefef; } }
.border-right { border-right: 1px solid #efefef; }
@media (min-width: 780px) { .border-right-above-medium { border-right: 1px solid #efefef; } }
@media (max-width: 780px) { .border-right-below-medium { border-right: 1px solid #efefef; } }
@media (min-width: 1200px) { .border-right-above-large { border-right: 1px solid #efefef; } }
@media (max-width: 1200px) { .border-right-below-large { border-right: 1px solid #efefef; } }
.bottom { border-bottom: 1px solid #efefef; }
@media (min-width: 780px) { .bottom-above-medium { border-bottom: 1px solid #efefef; } }
@media (max-width: 780px) { .bottom-below-medium { border-bottom: 1px solid #efefef; } }
@media (min-width: 1200px) { .bottom-above-large { border-bottom: 1px solid #efefef; } }
@media (max-width: 1200px) { .bottom-below-large { border-bottom: 1px solid #efefef; } }
.left { border-left: 1px solid #efefef; }
@media (min-width: 780px) { .left-above-medium { border-left: 1px solid #efefef; } }
@media (max-width: 780px) { .left-below-medium { border-left: 1px solid #efefef; } }
@media (min-width: 1200px) { .left-above-large { border-left: 1px solid #efefef; } }
@media (max-width: 1200px) { .left-below-large { border-left: 1px solid #efefef; } }
.no-border { border-all: none !important; }
@media (min-width: 780px) { .no-border { border-all: none !important; } }
@media (max-width: 780px) { .no-border { border-all: none !important; } }
@media (min-width: 1200px) { .no-border { border-all: none !important; } }
@media (max-width: 1200px) { .no-border { border-all: none !important; } }
.no-border-last:last-of-type { border-all: none !important; }
.no-border { border-top: none !important; }
@media (min-width: 780px) { .no-border { border-top: none !important; } }
@media (max-width: 780px) { .no-border { border-top: none !important; } }
@media (min-width: 1200px) { .no-border { border-top: none !important; } }
@media (max-width: 1200px) { .no-border { border-top: none !important; } }
.no-border-top-last:last-of-type { border-top: none !important; }
.no-border { border-right: none !important; }
@media (min-width: 780px) { .no-border { border-right: none !important; } }
@media (max-width: 780px) { .no-border { border-right: none !important; } }
@media (min-width: 1200px) { .no-border { border-right: none !important; } }
@media (max-width: 1200px) { .no-border { border-right: none !important; } }
.no-border-right-last:last-of-type { border-right: none !important; }
.no-border { border-bottom: none !important; }
@media (min-width: 780px) { .no-border { border-bottom: none !important; } }
@media (max-width: 780px) { .no-border { border-bottom: none !important; } }
@media (min-width: 1200px) { .no-border { border-bottom: none !important; } }
@media (max-width: 1200px) { .no-border { border-bottom: none !important; } }
.no-bottom-last:last-of-type { border-bottom: none !important; }
.no-border { border-left: none !important; }
@media (min-width: 780px) { .no-border { border-left: none !important; } }
@media (max-width: 780px) { .no-border { border-left: none !important; } }
@media (min-width: 1200px) { .no-border { border-left: none !important; } }
@media (max-width: 1200px) { .no-border { border-left: none !important; } }
.no-left-last:last-of-type { border-left: none !important; }
.bottom-0 { bottom: 0px; }
@media (min-width: 780px) { .bottom-0-above-medium { bottom: 0px; } }
@media (max-width: 780px) { .bottom-0-below-medium { bottom: 0px; } }
@media (min-width: 1200px) { .bottom-0-above-large { bottom: 0px; } }
@media (max-width: 1200px) { .bottom-0-below-large { bottom: 0px; } }
.bottom-1 { bottom: 5px; }
@media (min-width: 780px) { .bottom-1-above-medium { bottom: 5px; } }
@media (max-width: 780px) { .bottom-1-below-medium { bottom: 5px; } }
@media (min-width: 1200px) { .bottom-1-above-large { bottom: 5px; } }
@media (max-width: 1200px) { .bottom-1-below-large { bottom: 5px; } }
.bottom-2 { bottom: 10px; }
@media (min-width: 780px) { .bottom-2-above-medium { bottom: 10px; } }
@media (max-width: 780px) { .bottom-2-below-medium { bottom: 10px; } }
@media (min-width: 1200px) { .bottom-2-above-large { bottom: 10px; } }
@media (max-width: 1200px) { .bottom-2-below-large { bottom: 10px; } }
.bottom-3 { bottom: 15px; }
@media (min-width: 780px) { .bottom-3-above-medium { bottom: 15px; } }
@media (max-width: 780px) { .bottom-3-below-medium { bottom: 15px; } }
@media (min-width: 1200px) { .bottom-3-above-large { bottom: 15px; } }
@media (max-width: 1200px) { .bottom-3-below-large { bottom: 15px; } }
.bottom-4 { bottom: 20px; }
@media (min-width: 780px) { .bottom-4-above-medium { bottom: 20px; } }
@media (max-width: 780px) { .bottom-4-below-medium { bottom: 20px; } }
@media (min-width: 1200px) { .bottom-4-above-large { bottom: 20px; } }
@media (max-width: 1200px) { .bottom-4-below-large { bottom: 20px; } }
.bottom-5 { bottom: 25px; }
@media (min-width: 780px) { .bottom-5-above-medium { bottom: 25px; } }
@media (max-width: 780px) { .bottom-5-below-medium { bottom: 25px; } }
@media (min-width: 1200px) { .bottom-5-above-large { bottom: 25px; } }
@media (max-width: 1200px) { .bottom-5-below-large { bottom: 25px; } }
.bottom-6 { bottom: 30px; }
@media (min-width: 780px) { .bottom-6-above-medium { bottom: 30px; } }
@media (max-width: 780px) { .bottom-6-below-medium { bottom: 30px; } }
@media (min-width: 1200px) { .bottom-6-above-large { bottom: 30px; } }
@media (max-width: 1200px) { .bottom-6-below-large { bottom: 30px; } }
.bottom-7 { bottom: 35px; }
@media (min-width: 780px) { .bottom-7-above-medium { bottom: 35px; } }
@media (max-width: 780px) { .bottom-7-below-medium { bottom: 35px; } }
@media (min-width: 1200px) { .bottom-7-above-large { bottom: 35px; } }
@media (max-width: 1200px) { .bottom-7-below-large { bottom: 35px; } }
.bottom-8 { bottom: 40px; }
@media (min-width: 780px) { .bottom-8-above-medium { bottom: 40px; } }
@media (max-width: 780px) { .bottom-8-below-medium { bottom: 40px; } }
@media (min-width: 1200px) { .bottom-8-above-large { bottom: 40px; } }
@media (max-width: 1200px) { .bottom-8-below-large { bottom: 40px; } }
.bottom-9 { bottom: 45px; }
@media (min-width: 780px) { .bottom-9-above-medium { bottom: 45px; } }
@media (max-width: 780px) { .bottom-9-below-medium { bottom: 45px; } }
@media (min-width: 1200px) { .bottom-9-above-large { bottom: 45px; } }
@media (max-width: 1200px) { .bottom-9-below-large { bottom: 45px; } }
.bottom-10 { bottom: 50px; }
@media (min-width: 780px) { .bottom-10-above-medium { bottom: 50px; } }
@media (max-width: 780px) { .bottom-10-below-medium { bottom: 50px; } }
@media (min-width: 1200px) { .bottom-10-above-large { bottom: 50px; } }
@media (max-width: 1200px) { .bottom-10-below-large { bottom: 50px; } }
.bottom-11 { bottom: 55px; }
@media (min-width: 780px) { .bottom-11-above-medium { bottom: 55px; } }
@media (max-width: 780px) { .bottom-11-below-medium { bottom: 55px; } }
@media (min-width: 1200px) { .bottom-11-above-large { bottom: 55px; } }
@media (max-width: 1200px) { .bottom-11-below-large { bottom: 55px; } }
.bottom-12 { bottom: 60px; }
@media (min-width: 780px) { .bottom-12-above-medium { bottom: 60px; } }
@media (max-width: 780px) { .bottom-12-below-medium { bottom: 60px; } }
@media (min-width: 1200px) { .bottom-12-above-large { bottom: 60px; } }
@media (max-width: 1200px) { .bottom-12-below-large { bottom: 60px; } }
.bottom-13 { bottom: 65px; }
@media (min-width: 780px) { .bottom-13-above-medium { bottom: 65px; } }
@media (max-width: 780px) { .bottom-13-below-medium { bottom: 65px; } }
@media (min-width: 1200px) { .bottom-13-above-large { bottom: 65px; } }
@media (max-width: 1200px) { .bottom-13-below-large { bottom: 65px; } }
.bottom-14 { bottom: 70px; }
@media (min-width: 780px) { .bottom-14-above-medium { bottom: 70px; } }
@media (max-width: 780px) { .bottom-14-below-medium { bottom: 70px; } }
@media (min-width: 1200px) { .bottom-14-above-large { bottom: 70px; } }
@media (max-width: 1200px) { .bottom-14-below-large { bottom: 70px; } }
.bottom-15 { bottom: 75px; }
@media (min-width: 780px) { .bottom-15-above-medium { bottom: 75px; } }
@media (max-width: 780px) { .bottom-15-below-medium { bottom: 75px; } }
@media (min-width: 1200px) { .bottom-15-above-large { bottom: 75px; } }
@media (max-width: 1200px) { .bottom-15-below-large { bottom: 75px; } }
.bottom-auto { bottom: auto !important; }
.no-box-shadow { box-shadow: none !important; }
.clearfix { zoom: 1; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.no-clearfix:before, .no-clearfix:after { content: normal !important; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.display-none { display: none; }
@media (min-width: 780px) { .display-none-above-medium { display: none; } }
@media (max-width: 780px) { .display-none-below-medium { display: none; } }
@media (min-width: 1200px) { .display-none-above-large { display: none; } }
@media (max-width: 1200px) { .display-none-below-large { display: none; } }
.display-block { display: block; }
@media (min-width: 780px) { .display-block-above-medium { display: block; } }
@media (max-width: 780px) { .display-block-below-medium { display: block; } }
@media (min-width: 1200px) { .display-block-above-large { display: block; } }
@media (max-width: 1200px) { .display-block-below-large { display: block; } }
.display-inline-block { display: inline-block; }
@media (min-width: 780px) { .display-inline-block-above-medium { display: inline-block; } }
@media (max-width: 780px) { .display-inline-block-below-medium { display: inline-block; } }
@media (min-width: 1200px) { .display-inline-block-above-large { display: inline-block; } }
@media (max-width: 1200px) { .display-inline-block-below-large { display: inline-block; } }
.display-table { display: table; }
@media (min-width: 780px) { .display-table-above-medium { display: table; } }
@media (max-width: 780px) { .display-table-below-medium { display: table; } }
@media (min-width: 1200px) { .display-table-above-large { display: table; } }
@media (max-width: 1200px) { .display-table-below-large { display: table; } }
.display-table-row { display: table-row; }
@media (min-width: 780px) { .display-table-row-above-medium { display: table-row; } }
@media (max-width: 780px) { .display-table-row-below-medium { display: table-row; } }
@media (min-width: 1200px) { .display-table-row-above-large { display: table-row; } }
@media (max-width: 1200px) { .display-table-row-below-large { display: table-row; } }
.display-table-cell { display: table-cell; }
@media (min-width: 780px) { .display-table-cell-above-medium { display: table-cell; } }
@media (max-width: 780px) { .display-table-cell-below-medium { display: table-cell; } }
@media (min-width: 1200px) { .display-table-cell-above-large { display: table-cell; } }
@media (max-width: 1200px) { .display-table-cell-below-large { display: table-cell; } }
.display-flex { display: -ms-flexbox; display: flex; }
@media (min-width: 780px) { .display-flex-above-medium { display: -ms-flexbox; display: flex; } }
@media (max-width: 780px) { .display-flex-below-medium { display: -ms-flexbox; display: flex; } }
@media (min-width: 1200px) { .display-flex-above-large { display: -ms-flexbox; display: flex; } }
@media (max-width: 1200px) { .display-flex-below-large { display: -ms-flexbox; display: flex; } }
.fill-white { fill: white; }
.fill-brand { fill: blue; }
.fill-brand-hover:hover { fill: blue; }
.fill-keyline { fill: #efefef; }
.fill-keyline-hover:hover { fill: #efefef; }
.fill-greyscale-x-light { fill: #e5e5e5; }
.fill-greyscale-x-light-hover:hover { fill: #e5e5e5; }
.fill-greyscale-50 { fill: #ECEFF1; }
.fill-greyscale-50-hover:hover { fill: #ECEFF1; }
.fill-greyscale-100 { fill: #CFD8DC; }
.fill-greyscale-100-hover:hover { fill: #CFD8DC; }
.fill-greyscale-200 { fill: #B0BEC5; }
.fill-greyscale-200-hover:hover { fill: #B0BEC5; }
.fill-greyscale-300 { fill: #90A4AE; }
.fill-greyscale-300-hover:hover { fill: #90A4AE; }
.fill-greyscale-400 { fill: #78909C; }
.fill-greyscale-400-hover:hover { fill: #78909C; }
.fill-greyscale-500 { fill: #607D8B; }
.fill-greyscale-500-hover:hover { fill: #607D8B; }
.fill-greyscale-600 { fill: #546E7A; }
.fill-greyscale-600-hover:hover { fill: #546E7A; }
.fill-greyscale-700 { fill: #455A64; }
.fill-greyscale-700-hover:hover { fill: #455A64; }
.fill-greyscale-800 { fill: #37474F; }
.fill-greyscale-800-hover:hover { fill: #37474F; }
.fill-greyscale-900 { fill: #263238; }
.fill-greyscale-900-hover:hover { fill: #263238; }
.flex-direction-column { -ms-flex-direction: column; flex-direction: column; }
@media (min-width: 780px) { .flex-direction-column-above-medium { -ms-flex-direction: column; flex-direction: column; } }
@media (max-width: 780px) { .flex-direction-column-below-medium { -ms-flex-direction: column; flex-direction: column; } }
@media (min-width: 1200px) { .flex-direction-column-above-large { -ms-flex-direction: column; flex-direction: column; } }
@media (max-width: 1200px) { .flex-direction-column-below-large { -ms-flex-direction: column; flex-direction: column; } }
.flex-direction-row { -ms-flex-direction: row; flex-direction: row; }
@media (min-width: 780px) { .flex-direction-row-above-medium { -ms-flex-direction: row; flex-direction: row; } }
@media (max-width: 780px) { .flex-direction-row-below-medium { -ms-flex-direction: row; flex-direction: row; } }
@media (min-width: 1200px) { .flex-direction-row-above-large { -ms-flex-direction: row; flex-direction: row; } }
@media (max-width: 1200px) { .flex-direction-row-below-large { -ms-flex-direction: row; flex-direction: row; } }
.flex-order-1 { -ms-flex-order: 1; order: 1; }
@media (min-width: 780px) { .flex-order-1-above-medium { -ms-flex-order: 1; order: 1; } }
@media (max-width: 780px) { .flex-order-1-below-medium { -ms-flex-order: 1; order: 1; } }
@media (min-width: 1200px) { .flex-order-1-above-large { -ms-flex-order: 1; order: 1; } }
@media (max-width: 1200px) { .flex-order-1-below-large { -ms-flex-order: 1; order: 1; } }
.flex-order-2 { -ms-flex-order: 2; order: 2; }
@media (min-width: 780px) { .flex-order-2-above-medium { -ms-flex-order: 2; order: 2; } }
@media (max-width: 780px) { .flex-order-2-below-medium { -ms-flex-order: 2; order: 2; } }
@media (min-width: 1200px) { .flex-order-2-above-large { -ms-flex-order: 2; order: 2; } }
@media (max-width: 1200px) { .flex-order-2-below-large { -ms-flex-order: 2; order: 2; } }
.flex-order-3 { -ms-flex-order: 3; order: 3; }
@media (min-width: 780px) { .flex-order-3-above-medium { -ms-flex-order: 3; order: 3; } }
@media (max-width: 780px) { .flex-order-3-below-medium { -ms-flex-order: 3; order: 3; } }
@media (min-width: 1200px) { .flex-order-3-above-large { -ms-flex-order: 3; order: 3; } }
@media (max-width: 1200px) { .flex-order-3-below-large { -ms-flex-order: 3; order: 3; } }
.flex-order-4 { -ms-flex-order: 4; order: 4; }
@media (min-width: 780px) { .flex-order-4-above-medium { -ms-flex-order: 4; order: 4; } }
@media (max-width: 780px) { .flex-order-4-below-medium { -ms-flex-order: 4; order: 4; } }
@media (min-width: 1200px) { .flex-order-4-above-large { -ms-flex-order: 4; order: 4; } }
@media (max-width: 1200px) { .flex-order-4-below-large { -ms-flex-order: 4; order: 4; } }
.flex-order-5 { -ms-flex-order: 5; order: 5; }
@media (min-width: 780px) { .flex-order-5-above-medium { -ms-flex-order: 5; order: 5; } }
@media (max-width: 780px) { .flex-order-5-below-medium { -ms-flex-order: 5; order: 5; } }
@media (min-width: 1200px) { .flex-order-5-above-large { -ms-flex-order: 5; order: 5; } }
@media (max-width: 1200px) { .flex-order-5-below-large { -ms-flex-order: 5; order: 5; } }
.flex-order-6 { -ms-flex-order: 6; order: 6; }
@media (min-width: 780px) { .flex-order-6-above-medium { -ms-flex-order: 6; order: 6; } }
@media (max-width: 780px) { .flex-order-6-below-medium { -ms-flex-order: 6; order: 6; } }
@media (min-width: 1200px) { .flex-order-6-above-large { -ms-flex-order: 6; order: 6; } }
@media (max-width: 1200px) { .flex-order-6-below-large { -ms-flex-order: 6; order: 6; } }
.flex-order-7 { -ms-flex-order: 7; order: 7; }
@media (min-width: 780px) { .flex-order-7-above-medium { -ms-flex-order: 7; order: 7; } }
@media (max-width: 780px) { .flex-order-7-below-medium { -ms-flex-order: 7; order: 7; } }
@media (min-width: 1200px) { .flex-order-7-above-large { -ms-flex-order: 7; order: 7; } }
@media (max-width: 1200px) { .flex-order-7-below-large { -ms-flex-order: 7; order: 7; } }
.flex-order-8 { -ms-flex-order: 8; order: 8; }
@media (min-width: 780px) { .flex-order-8-above-medium { -ms-flex-order: 8; order: 8; } }
@media (max-width: 780px) { .flex-order-8-below-medium { -ms-flex-order: 8; order: 8; } }
@media (min-width: 1200px) { .flex-order-8-above-large { -ms-flex-order: 8; order: 8; } }
@media (max-width: 1200px) { .flex-order-8-below-large { -ms-flex-order: 8; order: 8; } }
.flex-order-9 { -ms-flex-order: 9; order: 9; }
@media (min-width: 780px) { .flex-order-9-above-medium { -ms-flex-order: 9; order: 9; } }
@media (max-width: 780px) { .flex-order-9-below-medium { -ms-flex-order: 9; order: 9; } }
@media (min-width: 1200px) { .flex-order-9-above-large { -ms-flex-order: 9; order: 9; } }
@media (max-width: 1200px) { .flex-order-9-below-large { -ms-flex-order: 9; order: 9; } }
.flex-order-10 { -ms-flex-order: 10; order: 10; }
@media (min-width: 780px) { .flex-order-10-above-medium { -ms-flex-order: 10; order: 10; } }
@media (max-width: 780px) { .flex-order-10-below-medium { -ms-flex-order: 10; order: 10; } }
@media (min-width: 1200px) { .flex-order-10-above-large { -ms-flex-order: 10; order: 10; } }
@media (max-width: 1200px) { .flex-order-10-below-large { -ms-flex-order: 10; order: 10; } }
.flex-wrap { -ms-flex-wrap: wrap; flex-wrap: wrap; }
@media (min-width: 780px) { .flex-wrap-above-medium { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (max-width: 780px) { .flex-wrap-below-medium { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (min-width: 1200px) { .flex-wrap-above-large { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
@media (max-width: 1200px) { .flex-wrap-below-large { -ms-flex-wrap: wrap; flex-wrap: wrap; } }
.flex-nowrap { -ms-flex-wrap: nowrap; flex-wrap: nowrap; }
@media (min-width: 780px) { .flex-nowrap-above-medium { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (max-width: 780px) { .flex-nowrap-below-medium { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (min-width: 1200px) { .flex-nowrap-above-large { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
@media (max-width: 1200px) { .flex-nowrap-below-large { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } }
.flex-wrap-reverse { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; }
@media (min-width: 780px) { .flex-wrap-reverse-above-medium { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (max-width: 780px) { .flex-wrap-reverse-below-medium { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (min-width: 1200px) { .flex-wrap-reverse-above-large { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
@media (max-width: 1200px) { .flex-wrap-reverse-below-large { -ms-flex-wrap: wrap-reverse; flex-wrap: wrap-reverse; } }
.float-left { float: left; }
@media (min-width: 780px) { .float-left-above-medium { float: left; } }
@media (max-width: 780px) { .float-left-below-medium { float: left; } }
@media (min-width: 1200px) { .float-left-above-large { float: left; } }
@media (max-width: 1200px) { .float-left-below-large { float: left; } }
.float-right { float: right; }
@media (min-width: 780px) { .float-right-above-medium { float: right; } }
@media (max-width: 780px) { .float-right-below-medium { float: right; } }
@media (min-width: 1200px) { .float-right-above-large { float: right; } }
@media (max-width: 1200px) { .float-right-below-large { float: right; } }
.no-float { float: none !important; }
@media (min-width: 780px) { .no-float-above-medium { float: none !important; } }
@media (max-width: 780px) { .no-float-below-medium { float: none !important; } }
@media (min-width: 1200px) { .no-float-above-large { float: none !important; } }
@media (max-width: 1200px) { .no-float-below-large { float: none !important; } }
.columns-1 { padding: 0 10px; }
@media (max-width: 780px) { .columns-1 { width: 100%; }
.columns-1:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-1 { float: left; width: 8.33333%; } }
.columns-2 { padding: 0 10px; }
@media (max-width: 780px) { .columns-2 { width: 100%; }
.columns-2:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-2 { float: left; width: 16.66667%; } }
.columns-3 { padding: 0 10px; }
@media (max-width: 780px) { .columns-3 { width: 100%; }
.columns-3:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-3 { float: left; width: 25%; } }
.columns-4 { padding: 0 10px; }
@media (max-width: 780px) { .columns-4 { width: 100%; }
.columns-4:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-4 { float: left; width: 33.33333%; } }
.columns-5 { padding: 0 10px; }
@media (max-width: 780px) { .columns-5 { width: 100%; }
.columns-5:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-5 { float: left; width: 41.66667%; } }
.columns-6 { padding: 0 10px; }
@media (max-width: 780px) { .columns-6 { width: 100%; }
.columns-6:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-6 { float: left; width: 50%; } }
.columns-7 { padding: 0 10px; }
@media (max-width: 780px) { .columns-7 { width: 100%; }
.columns-7:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-7 { float: left; width: 58.33333%; } }
.columns-8 { padding: 0 10px; }
@media (max-width: 780px) { .columns-8 { width: 100%; }
.columns-8:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-8 { float: left; width: 66.66667%; } }
.columns-9 { padding: 0 10px; }
@media (max-width: 780px) { .columns-9 { width: 100%; }
.columns-9:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-9 { float: left; width: 75%; } }
.columns-10 { padding: 0 10px; }
@media (max-width: 780px) { .columns-10 { width: 100%; }
.columns-10:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-10 { float: left; width: 83.33333%; } }
.columns-11 { padding: 0 10px; }
@media (max-width: 780px) { .columns-11 { width: 100%; }
.columns-11:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-11 { float: left; width: 91.66667%; } }
.columns-12 { padding: 0 10px; }
@media (max-width: 780px) { .columns-12 { width: 100%; }
.columns-12:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-12 { float: left; width: 100%; } }
.columns-1-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-1-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-1-above-medium { float: left; width: 8.33333%; } }
.columns-1-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-1-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-1-below-medium { float: left; width: 8.33333%; } }
.columns-2-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-2-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-2-above-medium { float: left; width: 16.66667%; } }
.columns-2-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-2-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-2-below-medium { float: left; width: 16.66667%; } }
.columns-3-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-3-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-3-above-medium { float: left; width: 25%; } }
.columns-3-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-3-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-3-below-medium { float: left; width: 25%; } }
.columns-4-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-4-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-4-above-medium { float: left; width: 33.33333%; } }
.columns-4-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-4-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-4-below-medium { float: left; width: 33.33333%; } }
.columns-5-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-5-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-5-above-medium { float: left; width: 41.66667%; } }
.columns-5-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-5-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-5-below-medium { float: left; width: 41.66667%; } }
.columns-6-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-6-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-6-above-medium { float: left; width: 50%; } }
.columns-6-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-6-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-6-below-medium { float: left; width: 50%; } }
.columns-7-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-7-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-7-above-medium { float: left; width: 58.33333%; } }
.columns-7-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-7-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-7-below-medium { float: left; width: 58.33333%; } }
.columns-8-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-8-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-8-above-medium { float: left; width: 66.66667%; } }
.columns-8-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-8-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-8-below-medium { float: left; width: 66.66667%; } }
.columns-9-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-9-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-9-above-medium { float: left; width: 75%; } }
.columns-9-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-9-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-9-below-medium { float: left; width: 75%; } }
.columns-10-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-10-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-10-above-medium { float: left; width: 83.33333%; } }
.columns-10-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-10-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-10-below-medium { float: left; width: 83.33333%; } }
.columns-11-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-11-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-11-above-medium { float: left; width: 91.66667%; } }
.columns-11-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-11-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-11-below-medium { float: left; width: 91.66667%; } }
.columns-12-above-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-12-above-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 780px) { .columns-12-above-medium { float: left; width: 100%; } }
.columns-12-below-medium { padding: 0 10px; }
@media (max-width: 780px) { .columns-12-below-medium:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 780px) { .columns-12-below-medium { float: left; width: 100%; } }
.columns-1-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-1-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-1-above-large { float: left; width: 8.33333%; } }
.columns-1-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-1-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-1-below-large { float: left; width: 8.33333%; } }
.columns-2-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-2-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-2-above-large { float: left; width: 16.66667%; } }
.columns-2-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-2-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-2-below-large { float: left; width: 16.66667%; } }
.columns-3-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-3-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-3-above-large { float: left; width: 25%; } }
.columns-3-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-3-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-3-below-large { float: left; width: 25%; } }
.columns-4-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-4-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-4-above-large { float: left; width: 33.33333%; } }
.columns-4-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-4-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-4-below-large { float: left; width: 33.33333%; } }
.columns-5-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-5-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-5-above-large { float: left; width: 41.66667%; } }
.columns-5-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-5-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-5-below-large { float: left; width: 41.66667%; } }
.columns-6-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-6-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-6-above-large { float: left; width: 50%; } }
.columns-6-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-6-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-6-below-large { float: left; width: 50%; } }
.columns-7-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-7-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-7-above-large { float: left; width: 58.33333%; } }
.columns-7-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-7-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-7-below-large { float: left; width: 58.33333%; } }
.columns-8-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-8-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-8-above-large { float: left; width: 66.66667%; } }
.columns-8-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-8-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-8-below-large { float: left; width: 66.66667%; } }
.columns-9-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-9-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-9-above-large { float: left; width: 75%; } }
.columns-9-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-9-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-9-below-large { float: left; width: 75%; } }
.columns-10-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-10-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-10-above-large { float: left; width: 83.33333%; } }
.columns-10-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-10-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-10-below-large { float: left; width: 83.33333%; } }
.columns-11-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-11-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-11-above-large { float: left; width: 91.66667%; } }
.columns-11-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-11-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-11-below-large { float: left; width: 91.66667%; } }
.columns-12-above-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-12-above-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (min-width: 1200px) { .columns-12-above-large { float: left; width: 100%; } }
.columns-12-below-large { padding: 0 10px; }
@media (max-width: 1200px) { .columns-12-below-large:not(:last-of-type) { margin-bottom: 20px; } }
@media (max-width: 1200px) { .columns-12-below-large { float: left; width: 100%; } }
.columns { zoom: 1; margin-left: -10px; margin-right: -10px; }
.columns:before, .columns:after { content: ""; display: table; }
.columns:after { clear: both; }
.columns.no-gutter { margin-left: 0; margin-right: 0; }
.columns.no-gutter > [class^="columns"] { padding: 0; }
@media (min-width: 780px) { .columns.gutter-half { margin-left: -5px; margin-right: -5px; }
.columns.gutter-half > [class^="columns"] { padding: 0 5px; }
.columns.gutter-double { margin-left: -20px; margin-right: -20px; }
.columns.gutter-double > [class^="columns"] { padding: 0 20px; } }
@media (min-width: 780px) { .offset-1 { margin-left: 8.33333%; } }
@media (min-width: 780px) { .offset-1-above-medium { margin-left: 8.33333%; } }
@media (max-width: 780px) { .offset-1-below-medium { margin-left: 8.33333%; } }
@media (min-width: 1200px) { .offset-1-above-large { margin-left: 8.33333%; } }
@media (max-width: 1200px) { .offset-1-below-large { margin-left: 8.33333%; } }
@media (min-width: 780px) { .offset-2 { margin-left: 16.66667%; } }
@media (min-width: 780px) { .offset-2-above-medium { margin-left: 16.66667%; } }
@media (max-width: 780px) { .offset-2-below-medium { margin-left: 16.66667%; } }
@media (min-width: 1200px) { .offset-2-above-large { margin-left: 16.66667%; } }
@media (max-width: 1200px) { .offset-2-below-large { margin-left: 16.66667%; } }
@media (min-width: 780px) { .offset-3 { margin-left: 25%; } }
@media (min-width: 780px) { .offset-3-above-medium { margin-left: 25%; } }
@media (max-width: 780px) { .offset-3-below-medium { margin-left: 25%; } }
@media (min-width: 1200px) { .offset-3-above-large { margin-left: 25%; } }
@media (max-width: 1200px) { .offset-3-below-large { margin-left: 25%; } }
@media (min-width: 780px) { .offset-4 { margin-left: 33.33333%; } }
@media (min-width: 780px) { .offset-4-above-medium { margin-left: 33.33333%; } }
@media (max-width: 780px) { .offset-4-below-medium { margin-left: 33.33333%; } }
@media (min-width: 1200px) { .offset-4-above-large { margin-left: 33.33333%; } }
@media (max-width: 1200px) { .offset-4-below-large { margin-left: 33.33333%; } }
@media (min-width: 780px) { .offset-5 { margin-left: 41.66667%; } }
@media (min-width: 780px) { .offset-5-above-medium { margin-left: 41.66667%; } }
@media (max-width: 780px) { .offset-5-below-medium { margin-left: 41.66667%; } }
@media (min-width: 1200px) { .offset-5-above-large { margin-left: 41.66667%; } }
@media (max-width: 1200px) { .offset-5-below-large { margin-left: 41.66667%; } }
@media (min-width: 780px) { .offset-6 { margin-left: 50%; } }
@media (min-width: 780px) { .offset-6-above-medium { margin-left: 50%; } }
@media (max-width: 780px) { .offset-6-below-medium { margin-left: 50%; } }
@media (min-width: 1200px) { .offset-6-above-large { margin-left: 50%; } }
@media (max-width: 1200px) { .offset-6-below-large { margin-left: 50%; } }
@media (min-width: 780px) { .offset-7 { margin-left: 58.33333%; } }
@media (min-width: 780px) { .offset-7-above-medium { margin-left: 58.33333%; } }
@media (max-width: 780px) { .offset-7-below-medium { margin-left: 58.33333%; } }
@media (min-width: 1200px) { .offset-7-above-large { margin-left: 58.33333%; } }
@media (max-width: 1200px) { .offset-7-below-large { margin-left: 58.33333%; } }
@media (min-width: 780px) { .offset-8 { margin-left: 66.66667%; } }
@media (min-width: 780px) { .offset-8-above-medium { margin-left: 66.66667%; } }
@media (max-width: 780px) { .offset-8-below-medium { margin-left: 66.66667%; } }
@media (min-width: 1200px) { .offset-8-above-large { margin-left: 66.66667%; } }
@media (max-width: 1200px) { .offset-8-below-large { margin-left: 66.66667%; } }
@media (min-width: 780px) { .offset-9 { margin-left: 75%; } }
@media (min-width: 780px) { .offset-9-above-medium { margin-left: 75%; } }
@media (max-width: 780px) { .offset-9-below-medium { margin-left: 75%; } }
@media (min-width: 1200px) { .offset-9-above-large { margin-left: 75%; } }
@media (max-width: 1200px) { .offset-9-below-large { margin-left: 75%; } }
@media (min-width: 780px) { .offset-10 { margin-left: 83.33333%; } }
@media (min-width: 780px) { .offset-10-above-medium { margin-left: 83.33333%; } }
@media (max-width: 780px) { .offset-10-below-medium { margin-left: 83.33333%; } }
@media (min-width: 1200px) { .offset-10-above-large { margin-left: 83.33333%; } }
@media (max-width: 1200px) { .offset-10-below-large { margin-left: 83.33333%; } }
@media (min-width: 780px) { .offset-11 { margin-left: 91.66667%; } }
@media (min-width: 780px) { .offset-11-above-medium { margin-left: 91.66667%; } }
@media (max-width: 780px) { .offset-11-below-medium { margin-left: 91.66667%; } }
@media (min-width: 1200px) { .offset-11-above-large { margin-left: 91.66667%; } }
@media (max-width: 1200px) { .offset-11-below-large { margin-left: 91.66667%; } }
@media (min-width: 780px) { .offset-12 { margin-left: 100%; } }
@media (min-width: 780px) { .offset-12-above-medium { margin-left: 100%; } }
@media (max-width: 780px) { .offset-12-below-medium { margin-left: 100%; } }
@media (min-width: 1200px) { .offset-12-above-large { margin-left: 100%; } }
@media (max-width: 1200px) { .offset-12-below-large { margin-left: 100%; } }
.height-25 { height: 25%; }
@media (min-width: 780px) { .height-25-above-medium { height: 25%; } }
@media (max-width: 780px) { .height-25-below-medium { height: 25%; } }
@media (min-width: 1200px) { .height-25-above-large { height: 25%; } }
@media (max-width: 1200px) { .height-25-below-large { height: 25%; } }
.height-50 { height: 50%; }
@media (min-width: 780px) { .height-50-above-medium { height: 50%; } }
@media (max-width: 780px) { .height-50-below-medium { height: 50%; } }
@media (min-width: 1200px) { .height-50-above-large { height: 50%; } }
@media (max-width: 1200px) { .height-50-below-large { height: 50%; } }
.height-75 { height: 75%; }
@media (min-width: 780px) { .height-75-above-medium { height: 75%; } }
@media (max-width: 780px) { .height-75-below-medium { height: 75%; } }
@media (min-width: 1200px) { .height-75-above-large { height: 75%; } }
@media (max-width: 1200px) { .height-75-below-large { height: 75%; } }
.height-100 { height: 100%; }
@media (min-width: 780px) { .height-100-above-medium { height: 100%; } }
@media (max-width: 780px) { .height-100-below-medium { height: 100%; } }
@media (min-width: 1200px) { .height-100-above-large { height: 100%; } }
@media (max-width: 1200px) { .height-100-below-large { height: 100%; } }
.height-auto { height: auto !important; }
.left-0 { left: 0px; }
@media (min-width: 780px) { .left-0-above-medium { left: 0px; } }
@media (max-width: 780px) { .left-0-below-medium { left: 0px; } }
@media (min-width: 1200px) { .left-0-above-large { left: 0px; } }
@media (max-width: 1200px) { .left-0-below-large { left: 0px; } }
.left-1 { left: 5px; }
@media (min-width: 780px) { .left-1-above-medium { left: 5px; } }
@media (max-width: 780px) { .left-1-below-medium { left: 5px; } }
@media (min-width: 1200px) { .left-1-above-large { left: 5px; } }
@media (max-width: 1200px) { .left-1-below-large { left: 5px; } }
.left-2 { left: 10px; }
@media (min-width: 780px) { .left-2-above-medium { left: 10px; } }
@media (max-width: 780px) { .left-2-below-medium { left: 10px; } }
@media (min-width: 1200px) { .left-2-above-large { left: 10px; } }
@media (max-width: 1200px) { .left-2-below-large { left: 10px; } }
.left-3 { left: 15px; }
@media (min-width: 780px) { .left-3-above-medium { left: 15px; } }
@media (max-width: 780px) { .left-3-below-medium { left: 15px; } }
@media (min-width: 1200px) { .left-3-above-large { left: 15px; } }
@media (max-width: 1200px) { .left-3-below-large { left: 15px; } }
.left-4 { left: 20px; }
@media (min-width: 780px) { .left-4-above-medium { left: 20px; } }
@media (max-width: 780px) { .left-4-below-medium { left: 20px; } }
@media (min-width: 1200px) { .left-4-above-large { left: 20px; } }
@media (max-width: 1200px) { .left-4-below-large { left: 20px; } }
.left-5 { left: 25px; }
@media (min-width: 780px) { .left-5-above-medium { left: 25px; } }
@media (max-width: 780px) { .left-5-below-medium { left: 25px; } }
@media (min-width: 1200px) { .left-5-above-large { left: 25px; } }
@media (max-width: 1200px) { .left-5-below-large { left: 25px; } }
.left-6 { left: 30px; }
@media (min-width: 780px) { .left-6-above-medium { left: 30px; } }
@media (max-width: 780px) { .left-6-below-medium { left: 30px; } }
@media (min-width: 1200px) { .left-6-above-large { left: 30px; } }
@media (max-width: 1200px) { .left-6-below-large { left: 30px; } }
.left-7 { left: 35px; }
@media (min-width: 780px) { .left-7-above-medium { left: 35px; } }
@media (max-width: 780px) { .left-7-below-medium { left: 35px; } }
@media (min-width: 1200px) { .left-7-above-large { left: 35px; } }
@media (max-width: 1200px) { .left-7-below-large { left: 35px; } }
.left-8 { left: 40px; }
@media (min-width: 780px) { .left-8-above-medium { left: 40px; } }
@media (max-width: 780px) { .left-8-below-medium { left: 40px; } }
@media (min-width: 1200px) { .left-8-above-large { left: 40px; } }
@media (max-width: 1200px) { .left-8-below-large { left: 40px; } }
.left-9 { left: 45px; }
@media (min-width: 780px) { .left-9-above-medium { left: 45px; } }
@media (max-width: 780px) { .left-9-below-medium { left: 45px; } }
@media (min-width: 1200px) { .left-9-above-large { left: 45px; } }
@media (max-width: 1200px) { .left-9-below-large { left: 45px; } }
.left-10 { left: 50px; }
@media (min-width: 780px) { .left-10-above-medium { left: 50px; } }
@media (max-width: 780px) { .left-10-below-medium { left: 50px; } }
@media (min-width: 1200px) { .left-10-above-large { left: 50px; } }
@media (max-width: 1200px) { .left-10-below-large { left: 50px; } }
.left-11 { left: 55px; }
@media (min-width: 780px) { .left-11-above-medium { left: 55px; } }
@media (max-width: 780px) { .left-11-below-medium { left: 55px; } }
@media (min-width: 1200px) { .left-11-above-large { left: 55px; } }
@media (max-width: 1200px) { .left-11-below-large { left: 55px; } }
.left-12 { left: 60px; }
@media (min-width: 780px) { .left-12-above-medium { left: 60px; } }
@media (max-width: 780px) { .left-12-below-medium { left: 60px; } }
@media (min-width: 1200px) { .left-12-above-large { left: 60px; } }
@media (max-width: 1200px) { .left-12-below-large { left: 60px; } }
.left-13 { left: 65px; }
@media (min-width: 780px) { .left-13-above-medium { left: 65px; } }
@media (max-width: 780px) { .left-13-below-medium { left: 65px; } }
@media (min-width: 1200px) { .left-13-above-large { left: 65px; } }
@media (max-width: 1200px) { .left-13-below-large { left: 65px; } }
.left-14 { left: 70px; }
@media (min-width: 780px) { .left-14-above-medium { left: 70px; } }
@media (max-width: 780px) { .left-14-below-medium { left: 70px; } }
@media (min-width: 1200px) { .left-14-above-large { left: 70px; } }
@media (max-width: 1200px) { .left-14-below-large { left: 70px; } }
.left-15 { left: 75px; }
@media (min-width: 780px) { .left-15-above-medium { left: 75px; } }
@media (max-width: 780px) { .left-15-below-medium { left: 75px; } }
@media (min-width: 1200px) { .left-15-above-large { left: 75px; } }
@media (max-width: 1200px) { .left-15-below-large { left: 75px; } }
.left-auto { left: auto !important; }
.no-letter-spacing { letter-spacing: 0 !important; }
.line-height-small { line-height: 1.2; }
@media (min-width: 780px) { .line-height-small-above-medium { line-height: 1.2; } }
@media (max-width: 780px) { .line-height-small-below-medium { line-height: 1.2; } }
@media (min-width: 1200px) { .line-height-small-above-large { line-height: 1.2; } }
@media (max-width: 1200px) { .line-height-small-below-large { line-height: 1.2; } }
.line-height-medium { line-height: 1.5; }
@media (min-width: 780px) { .line-height-medium-above-medium { line-height: 1.5; } }
@media (max-width: 780px) { .line-height-medium-below-medium { line-height: 1.5; } }
@media (min-width: 1200px) { .line-height-medium-above-large { line-height: 1.5; } }
@media (max-width: 1200px) { .line-height-medium-below-large { line-height: 1.5; } }
.no-line-height { line-height: 1 !important; }
.margin-top-1 { margin-top: 5px; }
@media (min-width: 780px) { .margin-top-1-above-medium { margin-top: 5px; } }
@media (max-width: 780px) { .margin-top-1-below-medium { margin-top: 5px; } }
@media (min-width: 1200px) { .margin-top-1-above-large { margin-top: 5px; } }
@media (max-width: 1200px) { .margin-top-1-below-large { margin-top: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-right-1 { margin-right: 5px; }
@media (min-width: 780px) { .margin-right-1-above-medium { margin-right: 5px; } }
@media (max-width: 780px) { .margin-right-1-below-medium { margin-right: 5px; } }
@media (min-width: 1200px) { .margin-right-1-above-large { margin-right: 5px; } }
@media (max-width: 1200px) { .margin-right-1-below-large { margin-right: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-bottom-1 { margin-bottom: 5px; }
@media (min-width: 780px) { .margin-bottom-1-above-medium { margin-bottom: 5px; } }
@media (max-width: 780px) { .margin-bottom-1-below-medium { margin-bottom: 5px; } }
@media (min-width: 1200px) { .margin-bottom-1-above-large { margin-bottom: 5px; } }
@media (max-width: 1200px) { .margin-bottom-1-below-large { margin-bottom: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-left-1 { margin-left: 5px; }
@media (min-width: 780px) { .margin-left-1-above-medium { margin-left: 5px; } }
@media (max-width: 780px) { .margin-left-1-below-medium { margin-left: 5px; } }
@media (min-width: 1200px) { .margin-left-1-above-large { margin-left: 5px; } }
@media (max-width: 1200px) { .margin-left-1-below-large { margin-left: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-vertical-1 { margin-top: 5px; margin-bottom: 5px; }
@media (min-width: 780px) { .margin-vertical-1-above-medium { margin-top: 5px; margin-bottom: 5px; } }
@media (max-width: 780px) { .margin-vertical-1-below-medium { margin-top: 5px; margin-bottom: 5px; } }
@media (min-width: 1200px) { .margin-vertical-1-above-large { margin-top: 5px; margin-bottom: 5px; } }
@media (max-width: 1200px) { .margin-vertical-1-below-large { margin-top: 5px; margin-bottom: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-horizontal-1 { margin-left: 5px; margin-right: 5px; }
@media (min-width: 780px) { .margin-horizontal-1-above-medium { margin-left: 5px; margin-right: 5px; } }
@media (max-width: 780px) { .margin-horizontal-1-below-medium { margin-left: 5px; margin-right: 5px; } }
@media (min-width: 1200px) { .margin-horizontal-1-above-large { margin-left: 5px; margin-right: 5px; } }
@media (max-width: 1200px) { .margin-horizontal-1-below-large { margin-left: 5px; margin-right: 5px; } }
.margin-1 { margin: 5px; }
@media (min-width: 780px) { .margin-1-above-medium { margin: 5px; } }
@media (max-width: 780px) { .margin-1-below-medium { margin: 5px; } }
@media (min-width: 1200px) { .margin-1-above-large { margin: 5px; } }
@media (max-width: 1200px) { .margin-1-below-large { margin: 5px; } }
.margin-top-2 { margin-top: 10px; }
@media (min-width: 780px) { .margin-top-2-above-medium { margin-top: 10px; } }
@media (max-width: 780px) { .margin-top-2-below-medium { margin-top: 10px; } }
@media (min-width: 1200px) { .margin-top-2-above-large { margin-top: 10px; } }
@media (max-width: 1200px) { .margin-top-2-below-large { margin-top: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-right-2 { margin-right: 10px; }
@media (min-width: 780px) { .margin-right-2-above-medium { margin-right: 10px; } }
@media (max-width: 780px) { .margin-right-2-below-medium { margin-right: 10px; } }
@media (min-width: 1200px) { .margin-right-2-above-large { margin-right: 10px; } }
@media (max-width: 1200px) { .margin-right-2-below-large { margin-right: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-bottom-2 { margin-bottom: 10px; }
@media (min-width: 780px) { .margin-bottom-2-above-medium { margin-bottom: 10px; } }
@media (max-width: 780px) { .margin-bottom-2-below-medium { margin-bottom: 10px; } }
@media (min-width: 1200px) { .margin-bottom-2-above-large { margin-bottom: 10px; } }
@media (max-width: 1200px) { .margin-bottom-2-below-large { margin-bottom: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-left-2 { margin-left: 10px; }
@media (min-width: 780px) { .margin-left-2-above-medium { margin-left: 10px; } }
@media (max-width: 780px) { .margin-left-2-below-medium { margin-left: 10px; } }
@media (min-width: 1200px) { .margin-left-2-above-large { margin-left: 10px; } }
@media (max-width: 1200px) { .margin-left-2-below-large { margin-left: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-vertical-2 { margin-top: 10px; margin-bottom: 10px; }
@media (min-width: 780px) { .margin-vertical-2-above-medium { margin-top: 10px; margin-bottom: 10px; } }
@media (max-width: 780px) { .margin-vertical-2-below-medium { margin-top: 10px; margin-bottom: 10px; } }
@media (min-width: 1200px) { .margin-vertical-2-above-large { margin-top: 10px; margin-bottom: 10px; } }
@media (max-width: 1200px) { .margin-vertical-2-below-large { margin-top: 10px; margin-bottom: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-horizontal-2 { margin-left: 10px; margin-right: 10px; }
@media (min-width: 780px) { .margin-horizontal-2-above-medium { margin-left: 10px; margin-right: 10px; } }
@media (max-width: 780px) { .margin-horizontal-2-below-medium { margin-left: 10px; margin-right: 10px; } }
@media (min-width: 1200px) { .margin-horizontal-2-above-large { margin-left: 10px; margin-right: 10px; } }
@media (max-width: 1200px) { .margin-horizontal-2-below-large { margin-left: 10px; margin-right: 10px; } }
.margin-2 { margin: 10px; }
@media (min-width: 780px) { .margin-2-above-medium { margin: 10px; } }
@media (max-width: 780px) { .margin-2-below-medium { margin: 10px; } }
@media (min-width: 1200px) { .margin-2-above-large { margin: 10px; } }
@media (max-width: 1200px) { .margin-2-below-large { margin: 10px; } }
.margin-top-3 { margin-top: 15px; }
@media (min-width: 780px) { .margin-top-3-above-medium { margin-top: 15px; } }
@media (max-width: 780px) { .margin-top-3-below-medium { margin-top: 15px; } }
@media (min-width: 1200px) { .margin-top-3-above-large { margin-top: 15px; } }
@media (max-width: 1200px) { .margin-top-3-below-large { margin-top: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-right-3 { margin-right: 15px; }
@media (min-width: 780px) { .margin-right-3-above-medium { margin-right: 15px; } }
@media (max-width: 780px) { .margin-right-3-below-medium { margin-right: 15px; } }
@media (min-width: 1200px) { .margin-right-3-above-large { margin-right: 15px; } }
@media (max-width: 1200px) { .margin-right-3-below-large { margin-right: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-bottom-3 { margin-bottom: 15px; }
@media (min-width: 780px) { .margin-bottom-3-above-medium { margin-bottom: 15px; } }
@media (max-width: 780px) { .margin-bottom-3-below-medium { margin-bottom: 15px; } }
@media (min-width: 1200px) { .margin-bottom-3-above-large { margin-bottom: 15px; } }
@media (max-width: 1200px) { .margin-bottom-3-below-large { margin-bottom: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-left-3 { margin-left: 15px; }
@media (min-width: 780px) { .margin-left-3-above-medium { margin-left: 15px; } }
@media (max-width: 780px) { .margin-left-3-below-medium { margin-left: 15px; } }
@media (min-width: 1200px) { .margin-left-3-above-large { margin-left: 15px; } }
@media (max-width: 1200px) { .margin-left-3-below-large { margin-left: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-vertical-3 { margin-top: 15px; margin-bottom: 15px; }
@media (min-width: 780px) { .margin-vertical-3-above-medium { margin-top: 15px; margin-bottom: 15px; } }
@media (max-width: 780px) { .margin-vertical-3-below-medium { margin-top: 15px; margin-bottom: 15px; } }
@media (min-width: 1200px) { .margin-vertical-3-above-large { margin-top: 15px; margin-bottom: 15px; } }
@media (max-width: 1200px) { .margin-vertical-3-below-large { margin-top: 15px; margin-bottom: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-horizontal-3 { margin-left: 15px; margin-right: 15px; }
@media (min-width: 780px) { .margin-horizontal-3-above-medium { margin-left: 15px; margin-right: 15px; } }
@media (max-width: 780px) { .margin-horizontal-3-below-medium { margin-left: 15px; margin-right: 15px; } }
@media (min-width: 1200px) { .margin-horizontal-3-above-large { margin-left: 15px; margin-right: 15px; } }
@media (max-width: 1200px) { .margin-horizontal-3-below-large { margin-left: 15px; margin-right: 15px; } }
.margin-3 { margin: 15px; }
@media (min-width: 780px) { .margin-3-above-medium { margin: 15px; } }
@media (max-width: 780px) { .margin-3-below-medium { margin: 15px; } }
@media (min-width: 1200px) { .margin-3-above-large { margin: 15px; } }
@media (max-width: 1200px) { .margin-3-below-large { margin: 15px; } }
.margin-top-4 { margin-top: 20px; }
@media (min-width: 780px) { .margin-top-4-above-medium { margin-top: 20px; } }
@media (max-width: 780px) { .margin-top-4-below-medium { margin-top: 20px; } }
@media (min-width: 1200px) { .margin-top-4-above-large { margin-top: 20px; } }
@media (max-width: 1200px) { .margin-top-4-below-large { margin-top: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-right-4 { margin-right: 20px; }
@media (min-width: 780px) { .margin-right-4-above-medium { margin-right: 20px; } }
@media (max-width: 780px) { .margin-right-4-below-medium { margin-right: 20px; } }
@media (min-width: 1200px) { .margin-right-4-above-large { margin-right: 20px; } }
@media (max-width: 1200px) { .margin-right-4-below-large { margin-right: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-bottom-4 { margin-bottom: 20px; }
@media (min-width: 780px) { .margin-bottom-4-above-medium { margin-bottom: 20px; } }
@media (max-width: 780px) { .margin-bottom-4-below-medium { margin-bottom: 20px; } }
@media (min-width: 1200px) { .margin-bottom-4-above-large { margin-bottom: 20px; } }
@media (max-width: 1200px) { .margin-bottom-4-below-large { margin-bottom: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-left-4 { margin-left: 20px; }
@media (min-width: 780px) { .margin-left-4-above-medium { margin-left: 20px; } }
@media (max-width: 780px) { .margin-left-4-below-medium { margin-left: 20px; } }
@media (min-width: 1200px) { .margin-left-4-above-large { margin-left: 20px; } }
@media (max-width: 1200px) { .margin-left-4-below-large { margin-left: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-vertical-4 { margin-top: 20px; margin-bottom: 20px; }
@media (min-width: 780px) { .margin-vertical-4-above-medium { margin-top: 20px; margin-bottom: 20px; } }
@media (max-width: 780px) { .margin-vertical-4-below-medium { margin-top: 20px; margin-bottom: 20px; } }
@media (min-width: 1200px) { .margin-vertical-4-above-large { margin-top: 20px; margin-bottom: 20px; } }
@media (max-width: 1200px) { .margin-vertical-4-below-large { margin-top: 20px; margin-bottom: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-horizontal-4 { margin-left: 20px; margin-right: 20px; }
@media (min-width: 780px) { .margin-horizontal-4-above-medium { margin-left: 20px; margin-right: 20px; } }
@media (max-width: 780px) { .margin-horizontal-4-below-medium { margin-left: 20px; margin-right: 20px; } }
@media (min-width: 1200px) { .margin-horizontal-4-above-large { margin-left: 20px; margin-right: 20px; } }
@media (max-width: 1200px) { .margin-horizontal-4-below-large { margin-left: 20px; margin-right: 20px; } }
.margin-4 { margin: 20px; }
@media (min-width: 780px) { .margin-4-above-medium { margin: 20px; } }
@media (max-width: 780px) { .margin-4-below-medium { margin: 20px; } }
@media (min-width: 1200px) { .margin-4-above-large { margin: 20px; } }
@media (max-width: 1200px) { .margin-4-below-large { margin: 20px; } }
.margin-top-5 { margin-top: 25px; }
@media (min-width: 780px) { .margin-top-5-above-medium { margin-top: 25px; } }
@media (max-width: 780px) { .margin-top-5-below-medium { margin-top: 25px; } }
@media (min-width: 1200px) { .margin-top-5-above-large { margin-top: 25px; } }
@media (max-width: 1200px) { .margin-top-5-below-large { margin-top: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-right-5 { margin-right: 25px; }
@media (min-width: 780px) { .margin-right-5-above-medium { margin-right: 25px; } }
@media (max-width: 780px) { .margin-right-5-below-medium { margin-right: 25px; } }
@media (min-width: 1200px) { .margin-right-5-above-large { margin-right: 25px; } }
@media (max-width: 1200px) { .margin-right-5-below-large { margin-right: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-bottom-5 { margin-bottom: 25px; }
@media (min-width: 780px) { .margin-bottom-5-above-medium { margin-bottom: 25px; } }
@media (max-width: 780px) { .margin-bottom-5-below-medium { margin-bottom: 25px; } }
@media (min-width: 1200px) { .margin-bottom-5-above-large { margin-bottom: 25px; } }
@media (max-width: 1200px) { .margin-bottom-5-below-large { margin-bottom: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-left-5 { margin-left: 25px; }
@media (min-width: 780px) { .margin-left-5-above-medium { margin-left: 25px; } }
@media (max-width: 780px) { .margin-left-5-below-medium { margin-left: 25px; } }
@media (min-width: 1200px) { .margin-left-5-above-large { margin-left: 25px; } }
@media (max-width: 1200px) { .margin-left-5-below-large { margin-left: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-vertical-5 { margin-top: 25px; margin-bottom: 25px; }
@media (min-width: 780px) { .margin-vertical-5-above-medium { margin-top: 25px; margin-bottom: 25px; } }
@media (max-width: 780px) { .margin-vertical-5-below-medium { margin-top: 25px; margin-bottom: 25px; } }
@media (min-width: 1200px) { .margin-vertical-5-above-large { margin-top: 25px; margin-bottom: 25px; } }
@media (max-width: 1200px) { .margin-vertical-5-below-large { margin-top: 25px; margin-bottom: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-horizontal-5 { margin-left: 25px; margin-right: 25px; }
@media (min-width: 780px) { .margin-horizontal-5-above-medium { margin-left: 25px; margin-right: 25px; } }
@media (max-width: 780px) { .margin-horizontal-5-below-medium { margin-left: 25px; margin-right: 25px; } }
@media (min-width: 1200px) { .margin-horizontal-5-above-large { margin-left: 25px; margin-right: 25px; } }
@media (max-width: 1200px) { .margin-horizontal-5-below-large { margin-left: 25px; margin-right: 25px; } }
.margin-5 { margin: 25px; }
@media (min-width: 780px) { .margin-5-above-medium { margin: 25px; } }
@media (max-width: 780px) { .margin-5-below-medium { margin: 25px; } }
@media (min-width: 1200px) { .margin-5-above-large { margin: 25px; } }
@media (max-width: 1200px) { .margin-5-below-large { margin: 25px; } }
.margin-top-6 { margin-top: 30px; }
@media (min-width: 780px) { .margin-top-6-above-medium { margin-top: 30px; } }
@media (max-width: 780px) { .margin-top-6-below-medium { margin-top: 30px; } }
@media (min-width: 1200px) { .margin-top-6-above-large { margin-top: 30px; } }
@media (max-width: 1200px) { .margin-top-6-below-large { margin-top: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-right-6 { margin-right: 30px; }
@media (min-width: 780px) { .margin-right-6-above-medium { margin-right: 30px; } }
@media (max-width: 780px) { .margin-right-6-below-medium { margin-right: 30px; } }
@media (min-width: 1200px) { .margin-right-6-above-large { margin-right: 30px; } }
@media (max-width: 1200px) { .margin-right-6-below-large { margin-right: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-bottom-6 { margin-bottom: 30px; }
@media (min-width: 780px) { .margin-bottom-6-above-medium { margin-bottom: 30px; } }
@media (max-width: 780px) { .margin-bottom-6-below-medium { margin-bottom: 30px; } }
@media (min-width: 1200px) { .margin-bottom-6-above-large { margin-bottom: 30px; } }
@media (max-width: 1200px) { .margin-bottom-6-below-large { margin-bottom: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-left-6 { margin-left: 30px; }
@media (min-width: 780px) { .margin-left-6-above-medium { margin-left: 30px; } }
@media (max-width: 780px) { .margin-left-6-below-medium { margin-left: 30px; } }
@media (min-width: 1200px) { .margin-left-6-above-large { margin-left: 30px; } }
@media (max-width: 1200px) { .margin-left-6-below-large { margin-left: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-vertical-6 { margin-top: 30px; margin-bottom: 30px; }
@media (min-width: 780px) { .margin-vertical-6-above-medium { margin-top: 30px; margin-bottom: 30px; } }
@media (max-width: 780px) { .margin-vertical-6-below-medium { margin-top: 30px; margin-bottom: 30px; } }
@media (min-width: 1200px) { .margin-vertical-6-above-large { margin-top: 30px; margin-bottom: 30px; } }
@media (max-width: 1200px) { .margin-vertical-6-below-large { margin-top: 30px; margin-bottom: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-horizontal-6 { margin-left: 30px; margin-right: 30px; }
@media (min-width: 780px) { .margin-horizontal-6-above-medium { margin-left: 30px; margin-right: 30px; } }
@media (max-width: 780px) { .margin-horizontal-6-below-medium { margin-left: 30px; margin-right: 30px; } }
@media (min-width: 1200px) { .margin-horizontal-6-above-large { margin-left: 30px; margin-right: 30px; } }
@media (max-width: 1200px) { .margin-horizontal-6-below-large { margin-left: 30px; margin-right: 30px; } }
.margin-6 { margin: 30px; }
@media (min-width: 780px) { .margin-6-above-medium { margin: 30px; } }
@media (max-width: 780px) { .margin-6-below-medium { margin: 30px; } }
@media (min-width: 1200px) { .margin-6-above-large { margin: 30px; } }
@media (max-width: 1200px) { .margin-6-below-large { margin: 30px; } }
.margin-top-7 { margin-top: 35px; }
@media (min-width: 780px) { .margin-top-7-above-medium { margin-top: 35px; } }
@media (max-width: 780px) { .margin-top-7-below-medium { margin-top: 35px; } }
@media (min-width: 1200px) { .margin-top-7-above-large { margin-top: 35px; } }
@media (max-width: 1200px) { .margin-top-7-below-large { margin-top: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-right-7 { margin-right: 35px; }
@media (min-width: 780px) { .margin-right-7-above-medium { margin-right: 35px; } }
@media (max-width: 780px) { .margin-right-7-below-medium { margin-right: 35px; } }
@media (min-width: 1200px) { .margin-right-7-above-large { margin-right: 35px; } }
@media (max-width: 1200px) { .margin-right-7-below-large { margin-right: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-bottom-7 { margin-bottom: 35px; }
@media (min-width: 780px) { .margin-bottom-7-above-medium { margin-bottom: 35px; } }
@media (max-width: 780px) { .margin-bottom-7-below-medium { margin-bottom: 35px; } }
@media (min-width: 1200px) { .margin-bottom-7-above-large { margin-bottom: 35px; } }
@media (max-width: 1200px) { .margin-bottom-7-below-large { margin-bottom: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-left-7 { margin-left: 35px; }
@media (min-width: 780px) { .margin-left-7-above-medium { margin-left: 35px; } }
@media (max-width: 780px) { .margin-left-7-below-medium { margin-left: 35px; } }
@media (min-width: 1200px) { .margin-left-7-above-large { margin-left: 35px; } }
@media (max-width: 1200px) { .margin-left-7-below-large { margin-left: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-vertical-7 { margin-top: 35px; margin-bottom: 35px; }
@media (min-width: 780px) { .margin-vertical-7-above-medium { margin-top: 35px; margin-bottom: 35px; } }
@media (max-width: 780px) { .margin-vertical-7-below-medium { margin-top: 35px; margin-bottom: 35px; } }
@media (min-width: 1200px) { .margin-vertical-7-above-large { margin-top: 35px; margin-bottom: 35px; } }
@media (max-width: 1200px) { .margin-vertical-7-below-large { margin-top: 35px; margin-bottom: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-horizontal-7 { margin-left: 35px; margin-right: 35px; }
@media (min-width: 780px) { .margin-horizontal-7-above-medium { margin-left: 35px; margin-right: 35px; } }
@media (max-width: 780px) { .margin-horizontal-7-below-medium { margin-left: 35px; margin-right: 35px; } }
@media (min-width: 1200px) { .margin-horizontal-7-above-large { margin-left: 35px; margin-right: 35px; } }
@media (max-width: 1200px) { .margin-horizontal-7-below-large { margin-left: 35px; margin-right: 35px; } }
.margin-7 { margin: 35px; }
@media (min-width: 780px) { .margin-7-above-medium { margin: 35px; } }
@media (max-width: 780px) { .margin-7-below-medium { margin: 35px; } }
@media (min-width: 1200px) { .margin-7-above-large { margin: 35px; } }
@media (max-width: 1200px) { .margin-7-below-large { margin: 35px; } }
.margin-top-8 { margin-top: 40px; }
@media (min-width: 780px) { .margin-top-8-above-medium { margin-top: 40px; } }
@media (max-width: 780px) { .margin-top-8-below-medium { margin-top: 40px; } }
@media (min-width: 1200px) { .margin-top-8-above-large { margin-top: 40px; } }
@media (max-width: 1200px) { .margin-top-8-below-large { margin-top: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-right-8 { margin-right: 40px; }
@media (min-width: 780px) { .margin-right-8-above-medium { margin-right: 40px; } }
@media (max-width: 780px) { .margin-right-8-below-medium { margin-right: 40px; } }
@media (min-width: 1200px) { .margin-right-8-above-large { margin-right: 40px; } }
@media (max-width: 1200px) { .margin-right-8-below-large { margin-right: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-bottom-8 { margin-bottom: 40px; }
@media (min-width: 780px) { .margin-bottom-8-above-medium { margin-bottom: 40px; } }
@media (max-width: 780px) { .margin-bottom-8-below-medium { margin-bottom: 40px; } }
@media (min-width: 1200px) { .margin-bottom-8-above-large { margin-bottom: 40px; } }
@media (max-width: 1200px) { .margin-bottom-8-below-large { margin-bottom: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-left-8 { margin-left: 40px; }
@media (min-width: 780px) { .margin-left-8-above-medium { margin-left: 40px; } }
@media (max-width: 780px) { .margin-left-8-below-medium { margin-left: 40px; } }
@media (min-width: 1200px) { .margin-left-8-above-large { margin-left: 40px; } }
@media (max-width: 1200px) { .margin-left-8-below-large { margin-left: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-vertical-8 { margin-top: 40px; margin-bottom: 40px; }
@media (min-width: 780px) { .margin-vertical-8-above-medium { margin-top: 40px; margin-bottom: 40px; } }
@media (max-width: 780px) { .margin-vertical-8-below-medium { margin-top: 40px; margin-bottom: 40px; } }
@media (min-width: 1200px) { .margin-vertical-8-above-large { margin-top: 40px; margin-bottom: 40px; } }
@media (max-width: 1200px) { .margin-vertical-8-below-large { margin-top: 40px; margin-bottom: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-horizontal-8 { margin-left: 40px; margin-right: 40px; }
@media (min-width: 780px) { .margin-horizontal-8-above-medium { margin-left: 40px; margin-right: 40px; } }
@media (max-width: 780px) { .margin-horizontal-8-below-medium { margin-left: 40px; margin-right: 40px; } }
@media (min-width: 1200px) { .margin-horizontal-8-above-large { margin-left: 40px; margin-right: 40px; } }
@media (max-width: 1200px) { .margin-horizontal-8-below-large { margin-left: 40px; margin-right: 40px; } }
.margin-8 { margin: 40px; }
@media (min-width: 780px) { .margin-8-above-medium { margin: 40px; } }
@media (max-width: 780px) { .margin-8-below-medium { margin: 40px; } }
@media (min-width: 1200px) { .margin-8-above-large { margin: 40px; } }
@media (max-width: 1200px) { .margin-8-below-large { margin: 40px; } }
.margin-top-9 { margin-top: 45px; }
@media (min-width: 780px) { .margin-top-9-above-medium { margin-top: 45px; } }
@media (max-width: 780px) { .margin-top-9-below-medium { margin-top: 45px; } }
@media (min-width: 1200px) { .margin-top-9-above-large { margin-top: 45px; } }
@media (max-width: 1200px) { .margin-top-9-below-large { margin-top: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-right-9 { margin-right: 45px; }
@media (min-width: 780px) { .margin-right-9-above-medium { margin-right: 45px; } }
@media (max-width: 780px) { .margin-right-9-below-medium { margin-right: 45px; } }
@media (min-width: 1200px) { .margin-right-9-above-large { margin-right: 45px; } }
@media (max-width: 1200px) { .margin-right-9-below-large { margin-right: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-bottom-9 { margin-bottom: 45px; }
@media (min-width: 780px) { .margin-bottom-9-above-medium { margin-bottom: 45px; } }
@media (max-width: 780px) { .margin-bottom-9-below-medium { margin-bottom: 45px; } }
@media (min-width: 1200px) { .margin-bottom-9-above-large { margin-bottom: 45px; } }
@media (max-width: 1200px) { .margin-bottom-9-below-large { margin-bottom: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-left-9 { margin-left: 45px; }
@media (min-width: 780px) { .margin-left-9-above-medium { margin-left: 45px; } }
@media (max-width: 780px) { .margin-left-9-below-medium { margin-left: 45px; } }
@media (min-width: 1200px) { .margin-left-9-above-large { margin-left: 45px; } }
@media (max-width: 1200px) { .margin-left-9-below-large { margin-left: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-vertical-9 { margin-top: 45px; margin-bottom: 45px; }
@media (min-width: 780px) { .margin-vertical-9-above-medium { margin-top: 45px; margin-bottom: 45px; } }
@media (max-width: 780px) { .margin-vertical-9-below-medium { margin-top: 45px; margin-bottom: 45px; } }
@media (min-width: 1200px) { .margin-vertical-9-above-large { margin-top: 45px; margin-bottom: 45px; } }
@media (max-width: 1200px) { .margin-vertical-9-below-large { margin-top: 45px; margin-bottom: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-horizontal-9 { margin-left: 45px; margin-right: 45px; }
@media (min-width: 780px) { .margin-horizontal-9-above-medium { margin-left: 45px; margin-right: 45px; } }
@media (max-width: 780px) { .margin-horizontal-9-below-medium { margin-left: 45px; margin-right: 45px; } }
@media (min-width: 1200px) { .margin-horizontal-9-above-large { margin-left: 45px; margin-right: 45px; } }
@media (max-width: 1200px) { .margin-horizontal-9-below-large { margin-left: 45px; margin-right: 45px; } }
.margin-9 { margin: 45px; }
@media (min-width: 780px) { .margin-9-above-medium { margin: 45px; } }
@media (max-width: 780px) { .margin-9-below-medium { margin: 45px; } }
@media (min-width: 1200px) { .margin-9-above-large { margin: 45px; } }
@media (max-width: 1200px) { .margin-9-below-large { margin: 45px; } }
.margin-top-10 { margin-top: 50px; }
@media (min-width: 780px) { .margin-top-10-above-medium { margin-top: 50px; } }
@media (max-width: 780px) { .margin-top-10-below-medium { margin-top: 50px; } }
@media (min-width: 1200px) { .margin-top-10-above-large { margin-top: 50px; } }
@media (max-width: 1200px) { .margin-top-10-below-large { margin-top: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-right-10 { margin-right: 50px; }
@media (min-width: 780px) { .margin-right-10-above-medium { margin-right: 50px; } }
@media (max-width: 780px) { .margin-right-10-below-medium { margin-right: 50px; } }
@media (min-width: 1200px) { .margin-right-10-above-large { margin-right: 50px; } }
@media (max-width: 1200px) { .margin-right-10-below-large { margin-right: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-bottom-10 { margin-bottom: 50px; }
@media (min-width: 780px) { .margin-bottom-10-above-medium { margin-bottom: 50px; } }
@media (max-width: 780px) { .margin-bottom-10-below-medium { margin-bottom: 50px; } }
@media (min-width: 1200px) { .margin-bottom-10-above-large { margin-bottom: 50px; } }
@media (max-width: 1200px) { .margin-bottom-10-below-large { margin-bottom: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-left-10 { margin-left: 50px; }
@media (min-width: 780px) { .margin-left-10-above-medium { margin-left: 50px; } }
@media (max-width: 780px) { .margin-left-10-below-medium { margin-left: 50px; } }
@media (min-width: 1200px) { .margin-left-10-above-large { margin-left: 50px; } }
@media (max-width: 1200px) { .margin-left-10-below-large { margin-left: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-vertical-10 { margin-top: 50px; margin-bottom: 50px; }
@media (min-width: 780px) { .margin-vertical-10-above-medium { margin-top: 50px; margin-bottom: 50px; } }
@media (max-width: 780px) { .margin-vertical-10-below-medium { margin-top: 50px; margin-bottom: 50px; } }
@media (min-width: 1200px) { .margin-vertical-10-above-large { margin-top: 50px; margin-bottom: 50px; } }
@media (max-width: 1200px) { .margin-vertical-10-below-large { margin-top: 50px; margin-bottom: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-horizontal-10 { margin-left: 50px; margin-right: 50px; }
@media (min-width: 780px) { .margin-horizontal-10-above-medium { margin-left: 50px; margin-right: 50px; } }
@media (max-width: 780px) { .margin-horizontal-10-below-medium { margin-left: 50px; margin-right: 50px; } }
@media (min-width: 1200px) { .margin-horizontal-10-above-large { margin-left: 50px; margin-right: 50px; } }
@media (max-width: 1200px) { .margin-horizontal-10-below-large { margin-left: 50px; margin-right: 50px; } }
.margin-10 { margin: 50px; }
@media (min-width: 780px) { .margin-10-above-medium { margin: 50px; } }
@media (max-width: 780px) { .margin-10-below-medium { margin: 50px; } }
@media (min-width: 1200px) { .margin-10-above-large { margin: 50px; } }
@media (max-width: 1200px) { .margin-10-below-large { margin: 50px; } }
.margin-top-11 { margin-top: 55px; }
@media (min-width: 780px) { .margin-top-11-above-medium { margin-top: 55px; } }
@media (max-width: 780px) { .margin-top-11-below-medium { margin-top: 55px; } }
@media (min-width: 1200px) { .margin-top-11-above-large { margin-top: 55px; } }
@media (max-width: 1200px) { .margin-top-11-below-large { margin-top: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-right-11 { margin-right: 55px; }
@media (min-width: 780px) { .margin-right-11-above-medium { margin-right: 55px; } }
@media (max-width: 780px) { .margin-right-11-below-medium { margin-right: 55px; } }
@media (min-width: 1200px) { .margin-right-11-above-large { margin-right: 55px; } }
@media (max-width: 1200px) { .margin-right-11-below-large { margin-right: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-bottom-11 { margin-bottom: 55px; }
@media (min-width: 780px) { .margin-bottom-11-above-medium { margin-bottom: 55px; } }
@media (max-width: 780px) { .margin-bottom-11-below-medium { margin-bottom: 55px; } }
@media (min-width: 1200px) { .margin-bottom-11-above-large { margin-bottom: 55px; } }
@media (max-width: 1200px) { .margin-bottom-11-below-large { margin-bottom: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-left-11 { margin-left: 55px; }
@media (min-width: 780px) { .margin-left-11-above-medium { margin-left: 55px; } }
@media (max-width: 780px) { .margin-left-11-below-medium { margin-left: 55px; } }
@media (min-width: 1200px) { .margin-left-11-above-large { margin-left: 55px; } }
@media (max-width: 1200px) { .margin-left-11-below-large { margin-left: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-vertical-11 { margin-top: 55px; margin-bottom: 55px; }
@media (min-width: 780px) { .margin-vertical-11-above-medium { margin-top: 55px; margin-bottom: 55px; } }
@media (max-width: 780px) { .margin-vertical-11-below-medium { margin-top: 55px; margin-bottom: 55px; } }
@media (min-width: 1200px) { .margin-vertical-11-above-large { margin-top: 55px; margin-bottom: 55px; } }
@media (max-width: 1200px) { .margin-vertical-11-below-large { margin-top: 55px; margin-bottom: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-horizontal-11 { margin-left: 55px; margin-right: 55px; }
@media (min-width: 780px) { .margin-horizontal-11-above-medium { margin-left: 55px; margin-right: 55px; } }
@media (max-width: 780px) { .margin-horizontal-11-below-medium { margin-left: 55px; margin-right: 55px; } }
@media (min-width: 1200px) { .margin-horizontal-11-above-large { margin-left: 55px; margin-right: 55px; } }
@media (max-width: 1200px) { .margin-horizontal-11-below-large { margin-left: 55px; margin-right: 55px; } }
.margin-11 { margin: 55px; }
@media (min-width: 780px) { .margin-11-above-medium { margin: 55px; } }
@media (max-width: 780px) { .margin-11-below-medium { margin: 55px; } }
@media (min-width: 1200px) { .margin-11-above-large { margin: 55px; } }
@media (max-width: 1200px) { .margin-11-below-large { margin: 55px; } }
.margin-top-12 { margin-top: 60px; }
@media (min-width: 780px) { .margin-top-12-above-medium { margin-top: 60px; } }
@media (max-width: 780px) { .margin-top-12-below-medium { margin-top: 60px; } }
@media (min-width: 1200px) { .margin-top-12-above-large { margin-top: 60px; } }
@media (max-width: 1200px) { .margin-top-12-below-large { margin-top: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-right-12 { margin-right: 60px; }
@media (min-width: 780px) { .margin-right-12-above-medium { margin-right: 60px; } }
@media (max-width: 780px) { .margin-right-12-below-medium { margin-right: 60px; } }
@media (min-width: 1200px) { .margin-right-12-above-large { margin-right: 60px; } }
@media (max-width: 1200px) { .margin-right-12-below-large { margin-right: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-bottom-12 { margin-bottom: 60px; }
@media (min-width: 780px) { .margin-bottom-12-above-medium { margin-bottom: 60px; } }
@media (max-width: 780px) { .margin-bottom-12-below-medium { margin-bottom: 60px; } }
@media (min-width: 1200px) { .margin-bottom-12-above-large { margin-bottom: 60px; } }
@media (max-width: 1200px) { .margin-bottom-12-below-large { margin-bottom: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-left-12 { margin-left: 60px; }
@media (min-width: 780px) { .margin-left-12-above-medium { margin-left: 60px; } }
@media (max-width: 780px) { .margin-left-12-below-medium { margin-left: 60px; } }
@media (min-width: 1200px) { .margin-left-12-above-large { margin-left: 60px; } }
@media (max-width: 1200px) { .margin-left-12-below-large { margin-left: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-vertical-12 { margin-top: 60px; margin-bottom: 60px; }
@media (min-width: 780px) { .margin-vertical-12-above-medium { margin-top: 60px; margin-bottom: 60px; } }
@media (max-width: 780px) { .margin-vertical-12-below-medium { margin-top: 60px; margin-bottom: 60px; } }
@media (min-width: 1200px) { .margin-vertical-12-above-large { margin-top: 60px; margin-bottom: 60px; } }
@media (max-width: 1200px) { .margin-vertical-12-below-large { margin-top: 60px; margin-bottom: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-horizontal-12 { margin-left: 60px; margin-right: 60px; }
@media (min-width: 780px) { .margin-horizontal-12-above-medium { margin-left: 60px; margin-right: 60px; } }
@media (max-width: 780px) { .margin-horizontal-12-below-medium { margin-left: 60px; margin-right: 60px; } }
@media (min-width: 1200px) { .margin-horizontal-12-above-large { margin-left: 60px; margin-right: 60px; } }
@media (max-width: 1200px) { .margin-horizontal-12-below-large { margin-left: 60px; margin-right: 60px; } }
.margin-12 { margin: 60px; }
@media (min-width: 780px) { .margin-12-above-medium { margin: 60px; } }
@media (max-width: 780px) { .margin-12-below-medium { margin: 60px; } }
@media (min-width: 1200px) { .margin-12-above-large { margin: 60px; } }
@media (max-width: 1200px) { .margin-12-below-large { margin: 60px; } }
.margin-top-13 { margin-top: 65px; }
@media (min-width: 780px) { .margin-top-13-above-medium { margin-top: 65px; } }
@media (max-width: 780px) { .margin-top-13-below-medium { margin-top: 65px; } }
@media (min-width: 1200px) { .margin-top-13-above-large { margin-top: 65px; } }
@media (max-width: 1200px) { .margin-top-13-below-large { margin-top: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-right-13 { margin-right: 65px; }
@media (min-width: 780px) { .margin-right-13-above-medium { margin-right: 65px; } }
@media (max-width: 780px) { .margin-right-13-below-medium { margin-right: 65px; } }
@media (min-width: 1200px) { .margin-right-13-above-large { margin-right: 65px; } }
@media (max-width: 1200px) { .margin-right-13-below-large { margin-right: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-bottom-13 { margin-bottom: 65px; }
@media (min-width: 780px) { .margin-bottom-13-above-medium { margin-bottom: 65px; } }
@media (max-width: 780px) { .margin-bottom-13-below-medium { margin-bottom: 65px; } }
@media (min-width: 1200px) { .margin-bottom-13-above-large { margin-bottom: 65px; } }
@media (max-width: 1200px) { .margin-bottom-13-below-large { margin-bottom: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-left-13 { margin-left: 65px; }
@media (min-width: 780px) { .margin-left-13-above-medium { margin-left: 65px; } }
@media (max-width: 780px) { .margin-left-13-below-medium { margin-left: 65px; } }
@media (min-width: 1200px) { .margin-left-13-above-large { margin-left: 65px; } }
@media (max-width: 1200px) { .margin-left-13-below-large { margin-left: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-vertical-13 { margin-top: 65px; margin-bottom: 65px; }
@media (min-width: 780px) { .margin-vertical-13-above-medium { margin-top: 65px; margin-bottom: 65px; } }
@media (max-width: 780px) { .margin-vertical-13-below-medium { margin-top: 65px; margin-bottom: 65px; } }
@media (min-width: 1200px) { .margin-vertical-13-above-large { margin-top: 65px; margin-bottom: 65px; } }
@media (max-width: 1200px) { .margin-vertical-13-below-large { margin-top: 65px; margin-bottom: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-horizontal-13 { margin-left: 65px; margin-right: 65px; }
@media (min-width: 780px) { .margin-horizontal-13-above-medium { margin-left: 65px; margin-right: 65px; } }
@media (max-width: 780px) { .margin-horizontal-13-below-medium { margin-left: 65px; margin-right: 65px; } }
@media (min-width: 1200px) { .margin-horizontal-13-above-large { margin-left: 65px; margin-right: 65px; } }
@media (max-width: 1200px) { .margin-horizontal-13-below-large { margin-left: 65px; margin-right: 65px; } }
.margin-13 { margin: 65px; }
@media (min-width: 780px) { .margin-13-above-medium { margin: 65px; } }
@media (max-width: 780px) { .margin-13-below-medium { margin: 65px; } }
@media (min-width: 1200px) { .margin-13-above-large { margin: 65px; } }
@media (max-width: 1200px) { .margin-13-below-large { margin: 65px; } }
.margin-top-14 { margin-top: 70px; }
@media (min-width: 780px) { .margin-top-14-above-medium { margin-top: 70px; } }
@media (max-width: 780px) { .margin-top-14-below-medium { margin-top: 70px; } }
@media (min-width: 1200px) { .margin-top-14-above-large { margin-top: 70px; } }
@media (max-width: 1200px) { .margin-top-14-below-large { margin-top: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-right-14 { margin-right: 70px; }
@media (min-width: 780px) { .margin-right-14-above-medium { margin-right: 70px; } }
@media (max-width: 780px) { .margin-right-14-below-medium { margin-right: 70px; } }
@media (min-width: 1200px) { .margin-right-14-above-large { margin-right: 70px; } }
@media (max-width: 1200px) { .margin-right-14-below-large { margin-right: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-bottom-14 { margin-bottom: 70px; }
@media (min-width: 780px) { .margin-bottom-14-above-medium { margin-bottom: 70px; } }
@media (max-width: 780px) { .margin-bottom-14-below-medium { margin-bottom: 70px; } }
@media (min-width: 1200px) { .margin-bottom-14-above-large { margin-bottom: 70px; } }
@media (max-width: 1200px) { .margin-bottom-14-below-large { margin-bottom: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-left-14 { margin-left: 70px; }
@media (min-width: 780px) { .margin-left-14-above-medium { margin-left: 70px; } }
@media (max-width: 780px) { .margin-left-14-below-medium { margin-left: 70px; } }
@media (min-width: 1200px) { .margin-left-14-above-large { margin-left: 70px; } }
@media (max-width: 1200px) { .margin-left-14-below-large { margin-left: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-vertical-14 { margin-top: 70px; margin-bottom: 70px; }
@media (min-width: 780px) { .margin-vertical-14-above-medium { margin-top: 70px; margin-bottom: 70px; } }
@media (max-width: 780px) { .margin-vertical-14-below-medium { margin-top: 70px; margin-bottom: 70px; } }
@media (min-width: 1200px) { .margin-vertical-14-above-large { margin-top: 70px; margin-bottom: 70px; } }
@media (max-width: 1200px) { .margin-vertical-14-below-large { margin-top: 70px; margin-bottom: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-horizontal-14 { margin-left: 70px; margin-right: 70px; }
@media (min-width: 780px) { .margin-horizontal-14-above-medium { margin-left: 70px; margin-right: 70px; } }
@media (max-width: 780px) { .margin-horizontal-14-below-medium { margin-left: 70px; margin-right: 70px; } }
@media (min-width: 1200px) { .margin-horizontal-14-above-large { margin-left: 70px; margin-right: 70px; } }
@media (max-width: 1200px) { .margin-horizontal-14-below-large { margin-left: 70px; margin-right: 70px; } }
.margin-14 { margin: 70px; }
@media (min-width: 780px) { .margin-14-above-medium { margin: 70px; } }
@media (max-width: 780px) { .margin-14-below-medium { margin: 70px; } }
@media (min-width: 1200px) { .margin-14-above-large { margin: 70px; } }
@media (max-width: 1200px) { .margin-14-below-large { margin: 70px; } }
.margin-top-15 { margin-top: 75px; }
@media (min-width: 780px) { .margin-top-15-above-medium { margin-top: 75px; } }
@media (max-width: 780px) { .margin-top-15-below-medium { margin-top: 75px; } }
@media (min-width: 1200px) { .margin-top-15-above-large { margin-top: 75px; } }
@media (max-width: 1200px) { .margin-top-15-below-large { margin-top: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-right-15 { margin-right: 75px; }
@media (min-width: 780px) { .margin-right-15-above-medium { margin-right: 75px; } }
@media (max-width: 780px) { .margin-right-15-below-medium { margin-right: 75px; } }
@media (min-width: 1200px) { .margin-right-15-above-large { margin-right: 75px; } }
@media (max-width: 1200px) { .margin-right-15-below-large { margin-right: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-bottom-15 { margin-bottom: 75px; }
@media (min-width: 780px) { .margin-bottom-15-above-medium { margin-bottom: 75px; } }
@media (max-width: 780px) { .margin-bottom-15-below-medium { margin-bottom: 75px; } }
@media (min-width: 1200px) { .margin-bottom-15-above-large { margin-bottom: 75px; } }
@media (max-width: 1200px) { .margin-bottom-15-below-large { margin-bottom: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-left-15 { margin-left: 75px; }
@media (min-width: 780px) { .margin-left-15-above-medium { margin-left: 75px; } }
@media (max-width: 780px) { .margin-left-15-below-medium { margin-left: 75px; } }
@media (min-width: 1200px) { .margin-left-15-above-large { margin-left: 75px; } }
@media (max-width: 1200px) { .margin-left-15-below-large { margin-left: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-vertical-15 { margin-top: 75px; margin-bottom: 75px; }
@media (min-width: 780px) { .margin-vertical-15-above-medium { margin-top: 75px; margin-bottom: 75px; } }
@media (max-width: 780px) { .margin-vertical-15-below-medium { margin-top: 75px; margin-bottom: 75px; } }
@media (min-width: 1200px) { .margin-vertical-15-above-large { margin-top: 75px; margin-bottom: 75px; } }
@media (max-width: 1200px) { .margin-vertical-15-below-large { margin-top: 75px; margin-bottom: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.margin-horizontal-15 { margin-left: 75px; margin-right: 75px; }
@media (min-width: 780px) { .margin-horizontal-15-above-medium { margin-left: 75px; margin-right: 75px; } }
@media (max-width: 780px) { .margin-horizontal-15-below-medium { margin-left: 75px; margin-right: 75px; } }
@media (min-width: 1200px) { .margin-horizontal-15-above-large { margin-left: 75px; margin-right: 75px; } }
@media (max-width: 1200px) { .margin-horizontal-15-below-large { margin-left: 75px; margin-right: 75px; } }
.margin-15 { margin: 75px; }
@media (min-width: 780px) { .margin-15-above-medium { margin: 75px; } }
@media (max-width: 780px) { .margin-15-below-medium { margin: 75px; } }
@media (min-width: 1200px) { .margin-15-above-large { margin: 75px; } }
@media (max-width: 1200px) { .margin-15-below-large { margin: 75px; } }
.no-margin { margin: 0 !important; }
@media (min-width: 780px) { .no-margin-above-medium { margin: 0 !important; } }
@media (max-width: 780px) { .no-margin-below-medium { margin: 0 !important; } }
@media (min-width: 1200px) { .no-margin-above-large { margin: 0 !important; } }
@media (max-width: 1200px) { .no-margin-below-large { margin: 0 !important; } }
.no-margin-last:last-of-type { margin: 0 !important; }
.margin-auto { margin: 0 auto; }
@media (min-width: 780px) { .margin-auto-above-medium { margin: 0 auto; } }
@media (max-width: 780px) { .margin-auto-below-medium { margin: 0 auto; } }
@media (min-width: 1200px) { .margin-auto-above-large { margin: 0 auto; } }
@media (max-width: 1200px) { .margin-auto-below-large { margin: 0 auto; } }
.max-width-100 { max-width: 100px; }
.max-width-200 { max-width: 200px; }
.max-width-300 { max-width: 300px; }
.max-width-400 { max-width: 400px; }
.max-width-500 { max-width: 500px; }
.max-width-600 { max-width: 600px; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }
.max-width-900 { max-width: 900px; }
.max-width-1000 { max-width: 1000px; }
.no-max-width { max-width: 100% !important; }
.opacity-0 { opacity: 0; }
.opacity-1 { opacity: 0.1; }
.opacity-2 { opacity: 0.2; }
.opacity-3 { opacity: 0.3; }
.opacity-4 { opacity: 0.4; }
.opacity-5 { opacity: 0.5; }
.opacity-6 { opacity: 0.6; }
.opacity-7 { opacity: 0.7; }
.opacity-8 { opacity: 0.8; }
.opacity-9 { opacity: 0.9; }
.opacity-10 { opacity: 1; }
.padding-top-1 { padding-top: 5px; }
@media (min-width: 780px) { .padding-top-1-above-medium { padding-top: 5px; } }
@media (max-width: 780px) { .padding-top-1-below-medium { padding-top: 5px; } }
@media (min-width: 1200px) { .padding-top-1-above-large { padding-top: 5px; } }
@media (max-width: 1200px) { .padding-top-1-below-large { padding-top: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-right-1 { padding-right: 5px; }
@media (min-width: 780px) { .padding-right-1-above-medium { padding-right: 5px; } }
@media (max-width: 780px) { .padding-right-1-below-medium { padding-right: 5px; } }
@media (min-width: 1200px) { .padding-right-1-above-large { padding-right: 5px; } }
@media (max-width: 1200px) { .padding-right-1-below-large { padding-right: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-bottom-1 { padding-bottom: 5px; }
@media (min-width: 780px) { .padding-bottom-1-above-medium { padding-bottom: 5px; } }
@media (max-width: 780px) { .padding-bottom-1-below-medium { padding-bottom: 5px; } }
@media (min-width: 1200px) { .padding-bottom-1-above-large { padding-bottom: 5px; } }
@media (max-width: 1200px) { .padding-bottom-1-below-large { padding-bottom: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-left-1 { padding-left: 5px; }
@media (min-width: 780px) { .padding-left-1-above-medium { padding-left: 5px; } }
@media (max-width: 780px) { .padding-left-1-below-medium { padding-left: 5px; } }
@media (min-width: 1200px) { .padding-left-1-above-large { padding-left: 5px; } }
@media (max-width: 1200px) { .padding-left-1-below-large { padding-left: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-vertical-1 { padding-top: 5px; padding-bottom: 5px; }
@media (min-width: 780px) { .padding-vertical-1-above-medium { padding-top: 5px; padding-bottom: 5px; } }
@media (max-width: 780px) { .padding-vertical-1-below-medium { padding-top: 5px; padding-bottom: 5px; } }
@media (min-width: 1200px) { .padding-vertical-1-above-large { padding-top: 5px; padding-bottom: 5px; } }
@media (max-width: 1200px) { .padding-vertical-1-below-large { padding-top: 5px; padding-bottom: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-horizontal-1 { padding-left: 5px; padding-right: 5px; }
@media (min-width: 780px) { .padding-horizontal-1-above-medium { padding-left: 5px; padding-right: 5px; } }
@media (max-width: 780px) { .padding-horizontal-1-below-medium { padding-left: 5px; padding-right: 5px; } }
@media (min-width: 1200px) { .padding-horizontal-1-above-large { padding-left: 5px; padding-right: 5px; } }
@media (max-width: 1200px) { .padding-horizontal-1-below-large { padding-left: 5px; padding-right: 5px; } }
.padding-1 { padding: 5px; }
@media (min-width: 780px) { .padding-1-above-medium { padding: 5px; } }
@media (max-width: 780px) { .padding-1-below-medium { padding: 5px; } }
@media (min-width: 1200px) { .padding-1-above-large { padding: 5px; } }
@media (max-width: 1200px) { .padding-1-below-large { padding: 5px; } }
.padding-top-2 { padding-top: 10px; }
@media (min-width: 780px) { .padding-top-2-above-medium { padding-top: 10px; } }
@media (max-width: 780px) { .padding-top-2-below-medium { padding-top: 10px; } }
@media (min-width: 1200px) { .padding-top-2-above-large { padding-top: 10px; } }
@media (max-width: 1200px) { .padding-top-2-below-large { padding-top: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-right-2 { padding-right: 10px; }
@media (min-width: 780px) { .padding-right-2-above-medium { padding-right: 10px; } }
@media (max-width: 780px) { .padding-right-2-below-medium { padding-right: 10px; } }
@media (min-width: 1200px) { .padding-right-2-above-large { padding-right: 10px; } }
@media (max-width: 1200px) { .padding-right-2-below-large { padding-right: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-bottom-2 { padding-bottom: 10px; }
@media (min-width: 780px) { .padding-bottom-2-above-medium { padding-bottom: 10px; } }
@media (max-width: 780px) { .padding-bottom-2-below-medium { padding-bottom: 10px; } }
@media (min-width: 1200px) { .padding-bottom-2-above-large { padding-bottom: 10px; } }
@media (max-width: 1200px) { .padding-bottom-2-below-large { padding-bottom: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-left-2 { padding-left: 10px; }
@media (min-width: 780px) { .padding-left-2-above-medium { padding-left: 10px; } }
@media (max-width: 780px) { .padding-left-2-below-medium { padding-left: 10px; } }
@media (min-width: 1200px) { .padding-left-2-above-large { padding-left: 10px; } }
@media (max-width: 1200px) { .padding-left-2-below-large { padding-left: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-vertical-2 { padding-top: 10px; padding-bottom: 10px; }
@media (min-width: 780px) { .padding-vertical-2-above-medium { padding-top: 10px; padding-bottom: 10px; } }
@media (max-width: 780px) { .padding-vertical-2-below-medium { padding-top: 10px; padding-bottom: 10px; } }
@media (min-width: 1200px) { .padding-vertical-2-above-large { padding-top: 10px; padding-bottom: 10px; } }
@media (max-width: 1200px) { .padding-vertical-2-below-large { padding-top: 10px; padding-bottom: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-horizontal-2 { padding-left: 10px; padding-right: 10px; }
@media (min-width: 780px) { .padding-horizontal-2-above-medium { padding-left: 10px; padding-right: 10px; } }
@media (max-width: 780px) { .padding-horizontal-2-below-medium { padding-left: 10px; padding-right: 10px; } }
@media (min-width: 1200px) { .padding-horizontal-2-above-large { padding-left: 10px; padding-right: 10px; } }
@media (max-width: 1200px) { .padding-horizontal-2-below-large { padding-left: 10px; padding-right: 10px; } }
.padding-2 { padding: 10px; }
@media (min-width: 780px) { .padding-2-above-medium { padding: 10px; } }
@media (max-width: 780px) { .padding-2-below-medium { padding: 10px; } }
@media (min-width: 1200px) { .padding-2-above-large { padding: 10px; } }
@media (max-width: 1200px) { .padding-2-below-large { padding: 10px; } }
.padding-top-3 { padding-top: 15px; }
@media (min-width: 780px) { .padding-top-3-above-medium { padding-top: 15px; } }
@media (max-width: 780px) { .padding-top-3-below-medium { padding-top: 15px; } }
@media (min-width: 1200px) { .padding-top-3-above-large { padding-top: 15px; } }
@media (max-width: 1200px) { .padding-top-3-below-large { padding-top: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-right-3 { padding-right: 15px; }
@media (min-width: 780px) { .padding-right-3-above-medium { padding-right: 15px; } }
@media (max-width: 780px) { .padding-right-3-below-medium { padding-right: 15px; } }
@media (min-width: 1200px) { .padding-right-3-above-large { padding-right: 15px; } }
@media (max-width: 1200px) { .padding-right-3-below-large { padding-right: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-bottom-3 { padding-bottom: 15px; }
@media (min-width: 780px) { .padding-bottom-3-above-medium { padding-bottom: 15px; } }
@media (max-width: 780px) { .padding-bottom-3-below-medium { padding-bottom: 15px; } }
@media (min-width: 1200px) { .padding-bottom-3-above-large { padding-bottom: 15px; } }
@media (max-width: 1200px) { .padding-bottom-3-below-large { padding-bottom: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-left-3 { padding-left: 15px; }
@media (min-width: 780px) { .padding-left-3-above-medium { padding-left: 15px; } }
@media (max-width: 780px) { .padding-left-3-below-medium { padding-left: 15px; } }
@media (min-width: 1200px) { .padding-left-3-above-large { padding-left: 15px; } }
@media (max-width: 1200px) { .padding-left-3-below-large { padding-left: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-vertical-3 { padding-top: 15px; padding-bottom: 15px; }
@media (min-width: 780px) { .padding-vertical-3-above-medium { padding-top: 15px; padding-bottom: 15px; } }
@media (max-width: 780px) { .padding-vertical-3-below-medium { padding-top: 15px; padding-bottom: 15px; } }
@media (min-width: 1200px) { .padding-vertical-3-above-large { padding-top: 15px; padding-bottom: 15px; } }
@media (max-width: 1200px) { .padding-vertical-3-below-large { padding-top: 15px; padding-bottom: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-horizontal-3 { padding-left: 15px; padding-right: 15px; }
@media (min-width: 780px) { .padding-horizontal-3-above-medium { padding-left: 15px; padding-right: 15px; } }
@media (max-width: 780px) { .padding-horizontal-3-below-medium { padding-left: 15px; padding-right: 15px; } }
@media (min-width: 1200px) { .padding-horizontal-3-above-large { padding-left: 15px; padding-right: 15px; } }
@media (max-width: 1200px) { .padding-horizontal-3-below-large { padding-left: 15px; padding-right: 15px; } }
.padding-3 { padding: 15px; }
@media (min-width: 780px) { .padding-3-above-medium { padding: 15px; } }
@media (max-width: 780px) { .padding-3-below-medium { padding: 15px; } }
@media (min-width: 1200px) { .padding-3-above-large { padding: 15px; } }
@media (max-width: 1200px) { .padding-3-below-large { padding: 15px; } }
.padding-top-4 { padding-top: 20px; }
@media (min-width: 780px) { .padding-top-4-above-medium { padding-top: 20px; } }
@media (max-width: 780px) { .padding-top-4-below-medium { padding-top: 20px; } }
@media (min-width: 1200px) { .padding-top-4-above-large { padding-top: 20px; } }
@media (max-width: 1200px) { .padding-top-4-below-large { padding-top: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-right-4 { padding-right: 20px; }
@media (min-width: 780px) { .padding-right-4-above-medium { padding-right: 20px; } }
@media (max-width: 780px) { .padding-right-4-below-medium { padding-right: 20px; } }
@media (min-width: 1200px) { .padding-right-4-above-large { padding-right: 20px; } }
@media (max-width: 1200px) { .padding-right-4-below-large { padding-right: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-bottom-4 { padding-bottom: 20px; }
@media (min-width: 780px) { .padding-bottom-4-above-medium { padding-bottom: 20px; } }
@media (max-width: 780px) { .padding-bottom-4-below-medium { padding-bottom: 20px; } }
@media (min-width: 1200px) { .padding-bottom-4-above-large { padding-bottom: 20px; } }
@media (max-width: 1200px) { .padding-bottom-4-below-large { padding-bottom: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-left-4 { padding-left: 20px; }
@media (min-width: 780px) { .padding-left-4-above-medium { padding-left: 20px; } }
@media (max-width: 780px) { .padding-left-4-below-medium { padding-left: 20px; } }
@media (min-width: 1200px) { .padding-left-4-above-large { padding-left: 20px; } }
@media (max-width: 1200px) { .padding-left-4-below-large { padding-left: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-vertical-4 { padding-top: 20px; padding-bottom: 20px; }
@media (min-width: 780px) { .padding-vertical-4-above-medium { padding-top: 20px; padding-bottom: 20px; } }
@media (max-width: 780px) { .padding-vertical-4-below-medium { padding-top: 20px; padding-bottom: 20px; } }
@media (min-width: 1200px) { .padding-vertical-4-above-large { padding-top: 20px; padding-bottom: 20px; } }
@media (max-width: 1200px) { .padding-vertical-4-below-large { padding-top: 20px; padding-bottom: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-horizontal-4 { padding-left: 20px; padding-right: 20px; }
@media (min-width: 780px) { .padding-horizontal-4-above-medium { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 780px) { .padding-horizontal-4-below-medium { padding-left: 20px; padding-right: 20px; } }
@media (min-width: 1200px) { .padding-horizontal-4-above-large { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 1200px) { .padding-horizontal-4-below-large { padding-left: 20px; padding-right: 20px; } }
.padding-4 { padding: 20px; }
@media (min-width: 780px) { .padding-4-above-medium { padding: 20px; } }
@media (max-width: 780px) { .padding-4-below-medium { padding: 20px; } }
@media (min-width: 1200px) { .padding-4-above-large { padding: 20px; } }
@media (max-width: 1200px) { .padding-4-below-large { padding: 20px; } }
.padding-top-5 { padding-top: 25px; }
@media (min-width: 780px) { .padding-top-5-above-medium { padding-top: 25px; } }
@media (max-width: 780px) { .padding-top-5-below-medium { padding-top: 25px; } }
@media (min-width: 1200px) { .padding-top-5-above-large { padding-top: 25px; } }
@media (max-width: 1200px) { .padding-top-5-below-large { padding-top: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-right-5 { padding-right: 25px; }
@media (min-width: 780px) { .padding-right-5-above-medium { padding-right: 25px; } }
@media (max-width: 780px) { .padding-right-5-below-medium { padding-right: 25px; } }
@media (min-width: 1200px) { .padding-right-5-above-large { padding-right: 25px; } }
@media (max-width: 1200px) { .padding-right-5-below-large { padding-right: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-bottom-5 { padding-bottom: 25px; }
@media (min-width: 780px) { .padding-bottom-5-above-medium { padding-bottom: 25px; } }
@media (max-width: 780px) { .padding-bottom-5-below-medium { padding-bottom: 25px; } }
@media (min-width: 1200px) { .padding-bottom-5-above-large { padding-bottom: 25px; } }
@media (max-width: 1200px) { .padding-bottom-5-below-large { padding-bottom: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-left-5 { padding-left: 25px; }
@media (min-width: 780px) { .padding-left-5-above-medium { padding-left: 25px; } }
@media (max-width: 780px) { .padding-left-5-below-medium { padding-left: 25px; } }
@media (min-width: 1200px) { .padding-left-5-above-large { padding-left: 25px; } }
@media (max-width: 1200px) { .padding-left-5-below-large { padding-left: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-vertical-5 { padding-top: 25px; padding-bottom: 25px; }
@media (min-width: 780px) { .padding-vertical-5-above-medium { padding-top: 25px; padding-bottom: 25px; } }
@media (max-width: 780px) { .padding-vertical-5-below-medium { padding-top: 25px; padding-bottom: 25px; } }
@media (min-width: 1200px) { .padding-vertical-5-above-large { padding-top: 25px; padding-bottom: 25px; } }
@media (max-width: 1200px) { .padding-vertical-5-below-large { padding-top: 25px; padding-bottom: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-horizontal-5 { padding-left: 25px; padding-right: 25px; }
@media (min-width: 780px) { .padding-horizontal-5-above-medium { padding-left: 25px; padding-right: 25px; } }
@media (max-width: 780px) { .padding-horizontal-5-below-medium { padding-left: 25px; padding-right: 25px; } }
@media (min-width: 1200px) { .padding-horizontal-5-above-large { padding-left: 25px; padding-right: 25px; } }
@media (max-width: 1200px) { .padding-horizontal-5-below-large { padding-left: 25px; padding-right: 25px; } }
.padding-5 { padding: 25px; }
@media (min-width: 780px) { .padding-5-above-medium { padding: 25px; } }
@media (max-width: 780px) { .padding-5-below-medium { padding: 25px; } }
@media (min-width: 1200px) { .padding-5-above-large { padding: 25px; } }
@media (max-width: 1200px) { .padding-5-below-large { padding: 25px; } }
.padding-top-6 { padding-top: 30px; }
@media (min-width: 780px) { .padding-top-6-above-medium { padding-top: 30px; } }
@media (max-width: 780px) { .padding-top-6-below-medium { padding-top: 30px; } }
@media (min-width: 1200px) { .padding-top-6-above-large { padding-top: 30px; } }
@media (max-width: 1200px) { .padding-top-6-below-large { padding-top: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-right-6 { padding-right: 30px; }
@media (min-width: 780px) { .padding-right-6-above-medium { padding-right: 30px; } }
@media (max-width: 780px) { .padding-right-6-below-medium { padding-right: 30px; } }
@media (min-width: 1200px) { .padding-right-6-above-large { padding-right: 30px; } }
@media (max-width: 1200px) { .padding-right-6-below-large { padding-right: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-bottom-6 { padding-bottom: 30px; }
@media (min-width: 780px) { .padding-bottom-6-above-medium { padding-bottom: 30px; } }
@media (max-width: 780px) { .padding-bottom-6-below-medium { padding-bottom: 30px; } }
@media (min-width: 1200px) { .padding-bottom-6-above-large { padding-bottom: 30px; } }
@media (max-width: 1200px) { .padding-bottom-6-below-large { padding-bottom: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-left-6 { padding-left: 30px; }
@media (min-width: 780px) { .padding-left-6-above-medium { padding-left: 30px; } }
@media (max-width: 780px) { .padding-left-6-below-medium { padding-left: 30px; } }
@media (min-width: 1200px) { .padding-left-6-above-large { padding-left: 30px; } }
@media (max-width: 1200px) { .padding-left-6-below-large { padding-left: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-vertical-6 { padding-top: 30px; padding-bottom: 30px; }
@media (min-width: 780px) { .padding-vertical-6-above-medium { padding-top: 30px; padding-bottom: 30px; } }
@media (max-width: 780px) { .padding-vertical-6-below-medium { padding-top: 30px; padding-bottom: 30px; } }
@media (min-width: 1200px) { .padding-vertical-6-above-large { padding-top: 30px; padding-bottom: 30px; } }
@media (max-width: 1200px) { .padding-vertical-6-below-large { padding-top: 30px; padding-bottom: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-horizontal-6 { padding-left: 30px; padding-right: 30px; }
@media (min-width: 780px) { .padding-horizontal-6-above-medium { padding-left: 30px; padding-right: 30px; } }
@media (max-width: 780px) { .padding-horizontal-6-below-medium { padding-left: 30px; padding-right: 30px; } }
@media (min-width: 1200px) { .padding-horizontal-6-above-large { padding-left: 30px; padding-right: 30px; } }
@media (max-width: 1200px) { .padding-horizontal-6-below-large { padding-left: 30px; padding-right: 30px; } }
.padding-6 { padding: 30px; }
@media (min-width: 780px) { .padding-6-above-medium { padding: 30px; } }
@media (max-width: 780px) { .padding-6-below-medium { padding: 30px; } }
@media (min-width: 1200px) { .padding-6-above-large { padding: 30px; } }
@media (max-width: 1200px) { .padding-6-below-large { padding: 30px; } }
.padding-top-7 { padding-top: 35px; }
@media (min-width: 780px) { .padding-top-7-above-medium { padding-top: 35px; } }
@media (max-width: 780px) { .padding-top-7-below-medium { padding-top: 35px; } }
@media (min-width: 1200px) { .padding-top-7-above-large { padding-top: 35px; } }
@media (max-width: 1200px) { .padding-top-7-below-large { padding-top: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-right-7 { padding-right: 35px; }
@media (min-width: 780px) { .padding-right-7-above-medium { padding-right: 35px; } }
@media (max-width: 780px) { .padding-right-7-below-medium { padding-right: 35px; } }
@media (min-width: 1200px) { .padding-right-7-above-large { padding-right: 35px; } }
@media (max-width: 1200px) { .padding-right-7-below-large { padding-right: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-bottom-7 { padding-bottom: 35px; }
@media (min-width: 780px) { .padding-bottom-7-above-medium { padding-bottom: 35px; } }
@media (max-width: 780px) { .padding-bottom-7-below-medium { padding-bottom: 35px; } }
@media (min-width: 1200px) { .padding-bottom-7-above-large { padding-bottom: 35px; } }
@media (max-width: 1200px) { .padding-bottom-7-below-large { padding-bottom: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-left-7 { padding-left: 35px; }
@media (min-width: 780px) { .padding-left-7-above-medium { padding-left: 35px; } }
@media (max-width: 780px) { .padding-left-7-below-medium { padding-left: 35px; } }
@media (min-width: 1200px) { .padding-left-7-above-large { padding-left: 35px; } }
@media (max-width: 1200px) { .padding-left-7-below-large { padding-left: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-vertical-7 { padding-top: 35px; padding-bottom: 35px; }
@media (min-width: 780px) { .padding-vertical-7-above-medium { padding-top: 35px; padding-bottom: 35px; } }
@media (max-width: 780px) { .padding-vertical-7-below-medium { padding-top: 35px; padding-bottom: 35px; } }
@media (min-width: 1200px) { .padding-vertical-7-above-large { padding-top: 35px; padding-bottom: 35px; } }
@media (max-width: 1200px) { .padding-vertical-7-below-large { padding-top: 35px; padding-bottom: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-horizontal-7 { padding-left: 35px; padding-right: 35px; }
@media (min-width: 780px) { .padding-horizontal-7-above-medium { padding-left: 35px; padding-right: 35px; } }
@media (max-width: 780px) { .padding-horizontal-7-below-medium { padding-left: 35px; padding-right: 35px; } }
@media (min-width: 1200px) { .padding-horizontal-7-above-large { padding-left: 35px; padding-right: 35px; } }
@media (max-width: 1200px) { .padding-horizontal-7-below-large { padding-left: 35px; padding-right: 35px; } }
.padding-7 { padding: 35px; }
@media (min-width: 780px) { .padding-7-above-medium { padding: 35px; } }
@media (max-width: 780px) { .padding-7-below-medium { padding: 35px; } }
@media (min-width: 1200px) { .padding-7-above-large { padding: 35px; } }
@media (max-width: 1200px) { .padding-7-below-large { padding: 35px; } }
.padding-top-8 { padding-top: 40px; }
@media (min-width: 780px) { .padding-top-8-above-medium { padding-top: 40px; } }
@media (max-width: 780px) { .padding-top-8-below-medium { padding-top: 40px; } }
@media (min-width: 1200px) { .padding-top-8-above-large { padding-top: 40px; } }
@media (max-width: 1200px) { .padding-top-8-below-large { padding-top: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-right-8 { padding-right: 40px; }
@media (min-width: 780px) { .padding-right-8-above-medium { padding-right: 40px; } }
@media (max-width: 780px) { .padding-right-8-below-medium { padding-right: 40px; } }
@media (min-width: 1200px) { .padding-right-8-above-large { padding-right: 40px; } }
@media (max-width: 1200px) { .padding-right-8-below-large { padding-right: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-bottom-8 { padding-bottom: 40px; }
@media (min-width: 780px) { .padding-bottom-8-above-medium { padding-bottom: 40px; } }
@media (max-width: 780px) { .padding-bottom-8-below-medium { padding-bottom: 40px; } }
@media (min-width: 1200px) { .padding-bottom-8-above-large { padding-bottom: 40px; } }
@media (max-width: 1200px) { .padding-bottom-8-below-large { padding-bottom: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-left-8 { padding-left: 40px; }
@media (min-width: 780px) { .padding-left-8-above-medium { padding-left: 40px; } }
@media (max-width: 780px) { .padding-left-8-below-medium { padding-left: 40px; } }
@media (min-width: 1200px) { .padding-left-8-above-large { padding-left: 40px; } }
@media (max-width: 1200px) { .padding-left-8-below-large { padding-left: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-vertical-8 { padding-top: 40px; padding-bottom: 40px; }
@media (min-width: 780px) { .padding-vertical-8-above-medium { padding-top: 40px; padding-bottom: 40px; } }
@media (max-width: 780px) { .padding-vertical-8-below-medium { padding-top: 40px; padding-bottom: 40px; } }
@media (min-width: 1200px) { .padding-vertical-8-above-large { padding-top: 40px; padding-bottom: 40px; } }
@media (max-width: 1200px) { .padding-vertical-8-below-large { padding-top: 40px; padding-bottom: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-horizontal-8 { padding-left: 40px; padding-right: 40px; }
@media (min-width: 780px) { .padding-horizontal-8-above-medium { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 780px) { .padding-horizontal-8-below-medium { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1200px) { .padding-horizontal-8-above-large { padding-left: 40px; padding-right: 40px; } }
@media (max-width: 1200px) { .padding-horizontal-8-below-large { padding-left: 40px; padding-right: 40px; } }
.padding-8 { padding: 40px; }
@media (min-width: 780px) { .padding-8-above-medium { padding: 40px; } }
@media (max-width: 780px) { .padding-8-below-medium { padding: 40px; } }
@media (min-width: 1200px) { .padding-8-above-large { padding: 40px; } }
@media (max-width: 1200px) { .padding-8-below-large { padding: 40px; } }
.padding-top-9 { padding-top: 45px; }
@media (min-width: 780px) { .padding-top-9-above-medium { padding-top: 45px; } }
@media (max-width: 780px) { .padding-top-9-below-medium { padding-top: 45px; } }
@media (min-width: 1200px) { .padding-top-9-above-large { padding-top: 45px; } }
@media (max-width: 1200px) { .padding-top-9-below-large { padding-top: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-right-9 { padding-right: 45px; }
@media (min-width: 780px) { .padding-right-9-above-medium { padding-right: 45px; } }
@media (max-width: 780px) { .padding-right-9-below-medium { padding-right: 45px; } }
@media (min-width: 1200px) { .padding-right-9-above-large { padding-right: 45px; } }
@media (max-width: 1200px) { .padding-right-9-below-large { padding-right: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-bottom-9 { padding-bottom: 45px; }
@media (min-width: 780px) { .padding-bottom-9-above-medium { padding-bottom: 45px; } }
@media (max-width: 780px) { .padding-bottom-9-below-medium { padding-bottom: 45px; } }
@media (min-width: 1200px) { .padding-bottom-9-above-large { padding-bottom: 45px; } }
@media (max-width: 1200px) { .padding-bottom-9-below-large { padding-bottom: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-left-9 { padding-left: 45px; }
@media (min-width: 780px) { .padding-left-9-above-medium { padding-left: 45px; } }
@media (max-width: 780px) { .padding-left-9-below-medium { padding-left: 45px; } }
@media (min-width: 1200px) { .padding-left-9-above-large { padding-left: 45px; } }
@media (max-width: 1200px) { .padding-left-9-below-large { padding-left: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-vertical-9 { padding-top: 45px; padding-bottom: 45px; }
@media (min-width: 780px) { .padding-vertical-9-above-medium { padding-top: 45px; padding-bottom: 45px; } }
@media (max-width: 780px) { .padding-vertical-9-below-medium { padding-top: 45px; padding-bottom: 45px; } }
@media (min-width: 1200px) { .padding-vertical-9-above-large { padding-top: 45px; padding-bottom: 45px; } }
@media (max-width: 1200px) { .padding-vertical-9-below-large { padding-top: 45px; padding-bottom: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-horizontal-9 { padding-left: 45px; padding-right: 45px; }
@media (min-width: 780px) { .padding-horizontal-9-above-medium { padding-left: 45px; padding-right: 45px; } }
@media (max-width: 780px) { .padding-horizontal-9-below-medium { padding-left: 45px; padding-right: 45px; } }
@media (min-width: 1200px) { .padding-horizontal-9-above-large { padding-left: 45px; padding-right: 45px; } }
@media (max-width: 1200px) { .padding-horizontal-9-below-large { padding-left: 45px; padding-right: 45px; } }
.padding-9 { padding: 45px; }
@media (min-width: 780px) { .padding-9-above-medium { padding: 45px; } }
@media (max-width: 780px) { .padding-9-below-medium { padding: 45px; } }
@media (min-width: 1200px) { .padding-9-above-large { padding: 45px; } }
@media (max-width: 1200px) { .padding-9-below-large { padding: 45px; } }
.padding-top-10 { padding-top: 50px; }
@media (min-width: 780px) { .padding-top-10-above-medium { padding-top: 50px; } }
@media (max-width: 780px) { .padding-top-10-below-medium { padding-top: 50px; } }
@media (min-width: 1200px) { .padding-top-10-above-large { padding-top: 50px; } }
@media (max-width: 1200px) { .padding-top-10-below-large { padding-top: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-right-10 { padding-right: 50px; }
@media (min-width: 780px) { .padding-right-10-above-medium { padding-right: 50px; } }
@media (max-width: 780px) { .padding-right-10-below-medium { padding-right: 50px; } }
@media (min-width: 1200px) { .padding-right-10-above-large { padding-right: 50px; } }
@media (max-width: 1200px) { .padding-right-10-below-large { padding-right: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-bottom-10 { padding-bottom: 50px; }
@media (min-width: 780px) { .padding-bottom-10-above-medium { padding-bottom: 50px; } }
@media (max-width: 780px) { .padding-bottom-10-below-medium { padding-bottom: 50px; } }
@media (min-width: 1200px) { .padding-bottom-10-above-large { padding-bottom: 50px; } }
@media (max-width: 1200px) { .padding-bottom-10-below-large { padding-bottom: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-left-10 { padding-left: 50px; }
@media (min-width: 780px) { .padding-left-10-above-medium { padding-left: 50px; } }
@media (max-width: 780px) { .padding-left-10-below-medium { padding-left: 50px; } }
@media (min-width: 1200px) { .padding-left-10-above-large { padding-left: 50px; } }
@media (max-width: 1200px) { .padding-left-10-below-large { padding-left: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-vertical-10 { padding-top: 50px; padding-bottom: 50px; }
@media (min-width: 780px) { .padding-vertical-10-above-medium { padding-top: 50px; padding-bottom: 50px; } }
@media (max-width: 780px) { .padding-vertical-10-below-medium { padding-top: 50px; padding-bottom: 50px; } }
@media (min-width: 1200px) { .padding-vertical-10-above-large { padding-top: 50px; padding-bottom: 50px; } }
@media (max-width: 1200px) { .padding-vertical-10-below-large { padding-top: 50px; padding-bottom: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-horizontal-10 { padding-left: 50px; padding-right: 50px; }
@media (min-width: 780px) { .padding-horizontal-10-above-medium { padding-left: 50px; padding-right: 50px; } }
@media (max-width: 780px) { .padding-horizontal-10-below-medium { padding-left: 50px; padding-right: 50px; } }
@media (min-width: 1200px) { .padding-horizontal-10-above-large { padding-left: 50px; padding-right: 50px; } }
@media (max-width: 1200px) { .padding-horizontal-10-below-large { padding-left: 50px; padding-right: 50px; } }
.padding-10 { padding: 50px; }
@media (min-width: 780px) { .padding-10-above-medium { padding: 50px; } }
@media (max-width: 780px) { .padding-10-below-medium { padding: 50px; } }
@media (min-width: 1200px) { .padding-10-above-large { padding: 50px; } }
@media (max-width: 1200px) { .padding-10-below-large { padding: 50px; } }
.padding-top-11 { padding-top: 55px; }
@media (min-width: 780px) { .padding-top-11-above-medium { padding-top: 55px; } }
@media (max-width: 780px) { .padding-top-11-below-medium { padding-top: 55px; } }
@media (min-width: 1200px) { .padding-top-11-above-large { padding-top: 55px; } }
@media (max-width: 1200px) { .padding-top-11-below-large { padding-top: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-right-11 { padding-right: 55px; }
@media (min-width: 780px) { .padding-right-11-above-medium { padding-right: 55px; } }
@media (max-width: 780px) { .padding-right-11-below-medium { padding-right: 55px; } }
@media (min-width: 1200px) { .padding-right-11-above-large { padding-right: 55px; } }
@media (max-width: 1200px) { .padding-right-11-below-large { padding-right: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-bottom-11 { padding-bottom: 55px; }
@media (min-width: 780px) { .padding-bottom-11-above-medium { padding-bottom: 55px; } }
@media (max-width: 780px) { .padding-bottom-11-below-medium { padding-bottom: 55px; } }
@media (min-width: 1200px) { .padding-bottom-11-above-large { padding-bottom: 55px; } }
@media (max-width: 1200px) { .padding-bottom-11-below-large { padding-bottom: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-left-11 { padding-left: 55px; }
@media (min-width: 780px) { .padding-left-11-above-medium { padding-left: 55px; } }
@media (max-width: 780px) { .padding-left-11-below-medium { padding-left: 55px; } }
@media (min-width: 1200px) { .padding-left-11-above-large { padding-left: 55px; } }
@media (max-width: 1200px) { .padding-left-11-below-large { padding-left: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-vertical-11 { padding-top: 55px; padding-bottom: 55px; }
@media (min-width: 780px) { .padding-vertical-11-above-medium { padding-top: 55px; padding-bottom: 55px; } }
@media (max-width: 780px) { .padding-vertical-11-below-medium { padding-top: 55px; padding-bottom: 55px; } }
@media (min-width: 1200px) { .padding-vertical-11-above-large { padding-top: 55px; padding-bottom: 55px; } }
@media (max-width: 1200px) { .padding-vertical-11-below-large { padding-top: 55px; padding-bottom: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-horizontal-11 { padding-left: 55px; padding-right: 55px; }
@media (min-width: 780px) { .padding-horizontal-11-above-medium { padding-left: 55px; padding-right: 55px; } }
@media (max-width: 780px) { .padding-horizontal-11-below-medium { padding-left: 55px; padding-right: 55px; } }
@media (min-width: 1200px) { .padding-horizontal-11-above-large { padding-left: 55px; padding-right: 55px; } }
@media (max-width: 1200px) { .padding-horizontal-11-below-large { padding-left: 55px; padding-right: 55px; } }
.padding-11 { padding: 55px; }
@media (min-width: 780px) { .padding-11-above-medium { padding: 55px; } }
@media (max-width: 780px) { .padding-11-below-medium { padding: 55px; } }
@media (min-width: 1200px) { .padding-11-above-large { padding: 55px; } }
@media (max-width: 1200px) { .padding-11-below-large { padding: 55px; } }
.padding-top-12 { padding-top: 60px; }
@media (min-width: 780px) { .padding-top-12-above-medium { padding-top: 60px; } }
@media (max-width: 780px) { .padding-top-12-below-medium { padding-top: 60px; } }
@media (min-width: 1200px) { .padding-top-12-above-large { padding-top: 60px; } }
@media (max-width: 1200px) { .padding-top-12-below-large { padding-top: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-right-12 { padding-right: 60px; }
@media (min-width: 780px) { .padding-right-12-above-medium { padding-right: 60px; } }
@media (max-width: 780px) { .padding-right-12-below-medium { padding-right: 60px; } }
@media (min-width: 1200px) { .padding-right-12-above-large { padding-right: 60px; } }
@media (max-width: 1200px) { .padding-right-12-below-large { padding-right: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-bottom-12 { padding-bottom: 60px; }
@media (min-width: 780px) { .padding-bottom-12-above-medium { padding-bottom: 60px; } }
@media (max-width: 780px) { .padding-bottom-12-below-medium { padding-bottom: 60px; } }
@media (min-width: 1200px) { .padding-bottom-12-above-large { padding-bottom: 60px; } }
@media (max-width: 1200px) { .padding-bottom-12-below-large { padding-bottom: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-left-12 { padding-left: 60px; }
@media (min-width: 780px) { .padding-left-12-above-medium { padding-left: 60px; } }
@media (max-width: 780px) { .padding-left-12-below-medium { padding-left: 60px; } }
@media (min-width: 1200px) { .padding-left-12-above-large { padding-left: 60px; } }
@media (max-width: 1200px) { .padding-left-12-below-large { padding-left: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-vertical-12 { padding-top: 60px; padding-bottom: 60px; }
@media (min-width: 780px) { .padding-vertical-12-above-medium { padding-top: 60px; padding-bottom: 60px; } }
@media (max-width: 780px) { .padding-vertical-12-below-medium { padding-top: 60px; padding-bottom: 60px; } }
@media (min-width: 1200px) { .padding-vertical-12-above-large { padding-top: 60px; padding-bottom: 60px; } }
@media (max-width: 1200px) { .padding-vertical-12-below-large { padding-top: 60px; padding-bottom: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-horizontal-12 { padding-left: 60px; padding-right: 60px; }
@media (min-width: 780px) { .padding-horizontal-12-above-medium { padding-left: 60px; padding-right: 60px; } }
@media (max-width: 780px) { .padding-horizontal-12-below-medium { padding-left: 60px; padding-right: 60px; } }
@media (min-width: 1200px) { .padding-horizontal-12-above-large { padding-left: 60px; padding-right: 60px; } }
@media (max-width: 1200px) { .padding-horizontal-12-below-large { padding-left: 60px; padding-right: 60px; } }
.padding-12 { padding: 60px; }
@media (min-width: 780px) { .padding-12-above-medium { padding: 60px; } }
@media (max-width: 780px) { .padding-12-below-medium { padding: 60px; } }
@media (min-width: 1200px) { .padding-12-above-large { padding: 60px; } }
@media (max-width: 1200px) { .padding-12-below-large { padding: 60px; } }
.padding-top-13 { padding-top: 65px; }
@media (min-width: 780px) { .padding-top-13-above-medium { padding-top: 65px; } }
@media (max-width: 780px) { .padding-top-13-below-medium { padding-top: 65px; } }
@media (min-width: 1200px) { .padding-top-13-above-large { padding-top: 65px; } }
@media (max-width: 1200px) { .padding-top-13-below-large { padding-top: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-right-13 { padding-right: 65px; }
@media (min-width: 780px) { .padding-right-13-above-medium { padding-right: 65px; } }
@media (max-width: 780px) { .padding-right-13-below-medium { padding-right: 65px; } }
@media (min-width: 1200px) { .padding-right-13-above-large { padding-right: 65px; } }
@media (max-width: 1200px) { .padding-right-13-below-large { padding-right: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-bottom-13 { padding-bottom: 65px; }
@media (min-width: 780px) { .padding-bottom-13-above-medium { padding-bottom: 65px; } }
@media (max-width: 780px) { .padding-bottom-13-below-medium { padding-bottom: 65px; } }
@media (min-width: 1200px) { .padding-bottom-13-above-large { padding-bottom: 65px; } }
@media (max-width: 1200px) { .padding-bottom-13-below-large { padding-bottom: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-left-13 { padding-left: 65px; }
@media (min-width: 780px) { .padding-left-13-above-medium { padding-left: 65px; } }
@media (max-width: 780px) { .padding-left-13-below-medium { padding-left: 65px; } }
@media (min-width: 1200px) { .padding-left-13-above-large { padding-left: 65px; } }
@media (max-width: 1200px) { .padding-left-13-below-large { padding-left: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-vertical-13 { padding-top: 65px; padding-bottom: 65px; }
@media (min-width: 780px) { .padding-vertical-13-above-medium { padding-top: 65px; padding-bottom: 65px; } }
@media (max-width: 780px) { .padding-vertical-13-below-medium { padding-top: 65px; padding-bottom: 65px; } }
@media (min-width: 1200px) { .padding-vertical-13-above-large { padding-top: 65px; padding-bottom: 65px; } }
@media (max-width: 1200px) { .padding-vertical-13-below-large { padding-top: 65px; padding-bottom: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-horizontal-13 { padding-left: 65px; padding-right: 65px; }
@media (min-width: 780px) { .padding-horizontal-13-above-medium { padding-left: 65px; padding-right: 65px; } }
@media (max-width: 780px) { .padding-horizontal-13-below-medium { padding-left: 65px; padding-right: 65px; } }
@media (min-width: 1200px) { .padding-horizontal-13-above-large { padding-left: 65px; padding-right: 65px; } }
@media (max-width: 1200px) { .padding-horizontal-13-below-large { padding-left: 65px; padding-right: 65px; } }
.padding-13 { padding: 65px; }
@media (min-width: 780px) { .padding-13-above-medium { padding: 65px; } }
@media (max-width: 780px) { .padding-13-below-medium { padding: 65px; } }
@media (min-width: 1200px) { .padding-13-above-large { padding: 65px; } }
@media (max-width: 1200px) { .padding-13-below-large { padding: 65px; } }
.padding-top-14 { padding-top: 70px; }
@media (min-width: 780px) { .padding-top-14-above-medium { padding-top: 70px; } }
@media (max-width: 780px) { .padding-top-14-below-medium { padding-top: 70px; } }
@media (min-width: 1200px) { .padding-top-14-above-large { padding-top: 70px; } }
@media (max-width: 1200px) { .padding-top-14-below-large { padding-top: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-right-14 { padding-right: 70px; }
@media (min-width: 780px) { .padding-right-14-above-medium { padding-right: 70px; } }
@media (max-width: 780px) { .padding-right-14-below-medium { padding-right: 70px; } }
@media (min-width: 1200px) { .padding-right-14-above-large { padding-right: 70px; } }
@media (max-width: 1200px) { .padding-right-14-below-large { padding-right: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-bottom-14 { padding-bottom: 70px; }
@media (min-width: 780px) { .padding-bottom-14-above-medium { padding-bottom: 70px; } }
@media (max-width: 780px) { .padding-bottom-14-below-medium { padding-bottom: 70px; } }
@media (min-width: 1200px) { .padding-bottom-14-above-large { padding-bottom: 70px; } }
@media (max-width: 1200px) { .padding-bottom-14-below-large { padding-bottom: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-left-14 { padding-left: 70px; }
@media (min-width: 780px) { .padding-left-14-above-medium { padding-left: 70px; } }
@media (max-width: 780px) { .padding-left-14-below-medium { padding-left: 70px; } }
@media (min-width: 1200px) { .padding-left-14-above-large { padding-left: 70px; } }
@media (max-width: 1200px) { .padding-left-14-below-large { padding-left: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-vertical-14 { padding-top: 70px; padding-bottom: 70px; }
@media (min-width: 780px) { .padding-vertical-14-above-medium { padding-top: 70px; padding-bottom: 70px; } }
@media (max-width: 780px) { .padding-vertical-14-below-medium { padding-top: 70px; padding-bottom: 70px; } }
@media (min-width: 1200px) { .padding-vertical-14-above-large { padding-top: 70px; padding-bottom: 70px; } }
@media (max-width: 1200px) { .padding-vertical-14-below-large { padding-top: 70px; padding-bottom: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-horizontal-14 { padding-left: 70px; padding-right: 70px; }
@media (min-width: 780px) { .padding-horizontal-14-above-medium { padding-left: 70px; padding-right: 70px; } }
@media (max-width: 780px) { .padding-horizontal-14-below-medium { padding-left: 70px; padding-right: 70px; } }
@media (min-width: 1200px) { .padding-horizontal-14-above-large { padding-left: 70px; padding-right: 70px; } }
@media (max-width: 1200px) { .padding-horizontal-14-below-large { padding-left: 70px; padding-right: 70px; } }
.padding-14 { padding: 70px; }
@media (min-width: 780px) { .padding-14-above-medium { padding: 70px; } }
@media (max-width: 780px) { .padding-14-below-medium { padding: 70px; } }
@media (min-width: 1200px) { .padding-14-above-large { padding: 70px; } }
@media (max-width: 1200px) { .padding-14-below-large { padding: 70px; } }
.padding-top-15 { padding-top: 75px; }
@media (min-width: 780px) { .padding-top-15-above-medium { padding-top: 75px; } }
@media (max-width: 780px) { .padding-top-15-below-medium { padding-top: 75px; } }
@media (min-width: 1200px) { .padding-top-15-above-large { padding-top: 75px; } }
@media (max-width: 1200px) { .padding-top-15-below-large { padding-top: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-right-15 { padding-right: 75px; }
@media (min-width: 780px) { .padding-right-15-above-medium { padding-right: 75px; } }
@media (max-width: 780px) { .padding-right-15-below-medium { padding-right: 75px; } }
@media (min-width: 1200px) { .padding-right-15-above-large { padding-right: 75px; } }
@media (max-width: 1200px) { .padding-right-15-below-large { padding-right: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-bottom-15 { padding-bottom: 75px; }
@media (min-width: 780px) { .padding-bottom-15-above-medium { padding-bottom: 75px; } }
@media (max-width: 780px) { .padding-bottom-15-below-medium { padding-bottom: 75px; } }
@media (min-width: 1200px) { .padding-bottom-15-above-large { padding-bottom: 75px; } }
@media (max-width: 1200px) { .padding-bottom-15-below-large { padding-bottom: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-left-15 { padding-left: 75px; }
@media (min-width: 780px) { .padding-left-15-above-medium { padding-left: 75px; } }
@media (max-width: 780px) { .padding-left-15-below-medium { padding-left: 75px; } }
@media (min-width: 1200px) { .padding-left-15-above-large { padding-left: 75px; } }
@media (max-width: 1200px) { .padding-left-15-below-large { padding-left: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-vertical-15 { padding-top: 75px; padding-bottom: 75px; }
@media (min-width: 780px) { .padding-vertical-15-above-medium { padding-top: 75px; padding-bottom: 75px; } }
@media (max-width: 780px) { .padding-vertical-15-below-medium { padding-top: 75px; padding-bottom: 75px; } }
@media (min-width: 1200px) { .padding-vertical-15-above-large { padding-top: 75px; padding-bottom: 75px; } }
@media (max-width: 1200px) { .padding-vertical-15-below-large { padding-top: 75px; padding-bottom: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.padding-horizontal-15 { padding-left: 75px; padding-right: 75px; }
@media (min-width: 780px) { .padding-horizontal-15-above-medium { padding-left: 75px; padding-right: 75px; } }
@media (max-width: 780px) { .padding-horizontal-15-below-medium { padding-left: 75px; padding-right: 75px; } }
@media (min-width: 1200px) { .padding-horizontal-15-above-large { padding-left: 75px; padding-right: 75px; } }
@media (max-width: 1200px) { .padding-horizontal-15-below-large { padding-left: 75px; padding-right: 75px; } }
.padding-15 { padding: 75px; }
@media (min-width: 780px) { .padding-15-above-medium { padding: 75px; } }
@media (max-width: 780px) { .padding-15-below-medium { padding: 75px; } }
@media (min-width: 1200px) { .padding-15-above-large { padding: 75px; } }
@media (max-width: 1200px) { .padding-15-below-large { padding: 75px; } }
.no-padding { padding: 0 !important; }
@media (min-width: 780px) { .no-padding-above-medium { padding: 0 !important; } }
@media (max-width: 780px) { .no-padding-below-medium { padding: 0 !important; } }
@media (min-width: 1200px) { .no-padding-above-large { padding: 0 !important; } }
@media (max-width: 1200px) { .no-padding-below-large { padding: 0 !important; } }
.no-padding-last:last-of-type { padding: 0 !important; }
.padding-auto { padding: 0 auto; }
@media (min-width: 780px) { .padding-auto-above-medium { padding: 0 auto; } }
@media (max-width: 780px) { .padding-auto-below-medium { padding: 0 auto; } }
@media (min-width: 1200px) { .padding-auto-above-large { padding: 0 auto; } }
@media (max-width: 1200px) { .padding-auto-below-large { padding: 0 auto; } }
.position-absolute { position: absolute; }
@media (min-width: 780px) { .position-absolute-above-medium { position: absolute; } }
@media (max-width: 780px) { .position-absolute-below-medium { position: absolute; } }
@media (min-width: 1200px) { .position-absolute-above-large { position: absolute; } }
@media (max-width: 1200px) { .position-absolute-below-large { position: absolute; } }
.position-static { position: static; }
@media (min-width: 780px) { .position-static-above-medium { position: static; } }
@media (max-width: 780px) { .position-static-below-medium { position: static; } }
@media (min-width: 1200px) { .position-static-above-large { position: static; } }
@media (max-width: 1200px) { .position-static-below-large { position: static; } }
.position-relative { position: relative; }
@media (min-width: 780px) { .position-relative-above-medium { position: relative; } }
@media (max-width: 780px) { .position-relative-below-medium { position: relative; } }
@media (min-width: 1200px) { .position-relative-above-large { position: relative; } }
@media (max-width: 1200px) { .position-relative-below-large { position: relative; } }
.position-fixed { position: fixed; }
@media (min-width: 780px) { .position-fixed-above-medium { position: fixed; } }
@media (max-width: 780px) { .position-fixed-below-medium { position: fixed; } }
@media (min-width: 1200px) { .position-fixed-above-large { position: fixed; } }
@media (max-width: 1200px) { .position-fixed-below-large { position: fixed; } }
*, *:before, *:after { box-sizing: border-box; }
*:focus { outline: none; }
html, body, div, span, object, iframe, hr, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, button, textarea, select, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section { margin: 0; padding: 0; line-height: 1; }
a, a:visited { color: inherit; text-decoration: none; cursor: pointer; }
a img { border: 0; }
img { max-width: 100%; }
.right-0 { right: 0px; }
@media (min-width: 780px) { .right-0-above-medium { right: 0px; } }
@media (max-width: 780px) { .right-0-below-medium { right: 0px; } }
@media (min-width: 1200px) { .right-0-above-large { right: 0px; } }
@media (max-width: 1200px) { .right-0-below-large { right: 0px; } }
.right-1 { right: 5px; }
@media (min-width: 780px) { .right-1-above-medium { right: 5px; } }
@media (max-width: 780px) { .right-1-below-medium { right: 5px; } }
@media (min-width: 1200px) { .right-1-above-large { right: 5px; } }
@media (max-width: 1200px) { .right-1-below-large { right: 5px; } }
.right-2 { right: 10px; }
@media (min-width: 780px) { .right-2-above-medium { right: 10px; } }
@media (max-width: 780px) { .right-2-below-medium { right: 10px; } }
@media (min-width: 1200px) { .right-2-above-large { right: 10px; } }
@media (max-width: 1200px) { .right-2-below-large { right: 10px; } }
.right-3 { right: 15px; }
@media (min-width: 780px) { .right-3-above-medium { right: 15px; } }
@media (max-width: 780px) { .right-3-below-medium { right: 15px; } }
@media (min-width: 1200px) { .right-3-above-large { right: 15px; } }
@media (max-width: 1200px) { .right-3-below-large { right: 15px; } }
.right-4 { right: 20px; }
@media (min-width: 780px) { .right-4-above-medium { right: 20px; } }
@media (max-width: 780px) { .right-4-below-medium { right: 20px; } }
@media (min-width: 1200px) { .right-4-above-large { right: 20px; } }
@media (max-width: 1200px) { .right-4-below-large { right: 20px; } }
.right-5 { right: 25px; }
@media (min-width: 780px) { .right-5-above-medium { right: 25px; } }
@media (max-width: 780px) { .right-5-below-medium { right: 25px; } }
@media (min-width: 1200px) { .right-5-above-large { right: 25px; } }
@media (max-width: 1200px) { .right-5-below-large { right: 25px; } }
.right-6 { right: 30px; }
@media (min-width: 780px) { .right-6-above-medium { right: 30px; } }
@media (max-width: 780px) { .right-6-below-medium { right: 30px; } }
@media (min-width: 1200px) { .right-6-above-large { right: 30px; } }
@media (max-width: 1200px) { .right-6-below-large { right: 30px; } }
.right-7 { right: 35px; }
@media (min-width: 780px) { .right-7-above-medium { right: 35px; } }
@media (max-width: 780px) { .right-7-below-medium { right: 35px; } }
@media (min-width: 1200px) { .right-7-above-large { right: 35px; } }
@media (max-width: 1200px) { .right-7-below-large { right: 35px; } }
.right-8 { right: 40px; }
@media (min-width: 780px) { .right-8-above-medium { right: 40px; } }
@media (max-width: 780px) { .right-8-below-medium { right: 40px; } }
@media (min-width: 1200px) { .right-8-above-large { right: 40px; } }
@media (max-width: 1200px) { .right-8-below-large { right: 40px; } }
.right-9 { right: 45px; }
@media (min-width: 780px) { .right-9-above-medium { right: 45px; } }
@media (max-width: 780px) { .right-9-below-medium { right: 45px; } }
@media (min-width: 1200px) { .right-9-above-large { right: 45px; } }
@media (max-width: 1200px) { .right-9-below-large { right: 45px; } }
.right-10 { right: 50px; }
@media (min-width: 780px) { .right-10-above-medium { right: 50px; } }
@media (max-width: 780px) { .right-10-below-medium { right: 50px; } }
@media (min-width: 1200px) { .right-10-above-large { right: 50px; } }
@media (max-width: 1200px) { .right-10-below-large { right: 50px; } }
.right-11 { right: 55px; }
@media (min-width: 780px) { .right-11-above-medium { right: 55px; } }
@media (max-width: 780px) { .right-11-below-medium { right: 55px; } }
@media (min-width: 1200px) { .right-11-above-large { right: 55px; } }
@media (max-width: 1200px) { .right-11-below-large { right: 55px; } }
.right-12 { right: 60px; }
@media (min-width: 780px) { .right-12-above-medium { right: 60px; } }
@media (max-width: 780px) { .right-12-below-medium { right: 60px; } }
@media (min-width: 1200px) { .right-12-above-large { right: 60px; } }
@media (max-width: 1200px) { .right-12-below-large { right: 60px; } }
.right-13 { right: 65px; }
@media (min-width: 780px) { .right-13-above-medium { right: 65px; } }
@media (max-width: 780px) { .right-13-below-medium { right: 65px; } }
@media (min-width: 1200px) { .right-13-above-large { right: 65px; } }
@media (max-width: 1200px) { .right-13-below-large { right: 65px; } }
.right-14 { right: 70px; }
@media (min-width: 780px) { .right-14-above-medium { right: 70px; } }
@media (max-width: 780px) { .right-14-below-medium { right: 70px; } }
@media (min-width: 1200px) { .right-14-above-large { right: 70px; } }
@media (max-width: 1200px) { .right-14-below-large { right: 70px; } }
.right-15 { right: 75px; }
@media (min-width: 780px) { .right-15-above-medium { right: 75px; } }
@media (max-width: 780px) { .right-15-below-medium { right: 75px; } }
@media (min-width: 1200px) { .right-15-above-large { right: 75px; } }
@media (max-width: 1200px) { .right-15-below-large { right: 75px; } }
.right-auto { right: auto !important; }
.table-border-collapse { border-collapse: collapse; border-spacing: 0; }
.table-layout-fixed { table-layout: fixed; }
.text-left { text-align: left; }
@media (min-width: 780px) { .text-left-above-medium { text-align: left; } }
@media (max-width: 780px) { .text-left-below-medium { text-align: left; } }
@media (min-width: 1200px) { .text-left-above-large { text-align: left; } }
@media (max-width: 1200px) { .text-left-below-large { text-align: left; } }
.text-center { text-align: center; }
@media (min-width: 780px) { .text-center-above-medium { text-align: center; } }
@media (max-width: 780px) { .text-center-below-medium { text-align: center; } }
@media (min-width: 1200px) { .text-center-above-large { text-align: center; } }
@media (max-width: 1200px) { .text-center-below-large { text-align: center; } }
.text-right { text-align: right; }
@media (min-width: 780px) { .text-right-above-medium { text-align: right; } }
@media (max-width: 780px) { .text-right-below-medium { text-align: right; } }
@media (min-width: 1200px) { .text-right-above-large { text-align: right; } }
@media (max-width: 1200px) { .text-right-below-large { text-align: right; } }
.text-brand { color: blue; }
.text-brand-hover:hover { color: blue; }
.text-keyline { color: #efefef; }
.text-keyline-hover:hover { color: #efefef; }
.text-greyscale-x-light { color: #e5e5e5; }
.text-greyscale-x-light-hover:hover { color: #e5e5e5; }
.text-greyscale-50 { color: #ECEFF1; }
.text-greyscale-50-hover:hover { color: #ECEFF1; }
.text-greyscale-100 { color: #CFD8DC; }
.text-greyscale-100-hover:hover { color: #CFD8DC; }
.text-greyscale-200 { color: #B0BEC5; }
.text-greyscale-200-hover:hover { color: #B0BEC5; }
.text-greyscale-300 { color: #90A4AE; }
.text-greyscale-300-hover:hover { color: #90A4AE; }
.text-greyscale-400 { color: #78909C; }
.text-greyscale-400-hover:hover { color: #78909C; }
.text-greyscale-500 { color: #607D8B; }
.text-greyscale-500-hover:hover { color: #607D8B; }
.text-greyscale-600 { color: #546E7A; }
.text-greyscale-600-hover:hover { color: #546E7A; }
.text-greyscale-700 { color: #455A64; }
.text-greyscale-700-hover:hover { color: #455A64; }
.text-greyscale-800 { color: #37474F; }
.text-greyscale-800-hover:hover { color: #37474F; }
.text-greyscale-900 { color: #263238; }
.text-greyscale-900-hover:hover { color: #263238; }
.line-through { text-decoration: text-line-through; }
.line-through-hover:hover { text-decoration: text-line-through; }
.no-line-through { text-decoration: none !important; }
.underline { text-decoration: text-underline; }
.underline-hover:hover { text-decoration: text-underline; }
.no-underline { text-decoration: none !important; }
.text-11 { font-size: 11px; }
@media (min-width: 780px) { .text-11-above-medium { font-size: 11px; } }
@media (max-width: 780px) { .text-11-below-medium { font-size: 11px; } }
@media (min-width: 1200px) { .text-11-above-large { font-size: 11px; } }
@media (max-width: 1200px) { .text-11-below-large { font-size: 11px; } }
.text-13 { font-size: 13px; }
@media (min-width: 780px) { .text-13-above-medium { font-size: 13px; } }
@media (max-width: 780px) { .text-13-below-medium { font-size: 13px; } }
@media (min-width: 1200px) { .text-13-above-large { font-size: 13px; } }
@media (max-width: 1200px) { .text-13-below-large { font-size: 13px; } }
.text-15 { font-size: 15px; }
@media (min-width: 780px) { .text-15-above-medium { font-size: 15px; } }
@media (max-width: 780px) { .text-15-below-medium { font-size: 15px; } }
@media (min-width: 1200px) { .text-15-above-large { font-size: 15px; } }
@media (max-width: 1200px) { .text-15-below-large { font-size: 15px; } }
.text-20 { font-size: 20px; }
@media (min-width: 780px) { .text-20-above-medium { font-size: 20px; } }
@media (max-width: 780px) { .text-20-below-medium { font-size: 20px; } }
@media (min-width: 1200px) { .text-20-above-large { font-size: 20px; } }
@media (max-width: 1200px) { .text-20-below-large { font-size: 20px; } }
.text-28 { font-size: 28px; }
@media (min-width: 780px) { .text-28-above-medium { font-size: 28px; } }
@media (max-width: 780px) { .text-28-below-medium { font-size: 28px; } }
@media (min-width: 1200px) { .text-28-above-large { font-size: 28px; } }
@media (max-width: 1200px) { .text-28-below-large { font-size: 28px; } }
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }
.text-atlas-grotesk { font-family: atlas grotesk, Helvetica, Arial, sans-serif; }
.text-atlas-grotesk-semi { font-weight: 700; }
.text-atlas-grotesk-bold { font-weight: 900; }
.top-0 { top: 0px; }
@media (min-width: 780px) { .top-0-above-medium { top: 0px; } }
@media (max-width: 780px) { .top-0-below-medium { top: 0px; } }
@media (min-width: 1200px) { .top-0-above-large { top: 0px; } }
@media (max-width: 1200px) { .top-0-below-large { top: 0px; } }
.top-1 { top: 5px; }
@media (min-width: 780px) { .top-1-above-medium { top: 5px; } }
@media (max-width: 780px) { .top-1-below-medium { top: 5px; } }
@media (min-width: 1200px) { .top-1-above-large { top: 5px; } }
@media (max-width: 1200px) { .top-1-below-large { top: 5px; } }
.top-2 { top: 10px; }
@media (min-width: 780px) { .top-2-above-medium { top: 10px; } }
@media (max-width: 780px) { .top-2-below-medium { top: 10px; } }
@media (min-width: 1200px) { .top-2-above-large { top: 10px; } }
@media (max-width: 1200px) { .top-2-below-large { top: 10px; } }
.top-3 { top: 15px; }
@media (min-width: 780px) { .top-3-above-medium { top: 15px; } }
@media (max-width: 780px) { .top-3-below-medium { top: 15px; } }
@media (min-width: 1200px) { .top-3-above-large { top: 15px; } }
@media (max-width: 1200px) { .top-3-below-large { top: 15px; } }
.top-4 { top: 20px; }
@media (min-width: 780px) { .top-4-above-medium { top: 20px; } }
@media (max-width: 780px) { .top-4-below-medium { top: 20px; } }
@media (min-width: 1200px) { .top-4-above-large { top: 20px; } }
@media (max-width: 1200px) { .top-4-below-large { top: 20px; } }
.top-5 { top: 25px; }
@media (min-width: 780px) { .top-5-above-medium { top: 25px; } }
@media (max-width: 780px) { .top-5-below-medium { top: 25px; } }
@media (min-width: 1200px) { .top-5-above-large { top: 25px; } }
@media (max-width: 1200px) { .top-5-below-large { top: 25px; } }
.top-6 { top: 30px; }
@media (min-width: 780px) { .top-6-above-medium { top: 30px; } }
@media (max-width: 780px) { .top-6-below-medium { top: 30px; } }
@media (min-width: 1200px) { .top-6-above-large { top: 30px; } }
@media (max-width: 1200px) { .top-6-below-large { top: 30px; } }
.top-7 { top: 35px; }
@media (min-width: 780px) { .top-7-above-medium { top: 35px; } }
@media (max-width: 780px) { .top-7-below-medium { top: 35px; } }
@media (min-width: 1200px) { .top-7-above-large { top: 35px; } }
@media (max-width: 1200px) { .top-7-below-large { top: 35px; } }
.top-8 { top: 40px; }
@media (min-width: 780px) { .top-8-above-medium { top: 40px; } }
@media (max-width: 780px) { .top-8-below-medium { top: 40px; } }
@media (min-width: 1200px) { .top-8-above-large { top: 40px; } }
@media (max-width: 1200px) { .top-8-below-large { top: 40px; } }
.top-9 { top: 45px; }
@media (min-width: 780px) { .top-9-above-medium { top: 45px; } }
@media (max-width: 780px) { .top-9-below-medium { top: 45px; } }
@media (min-width: 1200px) { .top-9-above-large { top: 45px; } }
@media (max-width: 1200px) { .top-9-below-large { top: 45px; } }
.top-10 { top: 50px; }
@media (min-width: 780px) { .top-10-above-medium { top: 50px; } }
@media (max-width: 780px) { .top-10-below-medium { top: 50px; } }
@media (min-width: 1200px) { .top-10-above-large { top: 50px; } }
@media (max-width: 1200px) { .top-10-below-large { top: 50px; } }
.top-11 { top: 55px; }
@media (min-width: 780px) { .top-11-above-medium { top: 55px; } }
@media (max-width: 780px) { .top-11-below-medium { top: 55px; } }
@media (min-width: 1200px) { .top-11-above-large { top: 55px; } }
@media (max-width: 1200px) { .top-11-below-large { top: 55px; } }
.top-12 { top: 60px; }
@media (min-width: 780px) { .top-12-above-medium { top: 60px; } }
@media (max-width: 780px) { .top-12-below-medium { top: 60px; } }
@media (min-width: 1200px) { .top-12-above-large { top: 60px; } }
@media (max-width: 1200px) { .top-12-below-large { top: 60px; } }
.top-13 { top: 65px; }
@media (min-width: 780px) { .top-13-above-medium { top: 65px; } }
@media (max-width: 780px) { .top-13-below-medium { top: 65px; } }
@media (min-width: 1200px) { .top-13-above-large { top: 65px; } }
@media (max-width: 1200px) { .top-13-below-large { top: 65px; } }
.top-14 { top: 70px; }
@media (min-width: 780px) { .top-14-above-medium { top: 70px; } }
@media (max-width: 780px) { .top-14-below-medium { top: 70px; } }
@media (min-width: 1200px) { .top-14-above-large { top: 70px; } }
@media (max-width: 1200px) { .top-14-below-large { top: 70px; } }
.top-15 { top: 75px; }
@media (min-width: 780px) { .top-15-above-medium { top: 75px; } }
@media (max-width: 780px) { .top-15-below-medium { top: 75px; } }
@media (min-width: 1200px) { .top-15-above-large { top: 75px; } }
@media (max-width: 1200px) { .top-15-below-large { top: 75px; } }
.top-auto { top: auto !important; }
.transition-0-25 { transition: 0.25s; }
.transition-0-5 { transition: 0.5s; }
.transition-1 { transition: 1s; }
.transition-1-5 { transition: 1.5s; }
.vertical-align-top { vertical-align: top; }
@media (min-width: 780px) { .vertical-align-top-above-medium { vertical-align: top; } }
@media (max-width: 780px) { .vertical-align-top-below-medium { vertical-align: top; } }
@media (min-width: 1200px) { .vertical-align-top-above-large { vertical-align: top; } }
@media (max-width: 1200px) { .vertical-align-top-below-large { vertical-align: top; } }
.vertical-align-middle { vertical-align: middle; }
@media (min-width: 780px) { .vertical-align-middle-above-medium { vertical-align: middle; } }
@media (max-width: 780px) { .vertical-align-middle-below-medium { vertical-align: middle; } }
@media (min-width: 1200px) { .vertical-align-middle-above-large { vertical-align: middle; } }
@media (max-width: 1200px) { .vertical-align-middle-below-large { vertical-align: middle; } }
.vertical-align-bottom { vertical-align: bottom; }
@media (min-width: 780px) { .vertical-align-bottom-above-medium { vertical-align: bottom; } }
@media (max-width: 780px) { .vertical-align-bottom-below-medium { vertical-align: bottom; } }
@media (min-width: 1200px) { .vertical-align-bottom-above-large { vertical-align: bottom; } }
@media (max-width: 1200px) { .vertical-align-bottom-below-large { vertical-align: bottom; } }
.visibility { visibility: visible; }
@media (min-width: 780px) { .visibility-above-medium { visibility: visible; } }
@media (max-width: 780px) { .visibility-below-medium { visibility: visible; } }
@media (min-width: 1200px) { .visibility-above-large { visibility: visible; } }
@media (max-width: 1200px) { .visibility-below-large { visibility: visible; } }
.hidden { visibility: hidden !important; }
@media (min-width: 780px) { .hidden-above-medium { visibility: hidden !important; } }
@media (max-width: 780px) { .hidden-below-medium { visibility: hidden !important; } }
@media (min-width: 1200px) { .hidden-above-large { visibility: hidden !important; } }
@media (max-width: 1200px) { .hidden-below-large { visibility: hidden !important; } }
.hide { display: none !important; }
@media (min-width: 780px) { .hide-above-medium { display: none !important; } }
@media (max-width: 780px) { .hide-below-medium { display: none !important; } }
@media (min-width: 1200px) { .hide-above-large { display: none !important; } }
@media (max-width: 1200px) { .hide-below-large { display: none !important; } }
.is-visible { display: block !important; }
.is-hidden { display: none !important; }
.hide { display: none !important; }
.width-full { width: 100%; }
.width-100 { width: 100px; }
.width-200 { width: 200px; }
.width-300 { width: 300px; }
.width-400 { width: 400px; }
.width-500 { width: 500px; }
.width-600 { width: 600px; }
.width-700 { width: 700px; }
.width-800 { width: 800px; }
.width-900 { width: 900px; }
.width-1000 { width: 1000px; }
.z-index-0 { z-index: 0; }
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }
.z-index-4 { z-index: 4; }
.z-index-5 { z-index: 5; }
.z-index-6 { z-index: 6; }
.z-index-7 { z-index: 7; }
.z-index-8 { z-index: 8; }
.z-index-9 { z-index: 9; }
.z-index-10 { z-index: 10; }
.z-index-99 { z-index: 99; }
.z-index-999 { z-index: 999; }
.z-index-9999 { z-index: 9999; }
.button { background-color: blue; border: 0; display: inline-block; color: white; padding: 0 30px; height: 45px; line-height: 45px; border-radius: 100px; }
.button { border: 1px solid #d6d6ff; color: blue; bottom: 20px; left: 30px; background: white; padding: 0 40px; font-weight: 400 !important; }
table { width: 100%; border: 1px solid #e8e8e8; border-spacing: 0; border-radius: 3px; }
table td { padding: 25px; font-size: 14px; }
table thead th { text-align: left; padding: 15px 25px; font-weight: 400; font-size: 14px; border-bottom: 1px solid #e8e8e8; }
table td { vertical-align: top; }
table td, table th { border-right: 1px solid #e5e5e5; }
table p { font-size: 14px !important; }
.settings-table { width: 100%; }
.settings-table tr td:first-child { width: 400px; }
.settings-intro { border: 0 !important; }
.article, section { padding: 100px 0; }
.article:not(:last-of-type), section:not(:last-of-type) { border-bottom: 1px solid #efefef; }
.article h1, section h1 { font-size: 42px; }
.article h1, section h1 { margin-bottom: 50px; }
.article > h1, .article h2, .article table, section > h1, section h2, section table { max-width: 650px; margin: 0 auto; }
.article > h1, .article h2, section > h1, section h2 { font-weight: 400 !important; }
.article > h1:after, .article h2:after, section > h1:after, section h2:after { content: ""; background: blue; width: 30px; left: 0; height: 5px; display: block; margin: 25px 0; }
.article .page-title, section .page-title { font-size: 60px; }
.article .page-title:after, section .page-title:after { display: none; }
.article > h1, .article h2, .article h3, .article h4, .article h5, .article h6, section > h1, section h2, section h3, section h4, section h5, section h6 { font-weight: 100; }
.article h2, section h2 { font-size: 28px; }
.article h3, section h3 { font-size: 24px; }
.article .link, section .link { text-decoration: none !important; position: relative; }
.article .link:after, section .link:after { content: ""; position: absolute; top: 100%; width: 100%; left: 0; height: 2px; background: #efefef; }
.article .link:hover:after, section .link:hover:after { background: #bcbcbc; }
.article .bullet-list, section .bullet-list { list-style-type: none; margin: 0; padding: 0; }
.article .bullet-list > li, section .bullet-list > li { line-height: inherit; }
.article .bullet-list > li, section .bullet-list > li { position: relative; padding-left: 20px; }
.article .bullet-list > li:after, section .bullet-list > li:after { width: 6px; height: 6px; border-radius: 6px; background: blue; position: absolute; top: 14px; left: 0; content: ""; display: block; }
.article h3, section h3 { max-width: 650px; margin: 0 auto; }
.article p, .article .bullet-list, section p, section .bullet-list { font-weight: 300; font-size: 16px; margin: 0 auto 30px; max-width: 650px; line-height: 2; }
@media (min-width: 1200px) { .article p, .article .bullet-list, section p, section .bullet-list { font-size: 18px; } }
.article p > a, .article li > a, section p > a, section li > a { text-decoration: underline; }
.article ul > li, section ul > li { line-height: 1.5; }
.article ul > li:last-child, section ul > li:last-child { margin-bottom: 0; }
.article h2, section h2 { margin-bottom: 25px; }
.article h3, section h3 { margin-top: 100px; margin-bottom: 25px; }
.article p:last-child, .article ul li:last-child, section p:last-child, section ul li:last-child { margin-bottom: 0; }
.docs-container { overflow: hidden; height: 100%; background: #f5f5f5; }
.docs-container .docs-content { width: calc(100% - 300px); float: left; height: 100%; }
.docs-container .docs-content .inner { overflow-y: scroll; background: white; height: calc(100% - 100px); max-width: 1000px; }
.intro-section { border-bottom: 0 !important; padding-bottom: 0; }
.intro-section h1 { font-size: 80px; font-weight: 100 !important; margin-bottom: 0 !important; }
.intro-section h1:after { display: none; }
.inline-code { font-family: "Roboto Mono"; border: 1px solid #efefef; padding: 3px 5px 4px 5px; color: #263238; font-size: 13px; border-radius: 2px; line-height: 1; display: inline-block; position: relative; top: -1px; }
code { font-family: "Roboto Mono"; }
pre { font-family: "Roboto Mono"; border: 1px solid #e8e8e8; padding: 25px; font-size: 13px; border-radius: 3px; margin: 0; line-height: 1.5; max-width: 650px; margin: 0 auto; -moz-tab-size: 3; tab-size: 3; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; }
pre:not(:last-of-type) { margin-bottom: 40px; }
.hljs { display: block; overflow-x: auto; background: #FFFFFF; }
.hljs-keyword { color: #607D8B; }
.hljs-comment { color: #90A4AE; }
.hljs-variable, .hljs-number, .hljs-selector-class, .hljs-attribute { color: #455A64; }
.docs-navigation { width: 300px; float: left; height: 100%; background: white; border-right: 1px solid #efefef; position: relative; z-index: 999; }
.docs-navigation > a { display: block; padding: 40px; color: #546E7A; }
.docs-navigation .parent { padding: 30px 40px; display: block; }
.docs-navigation .parent:hover { color: blue; }
.docs-navigation .inner { height: calc(100% - 100px); overflow-y: scroll; }
.docs-navigation .navigation-footer { border-top: 1px solid #efefef; display: table; width: 100%; text-align: center; height: 100px; }
.sub-navigation { list-style-type: none; margin: 0; padding: 0; background: #ECEFF1; display: none; }
.sub-navigation > li { line-height: inherit; }
.sub-navigation a { display: block; padding: 25px 40px; font-size: 14px; color: #607D8B; }
.sub-navigation a:hover { color: black; }
.nav-logo { padding: 60px; text-align: center; }
.nav-logo img { max-width: 160px; display: inline-block; }
.tabbed-code { border: 1px solid #efefef; }
.tabbed-code .tabbed-code-navigation { list-style-type: none; margin: 0; padding: 0; zoom: 1; border-bottom: 1px solid #efefef; }
.tabbed-code .tabbed-code-navigation > li { line-height: inherit; }
.tabbed-code .tabbed-code-navigation:before, .tabbed-code .tabbed-code-navigation:after { content: ""; display: table; }
.tabbed-code .tabbed-code-navigation:after { clear: both; }
.tabbed-code .tabbed-code-navigation > li { float: left; padding: 15px 25px; font-size: 13px; border-right: 1px solid #efefef; cursor: pointer; }
.tabbed-code .tabbed-code-navigation > li.is-active { color: blue; }
.tabbed-code pre { border: 0; }
.tabbed-code .tabbed-code-tab { display: none; overflow: scroll; max-height: 400px; }
.tabbed-code .tabbed-code-tab.is-open { display: block; }
.label { text-transform: uppercase; letter-spacing: 0.1em; border-radius: 40px; padding: 5px 8px 2px 8px; font-size: 10px; color: green; border: 1px solid green; }
.label.label-red { border: 1px solid red; color: red; }
html { color: #263238; }
body { overflow: hidden; height: 100%; font-family: atlas grotesk, Helvetica, Arial, sans-serif; }
.next { background: white; border-top: 1px solid #efefef; box-shadow: -10px -20px 5px rgba(0, 0, 0, 0.2); padding: 30px; font-size: 18px; bottom: 0; text-align: right; max-width: 1000px; }
.next:hover { background-color: #3333ff; cursor: pointer; }
.next .next-arrow { width: 120px; height: 120px; position: absolute; background-color: #0000cc; right: 0; top: 0; }
::-moz-selection { background: #e6e6ff; }
::selection { background: #e6e6ff; } | 0.548432 | 0.046508 |
.page-locked1:before {
background-image: url(../images/lockscreen.jpg);
}
.loginbox h1{
color: #89bceb;
margin-bottom: 15px;
font-size: 36px;
font-weight: bold;
}
@media (max-width:1920px) {
.loginbox h1 {margin-top: 200px;}
}
@media (max-width:1680px) {
.loginbox h1 {margin-top: 170px;}
}
@media (max-width:1680px) {
.loginbox h1 {margin-top: 170px;}
}
@media (max-width:1366px) {
.loginbox h1 {margin-top: 100px;}
}
.loginbox p.kouhao{
font-size: 20px;
margin-bottom: 40px;
}
.loginbox p.forget,.register,.kouhao{
color: #c5c5c5;
}
.loginbox button{
height: 45px;
font-size: 16px;
}
.loginbox a{
text-decoration: none;
}
.inputbox{
/*background: #FFF;*/
margin-bottom: 10px;
}
.inputbox .inputbox1{
position: relative;
margin-bottom:10px;
}
.inputbox .inputbox1 p.false{
position:absolute;
color: #f96868;
right: 6px;
font-size: 12px;
top: 0;
line-height: 45px;
}
.inputbox input{
border: none;
height: 45px;
line-height: 45px;
}
.inputbox input:first-child{
border-bottom: 1px solid #e4eaec;
}
/*顶部logo*/
.site-menubar-unfold .site-navbar .navbar-header{
width: 80px;
background: #273238;
}
.navbar-brand{
padding-left: 10px;
padding-right: 10px;
}
.site-menubar-unfold .site-navbar .navbar-container{
margin-left: 80px;
}
.navbar-brand{
width: 80px;
padding: 0;
text-align: center;
}
.navbar-brand span.logo{
display: inline-block;
width: 100%;
line-height: 60px;
font-size: 20px;
text-align: center;
color: #8d9dac;
}
/*名称*/
.navbar-inverse .navbar-toolbar > li.platname > a{
font-size: 18px;
background: none;
}
/*左侧菜单样式修改*/
.site-menubar-unfold .site-menubar{
width: 80px;
}
.site-menubar-unfold .site-page, .site-menubar-unfold .site-footer {
margin-left: 80px;
}
@media (max-width: 767px){
.site-menubar-hide .site-menubar{
width: 80px;
}
.site-menubar-hide .site-page, .site-menubar-hide .site-footer {
margin-left: 0;
}
.site-menubar-open .site-menubar{
width: 80px;
}
.site-menubar-open .site-page, .site-menubar-open .site-footer {
margin-left: -140px;
}
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .active{
background: #191c1d;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item:hover{
background: #191c1d;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item{
border-bottom: 1px solid #5a5a5e;
text-align: center;
padding: 10px 0 0 0;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu > .site-menu-item > a{
line-height: 20px;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item i{
font-size: 24px;
margin-right: 0;
padding-top: 10px;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item p{
/*margin-left: -5px;*/
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item p span{
margin-left: 0;
font-size: 12px;
}
/*场地列表中文字上下居中效果*/
.cdtable > tbody > tr > td {
vertical-align: middle;
}
/*跟进信息表格*/
.followtable > tbody > tr > td {
width: 18%;
}
.followtable > tbody > tr > td:last-child{
width: 28%;
}
.followtable > tbody > tr > td:last-child span{
cursor: pointer;
display: inline-block;
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
display: -webkit-box;
}
/*添加房间表格中文本框宽度*/
.addroomtable > tbody > tr > td {
width: 9%;
}
.addroomtable > tbody > tr > td:nth-child(7) {
width: 23%;
}
.addroomtable > tbody > tr > td:last-child{
width: 5%;
}
.leadrecordtable > tbody > tr > td {
width: 25%;
}
.leadrecordtable > tbody > tr > td:nth-child(2) {
width: 50%;
text-align: left;
}
/*添加空间多选下拉右上标签*/
.addkj .badge {
position: absolute;
right: 10px;
z-index: 100;
}
/*添加空间案例表格*/
.casetable > tbody > tr > td {
vertical-align: middle;
}
.casetable > tbody > tr > td:nth-child(1) {
width: 15%;
}
.casetable > tbody > tr > td:nth-child(2) {
width: 30%;
}
.casetable > tbody > tr > td:nth-child(3) {
width: 15%;
}
.casetable > tbody > tr > td:nth-child(4) {
width: 30%;
text-align: left;
}
.casetable > tbody > tr > td:nth-child(5) {
width: 10%;
}
/*添加空间新增案例弹出层*/
.modal-body{
background: #FFF;
}
.modal-footer{
background: #FFF;
}
/*房间分配左右布局*/
.roomleft{
width: 74%;
line-height: 24px;
}
.roomleft .colorgreen{
color: #46be8a;
}
.roomleft .colorred{
color: #f96868;
}
.roomleft .coloryellow{
color: #f2a654;
}
.roomleft .colorblue{
color: #62a8ea;
}
.roomleft .colorbrown{
color: #8d6658;
}
.roomleft .bg-grey-600{
background: #76838f;
background-color: #76838f !important;
}
.roomleft .color-box{
height: 20px;
}
.roomleft .showBuildPic{cursor:pointer;}
.roomright{
width: 24%;
}
/*鼠标移入显示房间信息*/
.roomleft .color-box{width:20px;}
.icon-box1{
width:180px;
overflow:hidden;
font-size:12px;
background:#f3f7f9;
position:absolute;
top:0;
left:50px;
z-index:10;
color:#666666;
padding:10px 5px;
display:none;
}
.icon-box1 p{line-height:18px;margin-bottom:15px;}
.icon-box1 .col-sm-12{padding:0;margin:0;}
.icon-box1 .col-sm-5{padding-left:0;padding-right:10px;margin:0;}
.icon-box1 .col-sm-7{padding-left:0;padding-right:10px;margin:0;}
/*分块展示下描边*/
h4.btborder{
border-bottom: 1px solid #e4eaec;
}
/*表单优化*/
.form-horizontal {
color: #333;
}
.form-horizontal .form-group > label.control-label{
color: #666;
}
.form-horizontal .form-group input,textarea,select{
color: #333;
}
.form-horizontal .form-group select.form-control{
color: #333;
}
.form-horizontal .form-group textarea.form-control{
color: #333;
}
.form-group > label.control-label{
color: #666;
}
.form-group input,textarea,select{
color: #333;
}
.form-group select.form-control{
color: #333;
}
.form-group textarea.form-control{
color: #333;
}
/*图片上传及截图(空间信息页)*/
.pic{
width:140px;
height:80px;
color:#e0e0e0;
border:1px solid #e0e0e0;
cursor: pointer;
margin-bottom:25px;
padding-left:0;
padding-right:0;
}
.pic>.fly>.add{
font-size:30px;
padding:0;
margin-top:5px;
}
.pic>.fly>.name{
margin-top:-5px;
}
.pic>.fly>p{
text-align: center;
margin:0 auto;
padding:0;
}
.mo-body{
margin-top:10px;
}
.fam{
border:1px dashed #e0e0e0;
padding-left:0;
}
.fam>label{
width:80px;
text-align: center;
}
.addpicker{
margin-top:10px;
}
.roomRank{
display:none;
}
/*上传文件进度条*/
.file-input{
position: relative;
}
.file-input .kv-upload-progress{
width:100%;z-index:1000;position:absolute;top:34px;left:0;
} | public/adminui/public/themes/theme.css | .page-locked1:before {
background-image: url(../images/lockscreen.jpg);
}
.loginbox h1{
color: #89bceb;
margin-bottom: 15px;
font-size: 36px;
font-weight: bold;
}
@media (max-width:1920px) {
.loginbox h1 {margin-top: 200px;}
}
@media (max-width:1680px) {
.loginbox h1 {margin-top: 170px;}
}
@media (max-width:1680px) {
.loginbox h1 {margin-top: 170px;}
}
@media (max-width:1366px) {
.loginbox h1 {margin-top: 100px;}
}
.loginbox p.kouhao{
font-size: 20px;
margin-bottom: 40px;
}
.loginbox p.forget,.register,.kouhao{
color: #c5c5c5;
}
.loginbox button{
height: 45px;
font-size: 16px;
}
.loginbox a{
text-decoration: none;
}
.inputbox{
/*background: #FFF;*/
margin-bottom: 10px;
}
.inputbox .inputbox1{
position: relative;
margin-bottom:10px;
}
.inputbox .inputbox1 p.false{
position:absolute;
color: #f96868;
right: 6px;
font-size: 12px;
top: 0;
line-height: 45px;
}
.inputbox input{
border: none;
height: 45px;
line-height: 45px;
}
.inputbox input:first-child{
border-bottom: 1px solid #e4eaec;
}
/*顶部logo*/
.site-menubar-unfold .site-navbar .navbar-header{
width: 80px;
background: #273238;
}
.navbar-brand{
padding-left: 10px;
padding-right: 10px;
}
.site-menubar-unfold .site-navbar .navbar-container{
margin-left: 80px;
}
.navbar-brand{
width: 80px;
padding: 0;
text-align: center;
}
.navbar-brand span.logo{
display: inline-block;
width: 100%;
line-height: 60px;
font-size: 20px;
text-align: center;
color: #8d9dac;
}
/*名称*/
.navbar-inverse .navbar-toolbar > li.platname > a{
font-size: 18px;
background: none;
}
/*左侧菜单样式修改*/
.site-menubar-unfold .site-menubar{
width: 80px;
}
.site-menubar-unfold .site-page, .site-menubar-unfold .site-footer {
margin-left: 80px;
}
@media (max-width: 767px){
.site-menubar-hide .site-menubar{
width: 80px;
}
.site-menubar-hide .site-page, .site-menubar-hide .site-footer {
margin-left: 0;
}
.site-menubar-open .site-menubar{
width: 80px;
}
.site-menubar-open .site-page, .site-menubar-open .site-footer {
margin-left: -140px;
}
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .active{
background: #191c1d;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item:hover{
background: #191c1d;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item{
border-bottom: 1px solid #5a5a5e;
text-align: center;
padding: 10px 0 0 0;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu > .site-menu-item > a{
line-height: 20px;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item i{
font-size: 24px;
margin-right: 0;
padding-top: 10px;
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item p{
/*margin-left: -5px;*/
}
.site-menubar-unfold .site-menubar .site-menubar-body .site-menu .site-menu-item p span{
margin-left: 0;
font-size: 12px;
}
/*场地列表中文字上下居中效果*/
.cdtable > tbody > tr > td {
vertical-align: middle;
}
/*跟进信息表格*/
.followtable > tbody > tr > td {
width: 18%;
}
.followtable > tbody > tr > td:last-child{
width: 28%;
}
.followtable > tbody > tr > td:last-child span{
cursor: pointer;
display: inline-block;
width: 100%;
height: 35px;
line-height: 35px;
overflow: hidden;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
display: -webkit-box;
}
/*添加房间表格中文本框宽度*/
.addroomtable > tbody > tr > td {
width: 9%;
}
.addroomtable > tbody > tr > td:nth-child(7) {
width: 23%;
}
.addroomtable > tbody > tr > td:last-child{
width: 5%;
}
.leadrecordtable > tbody > tr > td {
width: 25%;
}
.leadrecordtable > tbody > tr > td:nth-child(2) {
width: 50%;
text-align: left;
}
/*添加空间多选下拉右上标签*/
.addkj .badge {
position: absolute;
right: 10px;
z-index: 100;
}
/*添加空间案例表格*/
.casetable > tbody > tr > td {
vertical-align: middle;
}
.casetable > tbody > tr > td:nth-child(1) {
width: 15%;
}
.casetable > tbody > tr > td:nth-child(2) {
width: 30%;
}
.casetable > tbody > tr > td:nth-child(3) {
width: 15%;
}
.casetable > tbody > tr > td:nth-child(4) {
width: 30%;
text-align: left;
}
.casetable > tbody > tr > td:nth-child(5) {
width: 10%;
}
/*添加空间新增案例弹出层*/
.modal-body{
background: #FFF;
}
.modal-footer{
background: #FFF;
}
/*房间分配左右布局*/
.roomleft{
width: 74%;
line-height: 24px;
}
.roomleft .colorgreen{
color: #46be8a;
}
.roomleft .colorred{
color: #f96868;
}
.roomleft .coloryellow{
color: #f2a654;
}
.roomleft .colorblue{
color: #62a8ea;
}
.roomleft .colorbrown{
color: #8d6658;
}
.roomleft .bg-grey-600{
background: #76838f;
background-color: #76838f !important;
}
.roomleft .color-box{
height: 20px;
}
.roomleft .showBuildPic{cursor:pointer;}
.roomright{
width: 24%;
}
/*鼠标移入显示房间信息*/
.roomleft .color-box{width:20px;}
.icon-box1{
width:180px;
overflow:hidden;
font-size:12px;
background:#f3f7f9;
position:absolute;
top:0;
left:50px;
z-index:10;
color:#666666;
padding:10px 5px;
display:none;
}
.icon-box1 p{line-height:18px;margin-bottom:15px;}
.icon-box1 .col-sm-12{padding:0;margin:0;}
.icon-box1 .col-sm-5{padding-left:0;padding-right:10px;margin:0;}
.icon-box1 .col-sm-7{padding-left:0;padding-right:10px;margin:0;}
/*分块展示下描边*/
h4.btborder{
border-bottom: 1px solid #e4eaec;
}
/*表单优化*/
.form-horizontal {
color: #333;
}
.form-horizontal .form-group > label.control-label{
color: #666;
}
.form-horizontal .form-group input,textarea,select{
color: #333;
}
.form-horizontal .form-group select.form-control{
color: #333;
}
.form-horizontal .form-group textarea.form-control{
color: #333;
}
.form-group > label.control-label{
color: #666;
}
.form-group input,textarea,select{
color: #333;
}
.form-group select.form-control{
color: #333;
}
.form-group textarea.form-control{
color: #333;
}
/*图片上传及截图(空间信息页)*/
.pic{
width:140px;
height:80px;
color:#e0e0e0;
border:1px solid #e0e0e0;
cursor: pointer;
margin-bottom:25px;
padding-left:0;
padding-right:0;
}
.pic>.fly>.add{
font-size:30px;
padding:0;
margin-top:5px;
}
.pic>.fly>.name{
margin-top:-5px;
}
.pic>.fly>p{
text-align: center;
margin:0 auto;
padding:0;
}
.mo-body{
margin-top:10px;
}
.fam{
border:1px dashed #e0e0e0;
padding-left:0;
}
.fam>label{
width:80px;
text-align: center;
}
.addpicker{
margin-top:10px;
}
.roomRank{
display:none;
}
/*上传文件进度条*/
.file-input{
position: relative;
}
.file-input .kv-upload-progress{
width:100%;z-index:1000;position:absolute;top:34px;left:0;
} | 0.130784 | 0.053999 |
.choose-clu-div {
position: relative;
}
.fullmap {
margin: 0px;
padding: 0px;
height: calc(100vh - 190px);
width: 100%;
}
.add-field-box {
position: absolute;
top: 22px;
left: 46px;
height: 310px;
width: 405px;
background-color: #FFFFFF;
padding-left: 22px;
padding-right: 22px;
padding-top: 12px;
/*padding-bottom: 25px;*/
}
.add-help .add-field-title{
padding-top: 15px;
padding-left: 20px;
margin-left: -10px;
background-color: white;
height: 63px;
width: 284px;
}
.add-field-title .mdc-fab{
height:32px;
width:32px;
background-color: #1AB146;
}
.add-field-title h2 {
display: inline;
color: #1AB146;
font-size: 24px;
font-weight: bold;
line-height: 28px;
margin-left: 12px;
}
.myfield-list {
padding-top: 20px;
}
.myfield-list h2 {
height: 28px;
/*width: 86px;*/
color: #455A64;
font-size: 20px;
font-weight: bold;
/*line-height: 28px;*/
}
.select-my-field {
/*height: 53px;*/
width: 304px;
border-radius: 2px 2px 0 0;
background-color: #455A64;
}
.minimap .fullmap{
height: 266px;
width: 304px;
}
.unselect-my-field{
/*height: 53px;*/
width: 304px;
border-radius: 2px 2px 0 0;
background-color: #DEE4E8;
}
.myfield-list .mdc-card{
margin-top: 5px;
}
.myfield-list .mdc-card__supporting-text:last-child {
padding-bottom: 5px;
}
.select-my-field .mdc-card__supporting-text{
color: white;
}
.select-my-field h1{
color: white;
}
.myfield-list h1{
font-size: 18px;
}
.add-help {
height: 294px;
width: 305px;
background-color: #EBF5EE;
padding: 20px;
}
.add-help p{
color: #455A64;
font-size: 18px;
font-weight: 500;
line-height: 25px;
}
.add-field-bottom {
background-color: #DEE4E8;
/*relative position to the map*/
position: absolute;
top: 310px;
left: 46px;
height: 50px;
width: 405px;
}
.add-field-bottom .add-button{
width: 128px;
top: 8px;
right: 5px;
position: absolute;
}
.add-field-bottom .cancel-button {
width: 70px;
top: 8px;
right: 140px;
position: absolute;
}
.exist-message{
width: 330px;
float: right;
}
.myfarm-summary-header{
height: 24px;
width: 300px;
margin: 15px 0 15px 0;
}
.summary-table td{
padding: 7px 0px 0px 12px;
vertical-align: top;
}
.south-field {
color: #108632;
font-size: 20px;
font-weight: bold;
}
.download-exp{
color: black;
}
.table-header {
height: 30px;
width: auto;
background-color: #EBF5EE;
color: #455A64;
font-size: 18px;
font-weight: 500;
line-height: 28px;
margin: 10px 0 10px 0;
}
.myfarm-left{
float: left;
width: 360px;
height: calc(100vh - 190px);
padding: 40px 0px 40px 40px;
}
.myfarm-right{
float: left;
width: calc(100vw - 380px);
}
.summary-div{
padding: 10px 30px 40px 20px;
}
.myfarm-tab {
margin: 10px 0 0 24px;
width:100px;
}
.myfarm-tab .mdc-tab {
font-family: Roboto;
font-size: 18px;
line-height: 24px;
}
.myfarm-tab .mdc-tab-bar__indicator{
/*not working*/
background-color: #1AB146;
border: 6px solid #1AB146;
height: 3px;
}
/*table, th, td {*/
/*border: 1px solid black;*/
/*}*/
th {
text-align: left;
padding: 12px;
}
/*update forms*/
.myfarm-input h2{
height: 28px;
/*width: 80px;*/
color: #455A64;
font-size: 20px;
font-weight: bold;
line-height: 28px;
}
.myfarm-input p {
height: 16px;
width: 131.8px;
color: rgba(0,0,0,0.38);
font-family: Roboto;
font-size: 12px;
line-height: 16px;
/*margin-top: 10px;*/
}
.update-box {
width: 230px;
/*float:left;*/
/*display: inline-block;*/
height: 70px;
margin-right:10px;
}
.update-box-left{
float: left;
}
.update-box-div{
position: relative;
height: 90px;
}
.fertilizer-box-left{
float: left;
/*height: 500px;*/
}
.fertilizer-box-div{
position: relative;
overflow: hidden;
padding-bottom: 200px;
}
/*because fertilizer-box-div has overflow:hidden,
need this to show the option dropdown of Select */
.after-fertilizer-div{
margin-top: -200px;
}
.black-bottom-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
border-bottom: 1px solid #D8D8D8;
}
.no-bottom-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
/*border-bottom: 1px solid #D8D8D8;*/
}
.black-top-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
border-top: 1px solid #D8D8D8;
}
/*.myfarm-input .Select-control{*/
/*background-color: #CFEBD7;*/
/*!*box-shadow: 0 0 3px 0 rgba(0,0,0,0.12), 0 2px 3px 0 rgba(0,0,0,0.12);*!*/
/*color: #1AB146;*/
/*!*border: 0px;*!*/
/*}*/
/*.myfarm-input .Select-value-label{*/
/*color: #1AB146;*/
/*}*/
.myfarm-input .mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box):not(.mdc-text-field--textarea){
height:auto;
}
.delete-field{
padding-top: 20px;
} | src/styles/user-page.css | .choose-clu-div {
position: relative;
}
.fullmap {
margin: 0px;
padding: 0px;
height: calc(100vh - 190px);
width: 100%;
}
.add-field-box {
position: absolute;
top: 22px;
left: 46px;
height: 310px;
width: 405px;
background-color: #FFFFFF;
padding-left: 22px;
padding-right: 22px;
padding-top: 12px;
/*padding-bottom: 25px;*/
}
.add-help .add-field-title{
padding-top: 15px;
padding-left: 20px;
margin-left: -10px;
background-color: white;
height: 63px;
width: 284px;
}
.add-field-title .mdc-fab{
height:32px;
width:32px;
background-color: #1AB146;
}
.add-field-title h2 {
display: inline;
color: #1AB146;
font-size: 24px;
font-weight: bold;
line-height: 28px;
margin-left: 12px;
}
.myfield-list {
padding-top: 20px;
}
.myfield-list h2 {
height: 28px;
/*width: 86px;*/
color: #455A64;
font-size: 20px;
font-weight: bold;
/*line-height: 28px;*/
}
.select-my-field {
/*height: 53px;*/
width: 304px;
border-radius: 2px 2px 0 0;
background-color: #455A64;
}
.minimap .fullmap{
height: 266px;
width: 304px;
}
.unselect-my-field{
/*height: 53px;*/
width: 304px;
border-radius: 2px 2px 0 0;
background-color: #DEE4E8;
}
.myfield-list .mdc-card{
margin-top: 5px;
}
.myfield-list .mdc-card__supporting-text:last-child {
padding-bottom: 5px;
}
.select-my-field .mdc-card__supporting-text{
color: white;
}
.select-my-field h1{
color: white;
}
.myfield-list h1{
font-size: 18px;
}
.add-help {
height: 294px;
width: 305px;
background-color: #EBF5EE;
padding: 20px;
}
.add-help p{
color: #455A64;
font-size: 18px;
font-weight: 500;
line-height: 25px;
}
.add-field-bottom {
background-color: #DEE4E8;
/*relative position to the map*/
position: absolute;
top: 310px;
left: 46px;
height: 50px;
width: 405px;
}
.add-field-bottom .add-button{
width: 128px;
top: 8px;
right: 5px;
position: absolute;
}
.add-field-bottom .cancel-button {
width: 70px;
top: 8px;
right: 140px;
position: absolute;
}
.exist-message{
width: 330px;
float: right;
}
.myfarm-summary-header{
height: 24px;
width: 300px;
margin: 15px 0 15px 0;
}
.summary-table td{
padding: 7px 0px 0px 12px;
vertical-align: top;
}
.south-field {
color: #108632;
font-size: 20px;
font-weight: bold;
}
.download-exp{
color: black;
}
.table-header {
height: 30px;
width: auto;
background-color: #EBF5EE;
color: #455A64;
font-size: 18px;
font-weight: 500;
line-height: 28px;
margin: 10px 0 10px 0;
}
.myfarm-left{
float: left;
width: 360px;
height: calc(100vh - 190px);
padding: 40px 0px 40px 40px;
}
.myfarm-right{
float: left;
width: calc(100vw - 380px);
}
.summary-div{
padding: 10px 30px 40px 20px;
}
.myfarm-tab {
margin: 10px 0 0 24px;
width:100px;
}
.myfarm-tab .mdc-tab {
font-family: Roboto;
font-size: 18px;
line-height: 24px;
}
.myfarm-tab .mdc-tab-bar__indicator{
/*not working*/
background-color: #1AB146;
border: 6px solid #1AB146;
height: 3px;
}
/*table, th, td {*/
/*border: 1px solid black;*/
/*}*/
th {
text-align: left;
padding: 12px;
}
/*update forms*/
.myfarm-input h2{
height: 28px;
/*width: 80px;*/
color: #455A64;
font-size: 20px;
font-weight: bold;
line-height: 28px;
}
.myfarm-input p {
height: 16px;
width: 131.8px;
color: rgba(0,0,0,0.38);
font-family: Roboto;
font-size: 12px;
line-height: 16px;
/*margin-top: 10px;*/
}
.update-box {
width: 230px;
/*float:left;*/
/*display: inline-block;*/
height: 70px;
margin-right:10px;
}
.update-box-left{
float: left;
}
.update-box-div{
position: relative;
height: 90px;
}
.fertilizer-box-left{
float: left;
/*height: 500px;*/
}
.fertilizer-box-div{
position: relative;
overflow: hidden;
padding-bottom: 200px;
}
/*because fertilizer-box-div has overflow:hidden,
need this to show the option dropdown of Select */
.after-fertilizer-div{
margin-top: -200px;
}
.black-bottom-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
border-bottom: 1px solid #D8D8D8;
}
.no-bottom-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
/*border-bottom: 1px solid #D8D8D8;*/
}
.black-top-crop{
padding-left: 12px;
padding-right: 12px;
/*margin-bottom: 10px;*/
border-top: 1px solid #D8D8D8;
}
/*.myfarm-input .Select-control{*/
/*background-color: #CFEBD7;*/
/*!*box-shadow: 0 0 3px 0 rgba(0,0,0,0.12), 0 2px 3px 0 rgba(0,0,0,0.12);*!*/
/*color: #1AB146;*/
/*!*border: 0px;*!*/
/*}*/
/*.myfarm-input .Select-value-label{*/
/*color: #1AB146;*/
/*}*/
.myfarm-input .mdc-text-field--upgraded:not(.mdc-text-field--fullwidth):not(.mdc-text-field--box):not(.mdc-text-field--textarea){
height:auto;
}
.delete-field{
padding-top: 20px;
} | 0.2359 | 0.052838 |
*{
padding: 0px;
margin: 0px;
font-family: Microsoft Yahei;
box-sizing: border-box;
}
/*navbar*/
.navbar{
height: 200px;
width: 100%;
background-color: white;
position: relative;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
}
.nav-info{
height: 40px;
background-color: #4b4d52;
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
}
.nav-search{
height: 100px;
width: 100%;
/*background-color: gray;*/
display: flex;
justify-content: flex-start;
align-content: center;
position: relative;
}
.nav-info a{
text-decoration: none;
/*color: white;*/
color: #d6d2d2 !important;
font-size: 14px;
line-height: 40px;
margin-left: 5px;
margin-right:25px;
}
.nav-info a:hover{
color:white !important;
}
.searchIn{
width: 30%;
height: 44px;
border: 2px solid #4b4d52;
position: absolute;
left: 49%;
top: 27%;
outline: none;
font-size: 16px;
text-indent: 10px;
}
.searchBtn{
width: 7%;
height: 44px;
border: 2px solid #3f4247;
background-color: #4b4d52;
position: absolute;
right: 13%;
top: 26.6%;
text-indent: 5px;
outline: none;
text-decoration: none;
text-align: center;
color: white;
font-size: 18px;
cursor: pointer;
transition: all 0.3s;
}
.searchBtn:hover{
font-size: 21px;
/*text-decoration: underline;*/
}
.searchBtn a{
text-decoration: none;
text-align: center;
color: white;
font-size: 19px;
}
.logo{
width: 36%;
margin-left: 6%;
}
.search-logo{
text-decoration: none;
color: #4b4d52;
font-size: 30px;
position: absolute;
left: 45%;
top: 27.5%;
}
.search-logo img{
width: 21px;
margin-left:-6px;
}
.menu{
width: 100%;
height: 50px;
list-style: none;
display: flex;
justify-content: flex-start;
background-color: #f2f1ea;
margin-bottom: 0px;
padding-left: 11%;
}
.menu li{
height: 50px;
display: inline-flex;
justify-content: space-around;
/*margin-left: 140px;*/
padding-top: 18px;
margin-right: 100px;
}
.menu a{
text-decoration: none;
color: #3f4247;
}
.menu li a.active{
font-weight: 600;
border: solid #b5aa9a;
border-width: 0 0 2px 0;
}
.menu li a:hover{
font-weight: 600;
border: solid #b5aa9a;
border-width: 0 0 2px 0;
}
.bookstore-pic{
width: 90%;
height: 250px;
margin: 10px auto;
background-image: url(../img/bookStore.jpg);
background-position:bottom;
background-size: cover;
opacity: 0.9;
}
.askBook-pic{
width: 90%;
height: 250px;
margin: 10px auto;
background-image: url(../img/askBook.jpg);
background-position:center;
background-size: cover;
opacity: 0.9;
}
/*图书分类*/
#container{
width: 100%;
/*height: auto;*/
margin-bottom: 20px;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-around;
}
#book-menu{
width: 180px;
height: 290px;
/*background: red;*/
margin: 20px auto;
position: fixed;
left: -180px;
/*left: 1px;*/
top: 190px;
z-index: 100;
background: white;
border: 2px solid #8e9c83;
border-radius: 6px;
transition: all 0.3s linear;
cursor: pointer;
}
#book-menu-toggle{
width: 35px;
height: 130px;
background-color: #8e9c83;
border: 2px solid #8e9c83;
border-radius: 4px;
position: fixed;
left: 1px;
/*left: 178px;*/
top: 211px;
z-index: 100;
padding: 10px 5px;
transition: all 0.3s linear;
color: white;
cursor: pointer;
}
#toggle-btn{
width: 25px;
height: 25px;
/*border: 1px solid #ccc;*/
background-size: cover;
background-position: center;
background-image: url(../img/toggle1.png);
z-index: 102;
margin-left: -2px;
cursor: pointer;
/*margin-top: 25px;*/
/*writing-mode:lr;*/
}
.book-class li{
width: 150px;
height: 28px;
margin: 3px auto;
padding-top: 5px;
list-style: none;
border-bottom: 1px solid #ccc;
}
.book-class li a{
text-decoration: none;
color: gray;
text-align: left;
font-size: 14px;
}
.book-class li a:hover{
font-weight: 600;
}
#book-container{
width: 80%;
margin: 20px auto 20px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
border-left: 1px solid #ccc;
padding-bottom: 20px;
padding-left: 20px;
/*background: #ccc;*/
}
.askbook-container{
margin-top: 30px !important;
}
.book-title{
text-decoration: none;
width: 97%;
height: 38px;
font-family: Microsoft Yahei;
border-bottom: 1px solid #8e9c83;
cursor: pointer;
/*background: #8e9c83;*/
}
.book-title a{
text-decoration: none;
font-weight: 500;
font-size: 20px;
color: #4b4d52;
/*color: white;*/
}
.book-lists{
width: 100%;
height: auto;
/*background-color: #ccc;*/
display: flex;
justify-content: flex-start;
margin-top:15px;
margin-bottom:5px;
flex-wrap: wrap;
}
.book-list{
/*width: 20%;*/
min-width: 21%;
height: 310px;
overflow: hidden;
border: 1px solid #eae1d2;
margin-right: 25px;
display: flex;
justify-content: flex-start;
flex-direction: column;
flex-wrap: wrap;
align-items: flex-start;
margin-bottom: 30px;
position: relative;
}
.book-pic{
width: 80%;
height: 180px;
border-bottom: 1px solid gray;
overflow: hidden;
display: flex;
flex-direction: column;
margin:2px auto;
}
.book-pic img{
margin:auto;
width: 150px;
}
.book-name{
width: 100%;
line-height: 26px;
text-align: center;
font-size: 17px;
color: #ae6d6a;
}
.book-info{
display: flex;
flex-direction: column;
text-decoration: none;
justify-content: center;
}
.askbook-info span{
line-height: 23px;
margin-left: 27px;
color: #272222d6;
font-size: 13px;
word-wrap:break-word;
}
/*.book-name{
line-height: 26px;
margin-left: 27px;
font-size: 17px;
color: #ae6d6a;
}*/
.book-detail{
width: 185px;
height: 34px;
line-height: 18px;
margin-left: 27px;
color: #272222d6;
font-size: 13px;
word-wrap:break-word;
}
.book-price{
width: 100%;
height: 34px;
font-size: 17px;
line-height: 60px;
margin-left: 27px;
color: #880b16;
}
.book-buy{
width: 40px;
height: 36px;
padding: 5px;
margin-left: 45px;
text-decoration: none;
color: white;
font-size: 13px;
border: 1px solid #4b4d52;
border-radius: 2px;
background: #4b4d52;
}
.book-buy:hover{
/*font-weight: 600;*/
background-color: #626a55;
border: 1px solid #626a55;
font-weight: 600;
}
.book-contact{
padding: 5px 10px;
margin-top: 10px;
margin-left: 45px;
text-decoration: none;
color: white;
font-size: 13px;
border: 1px solid #4b4d52;
border-radius: 2px;
background: #4b4d52;
}
.page-btn{
margin: 2px auto !important;
}
.page-btn a{
text-decoration: none;
color: white;
border:1px solid #5e626b;
border-radius: 3px;
background-color: #5e626b;
/*width: 50px;*/
/*height: 20px;*/
text-align: center;
padding: 10px 15px;
}
/*脚步*/
footer{
border-top: 1px solid #ccc;
width: 100%;
height: 70px;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
footer a{
text-align: center;
font-size: 15px;
/*margin-left: 30%;*/
text-decoration: none;
color: gray;
} | src/main/webapp/css/book.css | *{
padding: 0px;
margin: 0px;
font-family: Microsoft Yahei;
box-sizing: border-box;
}
/*navbar*/
.navbar{
height: 200px;
width: 100%;
background-color: white;
position: relative;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: flex-start;
}
.nav-info{
height: 40px;
background-color: #4b4d52;
display: flex;
justify-content: flex-end;
flex-wrap: wrap;
}
.nav-search{
height: 100px;
width: 100%;
/*background-color: gray;*/
display: flex;
justify-content: flex-start;
align-content: center;
position: relative;
}
.nav-info a{
text-decoration: none;
/*color: white;*/
color: #d6d2d2 !important;
font-size: 14px;
line-height: 40px;
margin-left: 5px;
margin-right:25px;
}
.nav-info a:hover{
color:white !important;
}
.searchIn{
width: 30%;
height: 44px;
border: 2px solid #4b4d52;
position: absolute;
left: 49%;
top: 27%;
outline: none;
font-size: 16px;
text-indent: 10px;
}
.searchBtn{
width: 7%;
height: 44px;
border: 2px solid #3f4247;
background-color: #4b4d52;
position: absolute;
right: 13%;
top: 26.6%;
text-indent: 5px;
outline: none;
text-decoration: none;
text-align: center;
color: white;
font-size: 18px;
cursor: pointer;
transition: all 0.3s;
}
.searchBtn:hover{
font-size: 21px;
/*text-decoration: underline;*/
}
.searchBtn a{
text-decoration: none;
text-align: center;
color: white;
font-size: 19px;
}
.logo{
width: 36%;
margin-left: 6%;
}
.search-logo{
text-decoration: none;
color: #4b4d52;
font-size: 30px;
position: absolute;
left: 45%;
top: 27.5%;
}
.search-logo img{
width: 21px;
margin-left:-6px;
}
.menu{
width: 100%;
height: 50px;
list-style: none;
display: flex;
justify-content: flex-start;
background-color: #f2f1ea;
margin-bottom: 0px;
padding-left: 11%;
}
.menu li{
height: 50px;
display: inline-flex;
justify-content: space-around;
/*margin-left: 140px;*/
padding-top: 18px;
margin-right: 100px;
}
.menu a{
text-decoration: none;
color: #3f4247;
}
.menu li a.active{
font-weight: 600;
border: solid #b5aa9a;
border-width: 0 0 2px 0;
}
.menu li a:hover{
font-weight: 600;
border: solid #b5aa9a;
border-width: 0 0 2px 0;
}
.bookstore-pic{
width: 90%;
height: 250px;
margin: 10px auto;
background-image: url(../img/bookStore.jpg);
background-position:bottom;
background-size: cover;
opacity: 0.9;
}
.askBook-pic{
width: 90%;
height: 250px;
margin: 10px auto;
background-image: url(../img/askBook.jpg);
background-position:center;
background-size: cover;
opacity: 0.9;
}
/*图书分类*/
#container{
width: 100%;
/*height: auto;*/
margin-bottom: 20px;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-around;
}
#book-menu{
width: 180px;
height: 290px;
/*background: red;*/
margin: 20px auto;
position: fixed;
left: -180px;
/*left: 1px;*/
top: 190px;
z-index: 100;
background: white;
border: 2px solid #8e9c83;
border-radius: 6px;
transition: all 0.3s linear;
cursor: pointer;
}
#book-menu-toggle{
width: 35px;
height: 130px;
background-color: #8e9c83;
border: 2px solid #8e9c83;
border-radius: 4px;
position: fixed;
left: 1px;
/*left: 178px;*/
top: 211px;
z-index: 100;
padding: 10px 5px;
transition: all 0.3s linear;
color: white;
cursor: pointer;
}
#toggle-btn{
width: 25px;
height: 25px;
/*border: 1px solid #ccc;*/
background-size: cover;
background-position: center;
background-image: url(../img/toggle1.png);
z-index: 102;
margin-left: -2px;
cursor: pointer;
/*margin-top: 25px;*/
/*writing-mode:lr;*/
}
.book-class li{
width: 150px;
height: 28px;
margin: 3px auto;
padding-top: 5px;
list-style: none;
border-bottom: 1px solid #ccc;
}
.book-class li a{
text-decoration: none;
color: gray;
text-align: left;
font-size: 14px;
}
.book-class li a:hover{
font-weight: 600;
}
#book-container{
width: 80%;
margin: 20px auto 20px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
border-left: 1px solid #ccc;
padding-bottom: 20px;
padding-left: 20px;
/*background: #ccc;*/
}
.askbook-container{
margin-top: 30px !important;
}
.book-title{
text-decoration: none;
width: 97%;
height: 38px;
font-family: Microsoft Yahei;
border-bottom: 1px solid #8e9c83;
cursor: pointer;
/*background: #8e9c83;*/
}
.book-title a{
text-decoration: none;
font-weight: 500;
font-size: 20px;
color: #4b4d52;
/*color: white;*/
}
.book-lists{
width: 100%;
height: auto;
/*background-color: #ccc;*/
display: flex;
justify-content: flex-start;
margin-top:15px;
margin-bottom:5px;
flex-wrap: wrap;
}
.book-list{
/*width: 20%;*/
min-width: 21%;
height: 310px;
overflow: hidden;
border: 1px solid #eae1d2;
margin-right: 25px;
display: flex;
justify-content: flex-start;
flex-direction: column;
flex-wrap: wrap;
align-items: flex-start;
margin-bottom: 30px;
position: relative;
}
.book-pic{
width: 80%;
height: 180px;
border-bottom: 1px solid gray;
overflow: hidden;
display: flex;
flex-direction: column;
margin:2px auto;
}
.book-pic img{
margin:auto;
width: 150px;
}
.book-name{
width: 100%;
line-height: 26px;
text-align: center;
font-size: 17px;
color: #ae6d6a;
}
.book-info{
display: flex;
flex-direction: column;
text-decoration: none;
justify-content: center;
}
.askbook-info span{
line-height: 23px;
margin-left: 27px;
color: #272222d6;
font-size: 13px;
word-wrap:break-word;
}
/*.book-name{
line-height: 26px;
margin-left: 27px;
font-size: 17px;
color: #ae6d6a;
}*/
.book-detail{
width: 185px;
height: 34px;
line-height: 18px;
margin-left: 27px;
color: #272222d6;
font-size: 13px;
word-wrap:break-word;
}
.book-price{
width: 100%;
height: 34px;
font-size: 17px;
line-height: 60px;
margin-left: 27px;
color: #880b16;
}
.book-buy{
width: 40px;
height: 36px;
padding: 5px;
margin-left: 45px;
text-decoration: none;
color: white;
font-size: 13px;
border: 1px solid #4b4d52;
border-radius: 2px;
background: #4b4d52;
}
.book-buy:hover{
/*font-weight: 600;*/
background-color: #626a55;
border: 1px solid #626a55;
font-weight: 600;
}
.book-contact{
padding: 5px 10px;
margin-top: 10px;
margin-left: 45px;
text-decoration: none;
color: white;
font-size: 13px;
border: 1px solid #4b4d52;
border-radius: 2px;
background: #4b4d52;
}
.page-btn{
margin: 2px auto !important;
}
.page-btn a{
text-decoration: none;
color: white;
border:1px solid #5e626b;
border-radius: 3px;
background-color: #5e626b;
/*width: 50px;*/
/*height: 20px;*/
text-align: center;
padding: 10px 15px;
}
/*脚步*/
footer{
border-top: 1px solid #ccc;
width: 100%;
height: 70px;
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
}
footer a{
text-align: center;
font-size: 15px;
/*margin-left: 30%;*/
text-decoration: none;
color: gray;
} | 0.21767 | 0.041385 |
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&family=Sarala&display=swap');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
:root{
--font-primary: "Baloo Da 2", serif;
--font-secundary: "Josefin Slab", serif;
--font-action: "Mulish", serif;
}
/*Icone Hamburguer --------------------------------------------------------------------------- */
.hamburguer{
/*background-color: #c9c9c9;*/
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 1rem;
display: flex;
flex-direction: column;
justify-content: space-around;
cursor: pointer;
z-index: 190;
}
.show-menu .hamburguer{
right: 13rem;
}
.line{
width: 100%;
height: .2rem;
background-color: rgb(255, 103, 1);
border-radius: 1px;
box-shadow: 0.1rem 0.1rem 1px rgb(53, 53, 53);
transition: all 1s;
}
.show-menu #line1{
transform: rotate(45deg) translate(0.3rem, 0.5rem);
box-shadow: 0.1rem 0.1rem .5px rgb(77, 77, 77);
}
.show-menu #line3{
transform: rotate(-45deg) translate(0.3rem, -0.6rem);
box-shadow: 0.1rem 0.1rem .5px rgb(77, 77, 77);
}
.show-menu #line2{
opacity: 0;
visibility: hidden;
}
.hamburguer span{
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
color: rgb(255, 255, 255);
background-color: darkgray;
font-family: var(--font-action);
opacity: 0;
}
.hamburguer span::before{
content: "";
position: absolute;
border-right: .5rem solid darkgray;
border-top: .5rem solid transparent;
border-left: .5rem solid transparent;
border-bottom: .5rem solid transparent;
left: -1rem;
}
.show-menu .hamburguer:hover span{
opacity: 1;
}
/*Pagina Inicial ------------------------------------------------------------------- */
header{
width: 100%;
height: 100vh;
overflow: hidden; /*nao gera a barra de rolagem embaixo*/
position: relative;
}
.img-wrapper{
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(255, 154, 71, 0.363);
}
.img-wrapper img{
grid-column: 1;
width: 100%;
height: 100%;
object-fit: cover; /*Para a imagem cobrir as DIVs*?*/
opacity: 0.5;
animation: zoom 3s;
position: absolute;
}
@keyframes zoom{
0%{
transform:scale(1.3);
}
100%{
transform: scale(1);
}
}
.banner{
position:absolute;
left: 12%;
top: 35%;
}
.banner img{
height: 8rem;
}
.banner h1{
color: #c9c9c9;
font-size: 3.5rem; /*EM - mesmo tamanho de font do elemento PAI*/
font-family: var(--font-primary);
font-weight: 200;
text-shadow: .1rem .1rem 1px rgba(0,0,0,0.4);
line-height: 3.5rem;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
animation: moveBanner 1s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner p{
font-family: var(--font-secundary);
color: #c9c9c9;
font-size: 2rem;
text-shadow: .1rem .1rem 2px rgba(0,0,0,0.4);
margin-bottom: 2rem;
animation: moveBanner 1.4s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner a{
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .1rem;
font-size: 1.3rem;
color: rgb(255, 255, 255);
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border: none;
padding: 1.2rem 3rem;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
animation: moveBanner 1.8s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner a:hover{
opacity: 0.8;
background: #747474;
}
.banner button{
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .1rem;
font-size: 1.3rem;
color: rgb(255, 255, 255);
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border: none;
padding: 1.2rem 3rem;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
animation: moveBanner 1.8s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner button:hover{
opacity: 0.8;
background: #747474;
}
@keyframes moveBanner{
0%{
transform: translateY(10rem) rotateY(-30deg);
opacity: 0%;
}
100%{
transform: translateY(0rem) rotateY(0deg);
opacity: 100%;
}
}
.sidebar{
width: 18rem;
height: 100vh;
background: #e7e7e7;
position: fixed;
top: 0;
right: -20rem;
opacity: 0%;
transition: all 1s;
z-index: 150;
}
.show-menu .sidebar{
right: 0;
opacity: 100%;
}
.menu{
position: absolute;
top: 20%;
right: 5%;
transform: translate(-10%, -10%);
}
.menu-item{
text-align: center;
margin: 2rem;
}
.menu-link{
font-family: var(--font-action);
font-size: 1.4rem;
color: rgb(104, 104, 104);
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
transition: color 0.5s; /*mudar a cor do texto de forma suave*/
}
.menu-link:hover{
color: rgb(185, 114, 62);
}
.social-media{
/*background-color: crimson;*/
position: absolute;
bottom: 5rem;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.social-media i{
/*background-color: rgb(185, 114, 62);*/
color: rgb(104, 104, 104);
height: 2.8rem;
width: 2.8rem;
font-size: 3rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
transition: background-color 1s;
}
.social-media i:hover{
background-color: rgb(185, 114, 62);
}
/*CONHECIMENTO ----------------------------------------------------------------------*/
.conhecimentos{
width: 100%;
height: 100vh;
display: grid; /*Posicionar os itens atraves de linhas e colunas (Grid)*/
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(6, 6rem);
row-gap: .5rem;
margin-top: 5rem;
}
.conhecimento-maquininha {
grid-column: 3 / 7;
grid-row: 1 / 3;
}
/*.conhecimento:nth-child(1){
grid-column: 3 / 7;
grid-row: 1 / 3;
}*/ /*Troquei para .conhecimento-maquininha----------*/
.conhecimento-contadigital{
grid-column: 2 / 6;
grid-row: 4 / 6;
}
/*.conhecimento:nth-child(2){
grid-column: 2 / 6;
grid-row: 4 / 6;
}*/ /*Troquei para .conhecimento-contadigital----------*/
.conhecimento:nth-child(3){
grid-column: 3 / 7;
grid-row: 7 / -1;
}
.conhecimento:nth-child(4){
grid-column: 12 / 16;
grid-row: 1 / 3;
}
.conhecimento:nth-child(5){
grid-column: 13 / 17;
grid-row: 4 / 6;
}
.conhecimento:nth-child(6){
grid-column: 12 / 16;
grid-row: 7 / -1;
}
.sessao-conhecimentos{
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.sessao-header{
display: flex;
align-items: center;
justify-content: center;
}
.sessao-header h1{
font-family: var(--font-primary);
font-size: 3rem;
color: rgb(104, 104, 104);
margin-top: 1.5rem;
border-bottom: solid 3px rgb(104, 104, 104);
text-shadow: 0rem 0.1rem 1px rgba(0,0,0,0.4);
}
.conhecimento-header{
display: flex;
align-items: center;
gap: 0.5rem;
color: rgb(255, 255, 255);
}
.conhecimento-header i{
font-size: 2.5rem;
}
.conhecimento-header h3{
font-family: var(--font-secundary);
font-size: 2.1rem;
}
.conhecimento-text{
font-family: var(--font-secundary);
margin-top: 1rem;
font-size: 1.6rem;
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
color: rgb(255, 255, 255);
}
.conhecimento-img-wrapper{
grid-column: 7 / 11;
grid-row: 1 / 6;
width: 100%;
}
.conhecimento-img-wrapper img{
object-fit: cover;
width: 110%;
}
/* OKCredito ------------------------------------------------------------------------------------------ */
.projetos{
width: 100%;
height: 100vh;
display: flex;
justify-content: space-evenly;
padding-top: 4rem;
padding-bottom: 6rem;
}
.card{
width: 18rem;
height: 25rem;
position: relative;
}
.card-img-wrapper{
width: 100%;
height: 100%;
background-color: rgba(255, 163, 78, 0.767);
border-radius: .5rem;
}
.card-img-wrapper img{
object-fit: cover;
width: 100%;
height: 100%;
border-radius: .5rem;
opacity: .4;
}
.card:hover .card-img-wrapper img{
opacity: .6;
}
.card-info{
position: absolute;
bottom: 0;
padding: 1rem;
text-shadow: 0 .1rem .3rem rgba(0,0,0,0.4);
}
.card-info h2{
font-family: var(--font-secundary);
font-size: 2rem;
font-weight: 700;
color: rgb(39, 39, 39);
margin-bottom: 1rem;
}
.card-info h3{
font-family: var(--font-secundary);
font-size: 1.3rem;
font-weight: 800;
color: rgb(32, 32, 32);
margin-bottom: 1rem;
}
.card-info p{
font-family: var(--font-secundary);
font-size: 1rem;
font-weight: 800;
color: rgb(32, 32, 32);
margin-bottom: 1rem;
}
.card-info button{
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border-radius: .3rem;
border: none;
height: 1.7rem;
font-weight: 500;
color: white;
width: 8rem;
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .05rem;
cursor: pointer;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
opacity: 0;
visibility: hidden;
transition: all 1.5s;
}
.card:hover .card-info button{
bottom: 2rem;
opacity: 1;
visibility: visible;
}
/*Sessao do Formulario --------------------------------------------------------------------------------*/
.sessao-contato{
width: 100%;
height: 100vh;
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
align-items: center;
justify-content: center;
}
.contato-wrapper{
width: 60%;
height: 40rem;
display: flex;
box-shadow: 0 2rem 5rem rgba(0,0,0,0.9);
}
.contato-left{
width: 50%;
background:
linear-gradient(rgba(15, 9, 1, 0.6),rgba(22,22,22,.9)),
url(imagens/contato.jpg);
background-size: cover;
}
.contato-right{
width: 50%;
background-color: #e7e7e7;
padding: 1rem 5rem 5rem 5rem;
}
.sessao-contato h1{
width: 100%;
text-align: center;
font-family: var(--font-primary);
color: #272727;
font-size: 3rem;
font-weight: lighter;
}
.sessao-contato form{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.input-group{
position: relative;
}
.field{
background: transparent;
border: none;
width: 20rem;
font-size: 1.5rem;
font-family: var(--font-secundary);
border-bottom: 1px dashed #636363;
height: 3rem;
outline: none;
margin: 1rem 0;
}
.input-group textarea{
padding-top: 0.5rem;
max-width: 25rem;
max-height: 5rem;
}
.field-label{
position: absolute;
left: 0;
top: 2rem;
font-size: 1.2rem;
font-family: var(--font-primary);
text-transform: uppercase;
transition: all .3s;
}
.field:focus ~ label{
top: 0;
font-size: 1rem;
}
.field:focus {
border-bottom: solid;
}
.btn-submit{
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border-radius: .3rem;
border: none;
height: 1.7rem;
font-weight: 500;
width: 65%;
font-family: var(--font-action);
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: .05rem;
cursor: pointer;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
transition: all 1.5s;
color: white;
}
.preenchido{
pointer-events: none;
}
/*Solicitacao de Maquininha----------------------------------------------------------------------------------*/
.sessao-orcamento{
width: 100%;
height: 100vh;
background: url("./imagens/bg-orcamento.jpg");
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
align-items: center;
}
.orcamento-wrapper{
width: 40%;
height: 60%;
background-color: #D6E3E999;
border-radius: 10px;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
position: relative;
}
.sessao-orcamento h1{
position: absolute;
top: -2.5rem;
left: 2rem;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 0 3rem;
color: white;
font-family: var(--font-primary);
font-size: 3rem;
font-weight: lighter;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
border-radius: 10px;
}
.sessao-orcamento form{
margin: 4rem;
display: grid;
grid-template-columns: auto 1fr;
column-gap: 2rem;
row-gap: 2rem;
}
.sessao-orcamento label{
font-family: var(--font-secundary);
font-size: 1.5rem;
font-weight: bold;
}
.sessao-orcamento input[type="number"]{
font-family: var(--font-secundary);
width: 4rem;
font-size: 1.3rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
.sessao-orcamento input[type="text"]{
font-family: var(--font-secundary);
width: 11rem;
font-size: 1.3rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
.btn-orcamento{
text-transform: uppercase;
padding: 1rem;
cursor: pointer;
grid-column: 2;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: white;
border-radius: .3rem;
border: none;
font-family: var(--font-action);
font-size: 1.3rem;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
}
/* Footer -----------------------------------------------------------------------------------------*/
footer{
width: 100%;
height: 7rem;
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
align-items: center;
justify-content: center;
}
.footer-content{
width: 60%;
display: flex;
justify-content: space-between;
}
.footer-content{
font-family: var(--font-secundary);
color: white;
font-size: 1.3rem;
}
.social-list a{
margin: 0 2rem;
color: white;
font-size: 1.5rem;
}
.social-list ul{
display: flex;
}
/* Arrow jogando para cima ---------------------------------------------------------------------*/
#link-topo{
position: fixed;
right: 3rem;
bottom: 3rem;
width: 4rem;
height: 4rem;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
justify-content: center;
align-items: center;
color: white;
border-radius: 10px;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
} | Portifolio/style.css | @import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700&family=Josefin+Slab:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400&family=Sarala&display=swap');
*{
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
}
:root{
--font-primary: "Baloo Da 2", serif;
--font-secundary: "Josefin Slab", serif;
--font-action: "Mulish", serif;
}
/*Icone Hamburguer --------------------------------------------------------------------------- */
.hamburguer{
/*background-color: #c9c9c9;*/
width: 2rem;
height: 2rem;
position: fixed;
z-index: 100;
right: 2rem;
top: 1rem;
display: flex;
flex-direction: column;
justify-content: space-around;
cursor: pointer;
z-index: 190;
}
.show-menu .hamburguer{
right: 13rem;
}
.line{
width: 100%;
height: .2rem;
background-color: rgb(255, 103, 1);
border-radius: 1px;
box-shadow: 0.1rem 0.1rem 1px rgb(53, 53, 53);
transition: all 1s;
}
.show-menu #line1{
transform: rotate(45deg) translate(0.3rem, 0.5rem);
box-shadow: 0.1rem 0.1rem .5px rgb(77, 77, 77);
}
.show-menu #line3{
transform: rotate(-45deg) translate(0.3rem, -0.6rem);
box-shadow: 0.1rem 0.1rem .5px rgb(77, 77, 77);
}
.show-menu #line2{
opacity: 0;
visibility: hidden;
}
.hamburguer span{
position: absolute;
left: 3rem;
height: 2rem;
width: 6rem;
display: flex;
justify-content: center;
align-items: center;
color: rgb(255, 255, 255);
background-color: darkgray;
font-family: var(--font-action);
opacity: 0;
}
.hamburguer span::before{
content: "";
position: absolute;
border-right: .5rem solid darkgray;
border-top: .5rem solid transparent;
border-left: .5rem solid transparent;
border-bottom: .5rem solid transparent;
left: -1rem;
}
.show-menu .hamburguer:hover span{
opacity: 1;
}
/*Pagina Inicial ------------------------------------------------------------------- */
header{
width: 100%;
height: 100vh;
overflow: hidden; /*nao gera a barra de rolagem embaixo*/
position: relative;
}
.img-wrapper{
width: 100%;
height: 100%;
overflow: hidden;
background-color: rgba(255, 154, 71, 0.363);
}
.img-wrapper img{
grid-column: 1;
width: 100%;
height: 100%;
object-fit: cover; /*Para a imagem cobrir as DIVs*?*/
opacity: 0.5;
animation: zoom 3s;
position: absolute;
}
@keyframes zoom{
0%{
transform:scale(1.3);
}
100%{
transform: scale(1);
}
}
.banner{
position:absolute;
left: 12%;
top: 35%;
}
.banner img{
height: 8rem;
}
.banner h1{
color: #c9c9c9;
font-size: 3.5rem; /*EM - mesmo tamanho de font do elemento PAI*/
font-family: var(--font-primary);
font-weight: 200;
text-shadow: .1rem .1rem 1px rgba(0,0,0,0.4);
line-height: 3.5rem;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
animation: moveBanner 1s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner p{
font-family: var(--font-secundary);
color: #c9c9c9;
font-size: 2rem;
text-shadow: .1rem .1rem 2px rgba(0,0,0,0.4);
margin-bottom: 2rem;
animation: moveBanner 1.4s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner a{
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .1rem;
font-size: 1.3rem;
color: rgb(255, 255, 255);
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border: none;
padding: 1.2rem 3rem;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
animation: moveBanner 1.8s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner a:hover{
opacity: 0.8;
background: #747474;
}
.banner button{
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .1rem;
font-size: 1.3rem;
color: rgb(255, 255, 255);
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border: none;
padding: 1.2rem 3rem;
border-radius: 8px;
cursor: pointer;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
animation: moveBanner 1.8s forwards; /*ligado ao @keyframe moveBanner para haver animacao do texto e botao*/
}
.banner button:hover{
opacity: 0.8;
background: #747474;
}
@keyframes moveBanner{
0%{
transform: translateY(10rem) rotateY(-30deg);
opacity: 0%;
}
100%{
transform: translateY(0rem) rotateY(0deg);
opacity: 100%;
}
}
.sidebar{
width: 18rem;
height: 100vh;
background: #e7e7e7;
position: fixed;
top: 0;
right: -20rem;
opacity: 0%;
transition: all 1s;
z-index: 150;
}
.show-menu .sidebar{
right: 0;
opacity: 100%;
}
.menu{
position: absolute;
top: 20%;
right: 5%;
transform: translate(-10%, -10%);
}
.menu-item{
text-align: center;
margin: 2rem;
}
.menu-link{
font-family: var(--font-action);
font-size: 1.4rem;
color: rgb(104, 104, 104);
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
transition: color 0.5s; /*mudar a cor do texto de forma suave*/
}
.menu-link:hover{
color: rgb(185, 114, 62);
}
.social-media{
/*background-color: crimson;*/
position: absolute;
bottom: 5rem;
width: 100%;
display: flex;
justify-content: space-evenly;
}
.social-media i{
/*background-color: rgb(185, 114, 62);*/
color: rgb(104, 104, 104);
height: 2.8rem;
width: 2.8rem;
font-size: 3rem;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50%;
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
transition: background-color 1s;
}
.social-media i:hover{
background-color: rgb(185, 114, 62);
}
/*CONHECIMENTO ----------------------------------------------------------------------*/
.conhecimentos{
width: 100%;
height: 100vh;
display: grid; /*Posicionar os itens atraves de linhas e colunas (Grid)*/
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(6, 6rem);
row-gap: .5rem;
margin-top: 5rem;
}
.conhecimento-maquininha {
grid-column: 3 / 7;
grid-row: 1 / 3;
}
/*.conhecimento:nth-child(1){
grid-column: 3 / 7;
grid-row: 1 / 3;
}*/ /*Troquei para .conhecimento-maquininha----------*/
.conhecimento-contadigital{
grid-column: 2 / 6;
grid-row: 4 / 6;
}
/*.conhecimento:nth-child(2){
grid-column: 2 / 6;
grid-row: 4 / 6;
}*/ /*Troquei para .conhecimento-contadigital----------*/
.conhecimento:nth-child(3){
grid-column: 3 / 7;
grid-row: 7 / -1;
}
.conhecimento:nth-child(4){
grid-column: 12 / 16;
grid-row: 1 / 3;
}
.conhecimento:nth-child(5){
grid-column: 13 / 17;
grid-row: 4 / 6;
}
.conhecimento:nth-child(6){
grid-column: 12 / 16;
grid-row: 7 / -1;
}
.sessao-conhecimentos{
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.sessao-header{
display: flex;
align-items: center;
justify-content: center;
}
.sessao-header h1{
font-family: var(--font-primary);
font-size: 3rem;
color: rgb(104, 104, 104);
margin-top: 1.5rem;
border-bottom: solid 3px rgb(104, 104, 104);
text-shadow: 0rem 0.1rem 1px rgba(0,0,0,0.4);
}
.conhecimento-header{
display: flex;
align-items: center;
gap: 0.5rem;
color: rgb(255, 255, 255);
}
.conhecimento-header i{
font-size: 2.5rem;
}
.conhecimento-header h3{
font-family: var(--font-secundary);
font-size: 2.1rem;
}
.conhecimento-text{
font-family: var(--font-secundary);
margin-top: 1rem;
font-size: 1.6rem;
text-shadow: .02rem .02rem 2px rgba(0,0,0,0.4);
color: rgb(255, 255, 255);
}
.conhecimento-img-wrapper{
grid-column: 7 / 11;
grid-row: 1 / 6;
width: 100%;
}
.conhecimento-img-wrapper img{
object-fit: cover;
width: 110%;
}
/* OKCredito ------------------------------------------------------------------------------------------ */
.projetos{
width: 100%;
height: 100vh;
display: flex;
justify-content: space-evenly;
padding-top: 4rem;
padding-bottom: 6rem;
}
.card{
width: 18rem;
height: 25rem;
position: relative;
}
.card-img-wrapper{
width: 100%;
height: 100%;
background-color: rgba(255, 163, 78, 0.767);
border-radius: .5rem;
}
.card-img-wrapper img{
object-fit: cover;
width: 100%;
height: 100%;
border-radius: .5rem;
opacity: .4;
}
.card:hover .card-img-wrapper img{
opacity: .6;
}
.card-info{
position: absolute;
bottom: 0;
padding: 1rem;
text-shadow: 0 .1rem .3rem rgba(0,0,0,0.4);
}
.card-info h2{
font-family: var(--font-secundary);
font-size: 2rem;
font-weight: 700;
color: rgb(39, 39, 39);
margin-bottom: 1rem;
}
.card-info h3{
font-family: var(--font-secundary);
font-size: 1.3rem;
font-weight: 800;
color: rgb(32, 32, 32);
margin-bottom: 1rem;
}
.card-info p{
font-family: var(--font-secundary);
font-size: 1rem;
font-weight: 800;
color: rgb(32, 32, 32);
margin-bottom: 1rem;
}
.card-info button{
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border-radius: .3rem;
border: none;
height: 1.7rem;
font-weight: 500;
color: white;
width: 8rem;
font-family: var(--font-action);
text-transform: uppercase;
letter-spacing: .05rem;
cursor: pointer;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
opacity: 0;
visibility: hidden;
transition: all 1.5s;
}
.card:hover .card-info button{
bottom: 2rem;
opacity: 1;
visibility: visible;
}
/*Sessao do Formulario --------------------------------------------------------------------------------*/
.sessao-contato{
width: 100%;
height: 100vh;
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
align-items: center;
justify-content: center;
}
.contato-wrapper{
width: 60%;
height: 40rem;
display: flex;
box-shadow: 0 2rem 5rem rgba(0,0,0,0.9);
}
.contato-left{
width: 50%;
background:
linear-gradient(rgba(15, 9, 1, 0.6),rgba(22,22,22,.9)),
url(imagens/contato.jpg);
background-size: cover;
}
.contato-right{
width: 50%;
background-color: #e7e7e7;
padding: 1rem 5rem 5rem 5rem;
}
.sessao-contato h1{
width: 100%;
text-align: center;
font-family: var(--font-primary);
color: #272727;
font-size: 3rem;
font-weight: lighter;
}
.sessao-contato form{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.input-group{
position: relative;
}
.field{
background: transparent;
border: none;
width: 20rem;
font-size: 1.5rem;
font-family: var(--font-secundary);
border-bottom: 1px dashed #636363;
height: 3rem;
outline: none;
margin: 1rem 0;
}
.input-group textarea{
padding-top: 0.5rem;
max-width: 25rem;
max-height: 5rem;
}
.field-label{
position: absolute;
left: 0;
top: 2rem;
font-size: 1.2rem;
font-family: var(--font-primary);
text-transform: uppercase;
transition: all .3s;
}
.field:focus ~ label{
top: 0;
font-size: 1rem;
}
.field:focus {
border-bottom: solid;
}
.btn-submit{
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
border-radius: .3rem;
border: none;
height: 1.7rem;
font-weight: 500;
width: 65%;
font-family: var(--font-action);
font-size: 1.2rem;
text-transform: uppercase;
letter-spacing: .05rem;
cursor: pointer;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
transition: all 1.5s;
color: white;
}
.preenchido{
pointer-events: none;
}
/*Solicitacao de Maquininha----------------------------------------------------------------------------------*/
.sessao-orcamento{
width: 100%;
height: 100vh;
background: url("./imagens/bg-orcamento.jpg");
background-size: cover;
object-fit: cover;
display: flex;
justify-content: center;
align-items: center;
}
.orcamento-wrapper{
width: 40%;
height: 60%;
background-color: #D6E3E999;
border-radius: 10px;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
position: relative;
}
.sessao-orcamento h1{
position: absolute;
top: -2.5rem;
left: 2rem;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding: 0 3rem;
color: white;
font-family: var(--font-primary);
font-size: 3rem;
font-weight: lighter;
box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
border-radius: 10px;
}
.sessao-orcamento form{
margin: 4rem;
display: grid;
grid-template-columns: auto 1fr;
column-gap: 2rem;
row-gap: 2rem;
}
.sessao-orcamento label{
font-family: var(--font-secundary);
font-size: 1.5rem;
font-weight: bold;
}
.sessao-orcamento input[type="number"]{
font-family: var(--font-secundary);
width: 4rem;
font-size: 1.3rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
.sessao-orcamento input[type="text"]{
font-family: var(--font-secundary);
width: 11rem;
font-size: 1.3rem;
outline: none;
border-radius: 10px;
border: none;
padding: 0.3rem;
}
.btn-orcamento{
text-transform: uppercase;
padding: 1rem;
cursor: pointer;
grid-column: 2;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
color: white;
border-radius: .3rem;
border: none;
font-family: var(--font-action);
font-size: 1.3rem;
box-shadow: 0 .1rem .8rem rgba(0,0,0,0.4);
}
/* Footer -----------------------------------------------------------------------------------------*/
footer{
width: 100%;
height: 7rem;
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
align-items: center;
justify-content: center;
}
.footer-content{
width: 60%;
display: flex;
justify-content: space-between;
}
.footer-content{
font-family: var(--font-secundary);
color: white;
font-size: 1.3rem;
}
.social-list a{
margin: 0 2rem;
color: white;
font-size: 1.5rem;
}
.social-list ul{
display: flex;
}
/* Arrow jogando para cima ---------------------------------------------------------------------*/
#link-topo{
position: fixed;
right: 3rem;
bottom: 3rem;
width: 4rem;
height: 4rem;
background: #FE4E0B; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #FE4E0B, #FF7F00); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #FE4E0B, #FF7F00); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
display: flex;
justify-content: center;
align-items: center;
color: white;
border-radius: 10px;
box-shadow: 0 0.3rem 0.3rem rgba(15, 9, 1, 0.6);
} | 0.50293 | 0.072703 |
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
button {
cursor: pointer;
}
ul,
ol {
list-style: none;
}
/* General styling */
body {
font-family: "Montserrat", sans-serif;
}
h1,
button {
font-family: "Raleway", sans-serif;
color: hsl(12,16%,22%);
}
p {
color: hsl(12,16%,22%);
margin-top: 20px;
}
button {
border: none;
border-radius: 3px;
}
a {
color: white;
}
.primary-button {
color: white;
padding: 12px 30px;
border-radius: 50px;
border: none;
cursor: pointer;
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
color: white;
font-weight: bold;
}
.primary-button:hover {
background: linear-gradient(
to right,
rgba(245, 210, 112, 0.7),
hsla(12, 83%, 70%, 0.7)
);
}
@media (max-width: 750px) {
h1,
h2,
p {
text-align: center;
}
}
/* Header styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2%;
}
header img {
width: 10%;
}
.header-buttons {
align-self: stretch;
display: flex;
justify-content: center;
align-items: center;
padding-right: 7%;
}
header button {
background-color: transparent;
width: max-content;
flex: 1 0 auto;
margin: 0 2%;
padding: 1% 8%;
font-size: 1.2rem;
}
header button:hover {
font-weight: 600;
}
@media (max-width: 1250px) {
header img {
width: 130px;
}
header button {
padding: 1px 5px;
font-size: 1.5rem;
}
}
@media (max-width: 500px) {
header img {
width: 90px;
}
header button {
padding: 1px 5px;
font-size: 0.8rem;
}
}
/* Sections styling */
section {
padding: 3%;
display: flex;
}
section > * {
flex: 10;
}
.info {
display: flex;
justify-content: center;
flex-direction: column;
}
.info p {
font-size: 1.2rem;
padding-right: 3%;
}
@media (max-width: 1250px) {
section {
flex-direction: column-reverse;
}
section img:nth-child(2) {
width: 85%;
align-self: center;
}
}
@media (max-width: 375px) {
section h1 {
font-size: 26px;
}
}
/* Section 1 styling */
.section-1 h1 {
font-size: 8rem;
color: #f76374;
text-shadow: 2px 2px 5px #c0bfbf;
}
.section-1 p {
font-size: 1.8rem;
}
.section-1 button {
flex: 1;
font-size: 1.3rem;
margin-top: 2rem;
width: 50%;
}
.section-1 img {
width: 65%;
}
@media (max-width: 1250px) {
.section-1 h1 {
padding-top: 1rem;
}
.actions {
flex-direction: column;
align-items: center;
}
.section-1 button {
width: 50%;
margin: 0;
}
.section-1 button {
margin-top: 5%;
padding: 15px 0;
font-size: 1.5rem;
}
.section-1 .info {
display: flex;
text-align: center;
}
}
@media (max-width: 750px) {
.section-1 h1 {
font-size: 4.5rem;
padding-top: 1rem;
}
.actions {
flex-direction: column;
align-items: center;
}
.section-1 button {
width: 50%;
margin-top: 5%;
padding: 15px 0;
font-size: 1.2rem;
}
.section-1 p {
font-size: 1.2rem;
padding-bottom: 0.5rem;
}
.section-1 .info {
display: flex;
text-align: center;
}
}
/* Section 2 styling */
.section-2 {
background-color: #f8f8fd;
color: hsl(12,16%,22%);
}
.section-2 h2 {
text-align: left;
font-size: 2.5rem;
}
.section-2 img {
width: 50%;
margin-right: 2rem;
margin-bottom: 3rem;
}
.mobile-active {
display: none;
}
.desktop-active {
width: 100%;
position: relative;
top: 20px;
}
@media (max-width: 1250px) {
.section-2 h2 {
text-align: center;
}
.section-2 p {
text-align: center;
font-size: 1.5rem;
}
.section-2 img {
width: 75%;
align-self: center;
padding-top: 2rem;
}
}
@media (max-width: 750px) {
.section-2 h2 {
text-align: center;
font-size: 1.8rem;
}
.desktop-active {
display: none;
}
.mobile-active {
display: unset;
width: 100%;
position: relative;
top: 20px;
}
.section-2 p {
text-align: center;
font-size: 1rem;
}
}
/* Section 3 styling */
.section-3 {
background-color: #f7e0d5;
color: hsl(12,16%,22%);
}
.section-3 h2 {
color: hsl(12,16%,22%);
font-size: 2.5rem;
text-align: center;
}
.stars {
padding-left: 1.5rem;
}
.column {
float: left;
width: 25%;
padding: 0 10px;
}
.row {
margin: 0 -5px;
margin: 2rem 0rem;
}
.row:after {
content: "";
display: table;
clear: both;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 30px 5px;
text-align: center;
background-color: white;
}
@media (max-width: 1250px) {
.stars {
font-size: 0.8rem;
}
.section-3 p {
font-size: 0.8rem;
}
}
@media (max-width: 750px) {
.section-3 .info {
text-align: center;
}
.section-3 h2 {
font-size: 1.8rem;
padding-top: 1rem;
}
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
/* Footer styling */
footer {
padding: 5% 5% 3% 3%;
background-color: #f66374;
display: flex;
flex-direction: column;
}
i {
padding-right: 1rem;
}
.extra-info {
flex: 5;
display: flex;
color: white;
justify-content: space-between;
}
.extra-info p {
color: white;
font-size: 1.1rem;
}
.contacts {
display: flex;
flex-direction: column;
}
.contact {
display: flex;
align-items: center;
margin-bottom: 2%;
}
.contact p {
flex: 10;
margin: 0;
}
.about-hobbit li {
margin-bottom: 15px;
font-size: 1.1rem;
}
.logos {
display: flex;
align-items: flex-start;
}
.logos li {
margin: 0 10px;
display: flex;
justify-content: center;
align-items: center;
}
.logos li > * {
font-size: 1.5rem;
}
.hide-page {
display: none !important;
}
.single-habit {
background-color: lightgray;
padding: 20px;
}
.single-habit h3 {
text-align: center;
}
@media (max-width: 750px) {
footer {
padding-top: 30px;
padding-left: 30px;
}
.extra-info {
flex-wrap: wrap;
}
.logos {
flex-basis: 100%;
justify-content: center;
margin-top: 5%;
}
}
@media (max-width: 550px) {
.extra-info {
flex-direction: column;
align-self: center;
text-align: center;
padding-bottom: 2rem;
}
.contacts {
padding-bottom: 2rem;
}
.contact {
align-self: center;
}
.about-hobbit {
margin: 0 auto;
}
.logos {
margin: 1rem;
}
}
.single-habit {
margin: 10px;
}
.single-habit h3 {
text-align: left;
}
/* hobby page */
#habit-page {
background-color: #f7e0d5;
}
#habit-form {
font-size: 1.3rem;
width: 35rem;
left: 4px;
margin-left: 2rem;
background-color: rgba(128, 128, 128, 0.473);
border-radius: 25px;
padding-left: 2rem;
padding-right: 2rem;
}
#habit-form h1 {
text-align: center;
padding-top: 0.5rem;
}
#habit-form h2 {
text-align: center;
font-size: 1rem;
}
#name {
width:100%;
height: 2rem;
padding-left: 0.4rem;
border-radius: 4px;
margin-right: 2px;
}
#desc {
width: 100%;
height: 2rem;
border-radius: 4px;
padding-left: 0.4rem;
margin-right: 2px;
}
#freq {
width: 8rem;
font-size: 1.2rem;
border-radius: 50px;
}
#submitbtn {
display: inline-block;
font-size: 1.2rem;
cursor: pointer;
text-align: center;
outline: none;
color: #fff;
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
border: none;
border-radius: 30px;
box-shadow: 0 9px #999;
width: 16rem;
margin-left:7.2rem;
margin-bottom: 1.5rem;
}
#sign-out {
position: fixed;
top: 0;
margin-top: 1.5rem;
right: 5px;
}
#logout {
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
color: white;
font-weight: bold;
padding-top: 6px;
margin: 8px 0;
border-radius: 50px;
border: none;
cursor: pointer;
width: 8rem;
font-size: 1rem;
height: 2rem;
} | client/css/style.css | * {
padding: 0;
margin: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
button {
cursor: pointer;
}
ul,
ol {
list-style: none;
}
/* General styling */
body {
font-family: "Montserrat", sans-serif;
}
h1,
button {
font-family: "Raleway", sans-serif;
color: hsl(12,16%,22%);
}
p {
color: hsl(12,16%,22%);
margin-top: 20px;
}
button {
border: none;
border-radius: 3px;
}
a {
color: white;
}
.primary-button {
color: white;
padding: 12px 30px;
border-radius: 50px;
border: none;
cursor: pointer;
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
color: white;
font-weight: bold;
}
.primary-button:hover {
background: linear-gradient(
to right,
rgba(245, 210, 112, 0.7),
hsla(12, 83%, 70%, 0.7)
);
}
@media (max-width: 750px) {
h1,
h2,
p {
text-align: center;
}
}
/* Header styling */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2%;
}
header img {
width: 10%;
}
.header-buttons {
align-self: stretch;
display: flex;
justify-content: center;
align-items: center;
padding-right: 7%;
}
header button {
background-color: transparent;
width: max-content;
flex: 1 0 auto;
margin: 0 2%;
padding: 1% 8%;
font-size: 1.2rem;
}
header button:hover {
font-weight: 600;
}
@media (max-width: 1250px) {
header img {
width: 130px;
}
header button {
padding: 1px 5px;
font-size: 1.5rem;
}
}
@media (max-width: 500px) {
header img {
width: 90px;
}
header button {
padding: 1px 5px;
font-size: 0.8rem;
}
}
/* Sections styling */
section {
padding: 3%;
display: flex;
}
section > * {
flex: 10;
}
.info {
display: flex;
justify-content: center;
flex-direction: column;
}
.info p {
font-size: 1.2rem;
padding-right: 3%;
}
@media (max-width: 1250px) {
section {
flex-direction: column-reverse;
}
section img:nth-child(2) {
width: 85%;
align-self: center;
}
}
@media (max-width: 375px) {
section h1 {
font-size: 26px;
}
}
/* Section 1 styling */
.section-1 h1 {
font-size: 8rem;
color: #f76374;
text-shadow: 2px 2px 5px #c0bfbf;
}
.section-1 p {
font-size: 1.8rem;
}
.section-1 button {
flex: 1;
font-size: 1.3rem;
margin-top: 2rem;
width: 50%;
}
.section-1 img {
width: 65%;
}
@media (max-width: 1250px) {
.section-1 h1 {
padding-top: 1rem;
}
.actions {
flex-direction: column;
align-items: center;
}
.section-1 button {
width: 50%;
margin: 0;
}
.section-1 button {
margin-top: 5%;
padding: 15px 0;
font-size: 1.5rem;
}
.section-1 .info {
display: flex;
text-align: center;
}
}
@media (max-width: 750px) {
.section-1 h1 {
font-size: 4.5rem;
padding-top: 1rem;
}
.actions {
flex-direction: column;
align-items: center;
}
.section-1 button {
width: 50%;
margin-top: 5%;
padding: 15px 0;
font-size: 1.2rem;
}
.section-1 p {
font-size: 1.2rem;
padding-bottom: 0.5rem;
}
.section-1 .info {
display: flex;
text-align: center;
}
}
/* Section 2 styling */
.section-2 {
background-color: #f8f8fd;
color: hsl(12,16%,22%);
}
.section-2 h2 {
text-align: left;
font-size: 2.5rem;
}
.section-2 img {
width: 50%;
margin-right: 2rem;
margin-bottom: 3rem;
}
.mobile-active {
display: none;
}
.desktop-active {
width: 100%;
position: relative;
top: 20px;
}
@media (max-width: 1250px) {
.section-2 h2 {
text-align: center;
}
.section-2 p {
text-align: center;
font-size: 1.5rem;
}
.section-2 img {
width: 75%;
align-self: center;
padding-top: 2rem;
}
}
@media (max-width: 750px) {
.section-2 h2 {
text-align: center;
font-size: 1.8rem;
}
.desktop-active {
display: none;
}
.mobile-active {
display: unset;
width: 100%;
position: relative;
top: 20px;
}
.section-2 p {
text-align: center;
font-size: 1rem;
}
}
/* Section 3 styling */
.section-3 {
background-color: #f7e0d5;
color: hsl(12,16%,22%);
}
.section-3 h2 {
color: hsl(12,16%,22%);
font-size: 2.5rem;
text-align: center;
}
.stars {
padding-left: 1.5rem;
}
.column {
float: left;
width: 25%;
padding: 0 10px;
}
.row {
margin: 0 -5px;
margin: 2rem 0rem;
}
.row:after {
content: "";
display: table;
clear: both;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 30px 5px;
text-align: center;
background-color: white;
}
@media (max-width: 1250px) {
.stars {
font-size: 0.8rem;
}
.section-3 p {
font-size: 0.8rem;
}
}
@media (max-width: 750px) {
.section-3 .info {
text-align: center;
}
.section-3 h2 {
font-size: 1.8rem;
padding-top: 1rem;
}
.column {
width: 100%;
display: block;
margin-bottom: 20px;
}
}
/* Footer styling */
footer {
padding: 5% 5% 3% 3%;
background-color: #f66374;
display: flex;
flex-direction: column;
}
i {
padding-right: 1rem;
}
.extra-info {
flex: 5;
display: flex;
color: white;
justify-content: space-between;
}
.extra-info p {
color: white;
font-size: 1.1rem;
}
.contacts {
display: flex;
flex-direction: column;
}
.contact {
display: flex;
align-items: center;
margin-bottom: 2%;
}
.contact p {
flex: 10;
margin: 0;
}
.about-hobbit li {
margin-bottom: 15px;
font-size: 1.1rem;
}
.logos {
display: flex;
align-items: flex-start;
}
.logos li {
margin: 0 10px;
display: flex;
justify-content: center;
align-items: center;
}
.logos li > * {
font-size: 1.5rem;
}
.hide-page {
display: none !important;
}
.single-habit {
background-color: lightgray;
padding: 20px;
}
.single-habit h3 {
text-align: center;
}
@media (max-width: 750px) {
footer {
padding-top: 30px;
padding-left: 30px;
}
.extra-info {
flex-wrap: wrap;
}
.logos {
flex-basis: 100%;
justify-content: center;
margin-top: 5%;
}
}
@media (max-width: 550px) {
.extra-info {
flex-direction: column;
align-self: center;
text-align: center;
padding-bottom: 2rem;
}
.contacts {
padding-bottom: 2rem;
}
.contact {
align-self: center;
}
.about-hobbit {
margin: 0 auto;
}
.logos {
margin: 1rem;
}
}
.single-habit {
margin: 10px;
}
.single-habit h3 {
text-align: left;
}
/* hobby page */
#habit-page {
background-color: #f7e0d5;
}
#habit-form {
font-size: 1.3rem;
width: 35rem;
left: 4px;
margin-left: 2rem;
background-color: rgba(128, 128, 128, 0.473);
border-radius: 25px;
padding-left: 2rem;
padding-right: 2rem;
}
#habit-form h1 {
text-align: center;
padding-top: 0.5rem;
}
#habit-form h2 {
text-align: center;
font-size: 1rem;
}
#name {
width:100%;
height: 2rem;
padding-left: 0.4rem;
border-radius: 4px;
margin-right: 2px;
}
#desc {
width: 100%;
height: 2rem;
border-radius: 4px;
padding-left: 0.4rem;
margin-right: 2px;
}
#freq {
width: 8rem;
font-size: 1.2rem;
border-radius: 50px;
}
#submitbtn {
display: inline-block;
font-size: 1.2rem;
cursor: pointer;
text-align: center;
outline: none;
color: #fff;
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
border: none;
border-radius: 30px;
box-shadow: 0 9px #999;
width: 16rem;
margin-left:7.2rem;
margin-bottom: 1.5rem;
}
#sign-out {
position: fixed;
top: 0;
margin-top: 1.5rem;
right: 5px;
}
#logout {
background: linear-gradient(
to right,
rgb(245, 210, 112),
hsl(12, 83%, 70%)
);
color: white;
font-weight: bold;
padding-top: 6px;
margin: 8px 0;
border-radius: 50px;
border: none;
cursor: pointer;
width: 8rem;
font-size: 1rem;
height: 2rem;
} | 0.53437 | 0.133302 |
@import url('https://use.typekit.net/iis5ems.css');
html,
body {
font-family: anisette-std, sans-serif;
font-weight: 400;
font-style: normal;
margin: 0;
font-size: 20px;
-webkit-font-smoothing: antialiased;
line-height: 1.3;
}
a {
color: black;
/* text-decoration: none; */
font-weight: 600;
align-self: center;
font-size: larger;
}
.Hero {
height: 920px;
background: url('https://images.squarespace-cdn.com/content/v1/5eecb4c391d8d463982c2ac2/1604634449797-GP26SJMYYOJ41N356EFP/ke17ZwdGBToddI8pDm48kMFiMyT1nneRMhnmfuSfpxZ7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0mlM0or4nqX7jrn5yWu0hA1QXedaIFqnAbw_tQShHbKg4-O_KAc44ak5jGzrnn7f3A/adam8.jpg');
background-size: cover;
background-position: center;
position: relative;
}
.HeroGroup {
margin: 0 10;
max-width: 500px;
padding: 5px 5px;
text-align: left;
}
.Hero h1 {
margin: 0;
color: rgb(36, 36, 36);
font-size: 26px;
line-height: 1;
padding: 10px;
opacity: 0;
animation: HeroAnimation;
animation-duration: 3s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.Hero p {
color: rgba(0, 0, 0, 0.8);
font-size: 30px;
line-height: 1.5;
}
.Hero a {
font-size: 17px;
font-weight: 600;
color: white;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.7);
padding: 9px 20px;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 20px;
}
.Hero svg {
position: absolute;
top: 0;
left: 0;
}
.Logos {
display: grid;
grid-template-columns: repeat(6, 1fr);
margin: 50px 0;
justify-items: center;
}
.CardGroup {
margin: 50px 40px 100px;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 40px;
justify-items: center;
}
.Cards h2 {
margin: 50px 20px;
font-size: 60px;
text-align: center;
font-weight: 700;
background: linear-gradient(104deg, #050a27 0%, #4a548c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.img design {
height: 100px;
width: 100px;
}
@media (max-width: 1000px) {
.CardGroup {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 720px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
.HeroGroup {
padding: 100px 20px;
}
.Hero h1 {
font-size: 40px;
}
.Hero p {
font-size: 24px;
}
.CardGroup {
grid-template-columns: repeat(1, 1fr);
}
}
@media (max-width: 375px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
.HeroGroup {
padding: 100px 20px;
height: 400px;
}
.Hero {
height: 400px;
background-size: 140%;
background-repeat: no-repeat;
}
.Hero h1 {
font-size: 20px;
}
.Hero p {
font-size: 24px;
}
.CardGroup {
grid-template-columns: repeat(1, auto);
justify-content: center;
}
.Cards {
display: grid;
grid-template-columns: auto;
justify-content: center;
align-items: center;
width: 375px;
}
.CV img {
width: 375px;
}
}
@keyframes HeroAnimation {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
} | src/layouts/index.css | @import url('https://use.typekit.net/iis5ems.css');
html,
body {
font-family: anisette-std, sans-serif;
font-weight: 400;
font-style: normal;
margin: 0;
font-size: 20px;
-webkit-font-smoothing: antialiased;
line-height: 1.3;
}
a {
color: black;
/* text-decoration: none; */
font-weight: 600;
align-self: center;
font-size: larger;
}
.Hero {
height: 920px;
background: url('https://images.squarespace-cdn.com/content/v1/5eecb4c391d8d463982c2ac2/1604634449797-GP26SJMYYOJ41N356EFP/ke17ZwdGBToddI8pDm48kMFiMyT1nneRMhnmfuSfpxZ7gQa3H78H3Y0txjaiv_0fDoOvxcdMmMKkDsyUqMSsMWxHk725yiiHCCLfrh8O1z4YTzHvnKhyp6Da-NYroOW3ZGjoBKy3azqku80C789l0mlM0or4nqX7jrn5yWu0hA1QXedaIFqnAbw_tQShHbKg4-O_KAc44ak5jGzrnn7f3A/adam8.jpg');
background-size: cover;
background-position: center;
position: relative;
}
.HeroGroup {
margin: 0 10;
max-width: 500px;
padding: 5px 5px;
text-align: left;
}
.Hero h1 {
margin: 0;
color: rgb(36, 36, 36);
font-size: 26px;
line-height: 1;
padding: 10px;
opacity: 0;
animation: HeroAnimation;
animation-duration: 3s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}
.Hero p {
color: rgba(0, 0, 0, 0.8);
font-size: 30px;
line-height: 1.5;
}
.Hero a {
font-size: 17px;
font-weight: 600;
color: white;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.7);
padding: 9px 20px;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 20px;
}
.Hero svg {
position: absolute;
top: 0;
left: 0;
}
.Logos {
display: grid;
grid-template-columns: repeat(6, 1fr);
margin: 50px 0;
justify-items: center;
}
.CardGroup {
margin: 50px 40px 100px;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 40px;
justify-items: center;
}
.Cards h2 {
margin: 50px 20px;
font-size: 60px;
text-align: center;
font-weight: 700;
background: linear-gradient(104deg, #050a27 0%, #4a548c 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.img design {
height: 100px;
width: 100px;
}
@media (max-width: 1000px) {
.CardGroup {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 720px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
.HeroGroup {
padding: 100px 20px;
}
.Hero h1 {
font-size: 40px;
}
.Hero p {
font-size: 24px;
}
.CardGroup {
grid-template-columns: repeat(1, 1fr);
}
}
@media (max-width: 375px) {
.Hero .Logos {
grid-template-columns: repeat(3, 1fr);
}
.HeroGroup {
padding: 100px 20px;
height: 400px;
}
.Hero {
height: 400px;
background-size: 140%;
background-repeat: no-repeat;
}
.Hero h1 {
font-size: 20px;
}
.Hero p {
font-size: 24px;
}
.CardGroup {
grid-template-columns: repeat(1, auto);
justify-content: center;
}
.Cards {
display: grid;
grid-template-columns: auto;
justify-content: center;
align-items: center;
width: 375px;
}
.CV img {
width: 375px;
}
}
@keyframes HeroAnimation {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
} | 0.422743 | 0.114023 |
@charset "UTF-8";
body {
font-family: "\30D2\30E9\30AE\30CE\89D2\30B4 Pro W3", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", Meiryo, Osaka, "\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
color: #000;
position: center;
background-color: #EEEEEE;
}
h1 h2 h3 h4 {
font-size: 8px;
}
.gnav__menu {
display: flex;
}
.gnav__menu__item {
margin-left: 20px;
}
.gnav__menu__item a {
color: #fff;
text-decoration: none;
}
.top {
position: relative;
width: 100%;
margin-top: 5%;
height: auto;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/1_s.png");
}
.top::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.top p {
position: absolute;
top: 55%;
left: 30%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin: 0;
padding: 0;
font-size: 30px;
font-style: italic;
font-weight: bold;
color: white;
}
.how {
position: relative;
background-color: #6c272d;
width: 50%;
height: 600px;
display: block;
color: white;
}
.how dt {
position: absolute;
top: 40%;
left: 40%;
}
.how dd {
position: absolute;
top: 55%;
left: 45%;
}
.how p {
text-align: center;
}
.search {
position: relative;
background-color: #000080;
width: 50%;
height: 600px;
display: block;
color: white;
}
.search dt {
position: absolute;
top: 40%;
left: 33%;
}
.search dd {
position: absolute;
top: 50%;
left: 45%;
}
.search p {
text-align: center;
}
.nami {
text-align: center;
position: relative;
width: 100%;
height: auto;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/4_s.png");
}
.nami::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
}
.nami p {
position: absolute;
top: 45%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin: 0;
padding: 0;
font-size: 20px;
font-style: italic;
font-weight: bold;
color: white;
}
.nami a {
position: absolute;
top: 55%;
left: 47%;
}
.btn-flat-border {
display: inline-block;
padding: 0.3em 1em;
text-decoration: none;
color: #F5F5F5;
border: solid 2px #F5F5F5;
border-radius: 3px;
transition: 0.4s;
}
.btn-flat-border:hover {
background: #F5F5F5;
color: black;
}
footer {
text-align: center;
}
.movie {
position: relative;
width: 100%;
padding-top: 56.25%;
}
.movie iframe {
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}
.footer-line {
width: 100%;
}
.how-head {
text-align: center;
margin-top: 10%;
margin-left: 30%;
}
.item-title, .rule {
font-size: 20px;
margin-top: 20%;
margin-bottom: 5%;
margin-left: 43%;
}
.item1 {
position: relative;
background-color: #A9A9A9;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item1 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item1 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item2 {
position: relative;
background-color: #708090;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item2 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item2 dd {
position: absolute;
top: 45%;
left: 20%;
}
.item3 {
position: relative;
background-color: #4682B4;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item3 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 38%;
}
.item3 dd {
position: absolute;
top: 45%;
left: 10%;
}
.item4 {
position: relative;
background-color: #4169E1;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item4 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item4 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item5 {
position: relative;
background-color: #1E90FF;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item5 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item5 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item6 {
position: relative;
background-color: #6A5ACD;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item6 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 35%;
}
.item6 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.contaier {
display: grid;
grid-template: 30px 30px 30px 30px 30px/50px 50px 50px 50px 50px;
}
.rule-item {
width: 100%;
height: 900px;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/13_s.jpg");
}
.rule1 dt {
font-size: 20px;
padding-top: 50px;
}
.rule1 dt, dd {
color: white;
padding-left: 50px;
}
.rule2 dt {
font-size: 20px;
padding-top: 50px;
}
.rule2 dt, dd {
color: white;
padding-left: 50px;
}
.rule3 dt {
font-size: 20px;
padding-top: 50px;
}
.rule3 dt, dd {
color: white;
padding-left: 50px;
}
.rule4 dt {
font-size: 20px;
padding-top: 50px;
}
.rule4 dt, dd {
color: white;
padding-left: 50px;
}
.rule5 dt {
font-size: 20px;
padding-top: 50px;
}
.rule5 dt, dd {
color: white;
padding-left: 50px;
}
.reference {
font-size: 20px;
margin-top: 10%;
margin-bottom: 5%;
margin-left: 47%;
}
.reference1 {
position: relative;
background-color: #DEB887;
width: 50%;
height: 600px;
display: block;
color: white;
}
.reference1 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.reference1 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.reference2 {
position: relative;
background-color: #F4A460;
width: 50%;
height: 600px;
display: block;
color: white;
}
.reference2 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 38%;
}
.reference2 dd {
position: absolute;
width: 500px;
top: 45%;
left: 20%;
}
.nami-head {
text-align: center;
margin-top: 10%;
margin-bottom: 20%;
margin-left: auto;
margin-right: auto;
}
.zyouhou1 {
position: relative;
background-color: #008B8B;
width: 50%;
height: 600px;
display: block;
color: white;
}
.zyouhou1 dt {
position: absolute;
top: 30%;
left: 35%;
}
.zyouhou1 dd {
position: absolute;
top: 40%;
left: 15%;
}
.zyouhou2 {
position: relative;
background-color: #D2691E;
width: 50%;
height: 600px;
display: block;
color: white;
}
.zyouhou2 dt {
position: absolute;
top: 30%;
left: 38%;
}
.zyouhou2 dd {
position: absolute;
top: 40%;
left: 15%;
}
.search-head {
text-align: center;
margin-top: 10%;
margin-bottom: 20%;
}
.paginate {
text-align: center;
margin: 5% auto;
}
.btn-default {
border: 1px solid;
} | public/css/admin.css | @charset "UTF-8";
body {
font-family: "\30D2\30E9\30AE\30CE\89D2\30B4 Pro W3", "Hiragino Kaku Gothic Pro", "\30E1\30A4\30EA\30AA", Meiryo, Osaka, "\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF", "MS PGothic", sans-serif;
color: #000;
position: center;
background-color: #EEEEEE;
}
h1 h2 h3 h4 {
font-size: 8px;
}
.gnav__menu {
display: flex;
}
.gnav__menu__item {
margin-left: 20px;
}
.gnav__menu__item a {
color: #fff;
text-decoration: none;
}
.top {
position: relative;
width: 100%;
margin-top: 5%;
height: auto;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/1_s.png");
}
.top::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.top p {
position: absolute;
top: 55%;
left: 30%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin: 0;
padding: 0;
font-size: 30px;
font-style: italic;
font-weight: bold;
color: white;
}
.how {
position: relative;
background-color: #6c272d;
width: 50%;
height: 600px;
display: block;
color: white;
}
.how dt {
position: absolute;
top: 40%;
left: 40%;
}
.how dd {
position: absolute;
top: 55%;
left: 45%;
}
.how p {
text-align: center;
}
.search {
position: relative;
background-color: #000080;
width: 50%;
height: 600px;
display: block;
color: white;
}
.search dt {
position: absolute;
top: 40%;
left: 33%;
}
.search dd {
position: absolute;
top: 50%;
left: 45%;
}
.search p {
text-align: center;
}
.nami {
text-align: center;
position: relative;
width: 100%;
height: auto;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/4_s.png");
}
.nami::before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0, 0, 0, 0.3);
}
.nami p {
position: absolute;
top: 45%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
margin: 0;
padding: 0;
font-size: 20px;
font-style: italic;
font-weight: bold;
color: white;
}
.nami a {
position: absolute;
top: 55%;
left: 47%;
}
.btn-flat-border {
display: inline-block;
padding: 0.3em 1em;
text-decoration: none;
color: #F5F5F5;
border: solid 2px #F5F5F5;
border-radius: 3px;
transition: 0.4s;
}
.btn-flat-border:hover {
background: #F5F5F5;
color: black;
}
footer {
text-align: center;
}
.movie {
position: relative;
width: 100%;
padding-top: 56.25%;
}
.movie iframe {
position: absolute;
top: 0;
right: 0;
width: 100% !important;
height: 100% !important;
}
.footer-line {
width: 100%;
}
.how-head {
text-align: center;
margin-top: 10%;
margin-left: 30%;
}
.item-title, .rule {
font-size: 20px;
margin-top: 20%;
margin-bottom: 5%;
margin-left: 43%;
}
.item1 {
position: relative;
background-color: #A9A9A9;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item1 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item1 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item2 {
position: relative;
background-color: #708090;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item2 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item2 dd {
position: absolute;
top: 45%;
left: 20%;
}
.item3 {
position: relative;
background-color: #4682B4;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item3 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 38%;
}
.item3 dd {
position: absolute;
top: 45%;
left: 10%;
}
.item4 {
position: relative;
background-color: #4169E1;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item4 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item4 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item5 {
position: relative;
background-color: #1E90FF;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item5 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.item5 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.item6 {
position: relative;
background-color: #6A5ACD;
width: 50%;
height: 600px;
display: block;
color: white;
}
.item6 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 35%;
}
.item6 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.contaier {
display: grid;
grid-template: 30px 30px 30px 30px 30px/50px 50px 50px 50px 50px;
}
.rule-item {
width: 100%;
height: 900px;
min-height: 100vh;
background-size: cover;
background-position: center center;
background-image: url("../images/13_s.jpg");
}
.rule1 dt {
font-size: 20px;
padding-top: 50px;
}
.rule1 dt, dd {
color: white;
padding-left: 50px;
}
.rule2 dt {
font-size: 20px;
padding-top: 50px;
}
.rule2 dt, dd {
color: white;
padding-left: 50px;
}
.rule3 dt {
font-size: 20px;
padding-top: 50px;
}
.rule3 dt, dd {
color: white;
padding-left: 50px;
}
.rule4 dt {
font-size: 20px;
padding-top: 50px;
}
.rule4 dt, dd {
color: white;
padding-left: 50px;
}
.rule5 dt {
font-size: 20px;
padding-top: 50px;
}
.rule5 dt, dd {
color: white;
padding-left: 50px;
}
.reference {
font-size: 20px;
margin-top: 10%;
margin-bottom: 5%;
margin-left: 47%;
}
.reference1 {
position: relative;
background-color: #DEB887;
width: 50%;
height: 600px;
display: block;
color: white;
}
.reference1 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 40%;
}
.reference1 dd {
position: absolute;
width: 500px;
top: 45%;
left: 10%;
}
.reference2 {
position: relative;
background-color: #F4A460;
width: 50%;
height: 600px;
display: block;
color: white;
}
.reference2 dt {
position: absolute;
font-size: 20px;
top: 30%;
left: 38%;
}
.reference2 dd {
position: absolute;
width: 500px;
top: 45%;
left: 20%;
}
.nami-head {
text-align: center;
margin-top: 10%;
margin-bottom: 20%;
margin-left: auto;
margin-right: auto;
}
.zyouhou1 {
position: relative;
background-color: #008B8B;
width: 50%;
height: 600px;
display: block;
color: white;
}
.zyouhou1 dt {
position: absolute;
top: 30%;
left: 35%;
}
.zyouhou1 dd {
position: absolute;
top: 40%;
left: 15%;
}
.zyouhou2 {
position: relative;
background-color: #D2691E;
width: 50%;
height: 600px;
display: block;
color: white;
}
.zyouhou2 dt {
position: absolute;
top: 30%;
left: 38%;
}
.zyouhou2 dd {
position: absolute;
top: 40%;
left: 15%;
}
.search-head {
text-align: center;
margin-top: 10%;
margin-bottom: 20%;
}
.paginate {
text-align: center;
margin: 5% auto;
}
.btn-default {
border: 1px solid;
} | 0.441432 | 0.088269 |
.container {
max-width: 1580px;
padding-left: 15px;
padding-right: 15px; }
svg {
width: 11px;
vertical-align: -1px; }
.work-link {
padding: 120px 24px; }
.work-link a {
padding-bottom: 3px;
margin-right: 10px;
margin-bottom: 1.45rem;
font-size: 20px;
line-height: 22px;
font-family: "Gotham Bold";
text-decoration: none;
color: #FFCC04; }
.work-link a:after {
content: "";
display: block;
margin: auto;
height: 1px;
width: 0;
background: transparent;
transition: width .25s ease,background-color .25s ease; }
.work-link a:hover {
text-decoration: none;
color: #FFCC04; }
.work-link a:hover:after {
width: 100%;
background: #ffcc04; }
.work-link .next-work svg {
color: #FFCC04; }
.work-content {
padding: 30px 0;
margin-bottom: 100px;
margin-top: 80px; }
.work-content p {
font-size: 20px;
line-height: 32px;
margin-bottom: 30px;
color: #FFFFFF;
font-family: 'Gotham Regular'; }
.work-content .content-center {
display: flex;
align-items: center; }
.work-content .row {
margin-bottom: 50px; }
.work-content .row:last-child {
margin-bottom: 0; }
.work-slider {
padding: 30px 24px; }
.work-slider .loading::after {
display: none; }
.work-slider .owl-theme .owl-controls {
margin-top: 0;
text-align: center; }
.work-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
padding: 6px 24px;
background: transparent;
opacity: 1; }
.work-slider .owl-theme .owl-controls .owl-buttons .owl-next {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
padding: 6px 24px;
background: transparent;
opacity: 1; }
.work-slider .owl-theme .owl-controls .owl-buttons svg {
width: 35px;
color: #FFFFFF; }
.work-slider .owl-theme .owl-pagination {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%); }
.work-slider .owl-theme .owl-pagination .owl-page {
margin-bottom: 0.725rem; }
.work-slider .owl-theme .owl-pagination .owl-page span {
width: 6px;
height: 6px;
background: #000;
opacity: 0.5;
line-height: 32px;
margin: 23px 10px; }
.outer-grid {
display: grid;
grid-template-columns: [viewport-start] minmax(0, 1fr) [container-start] minmax(100px, 1600px) [container-end] minmax(0, 1fr) [viewport-end]; }
.outer-grid .full {
height: 100vh;
width: 100%;
overflow: hidden;
background: #1d1d1d;
grid-column: viewport;
display: inherit;
position: relative; }
.outer-grid .full .bg {
grid-column: viewport;
overflow: hidden; }
.outer-grid .full .bg img {
width: 100%;
height: 100%;
object-position: 50% 50%;
object-fit: cover; }
.outer-grid .full .banner-overlay {
grid-column: viewport;
background: rgba(0, 0, 0, 0.3);
position: absolute;
padding: 12px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; }
.outer-grid .full .banner-overlay h1 {
font-size: 100px;
line-height: 110px;
color: #FFFFFF;
margin: 0;
font-weight: 700;
font-family: 'Gotham Bold';
margin-bottom: 55px; }
.outer-grid .full .banner-overlay p {
color: #F2F2F2;
font-size: 20px;
line-height: 30px;
margin-bottom: 80px;
font-family: 'Gotham Regular'; }
.outer-grid .full .banner-overlay a {
text-decoration: none;
border: thin solid #FFCC04;
color: #FFCC04;
transition: all .5s ease;
padding: 10px 38px;
font-size: 20px;
line-height: 23px;
font-family: 'Gotham Regular'; }
.outer-grid .full .banner-overlay a:hover {
background: #FFCC04;
color: #010101;
text-decoration: none; }
.outer-grid .full .banner-scroll {
cursor: pointer;
position: absolute;
left: 50%;
bottom: 0;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%); }
.outer-grid .full .banner-scroll p {
text-align: center;
margin-bottom: 10px;
font-size: 12px;
line-height: 12px;
color: #FFFFFF;
font-family: 'Gotham Bold'; }
.outer-grid .full .banner-scroll .scroll-line {
width: 1px;
height: 4vh;
margin: auto;
position: relative;
overflow: hidden; }
.outer-grid .full .banner-scroll .scroll-line .vertical-line {
position: absolute;
width: 100%;
height: 100%;
background: grey;
border: 1px solid #FFFFFF; }
.work-info .info {
margin-top: 150px;
margin-bottom: 150px; }
.work-info .info p:first-child {
font-family: 'Gotham Light'; }
.work-info .desc {
margin-top: 150px;
margin-bottom: 150px; }
.work-info .desc p {
line-height: 30px;
font-family: 'Gotham Regular'; }
.work-info p {
font-size: 20px;
line-height: 24px;
color: #F2F2F2;
margin-bottom: 15px;
font-family: 'Gotham Medium'; }
.work-info .info-image {
padding: 30px 24px; }
.work-info .video {
padding-top: 30px;
padding-bottom: 30px; }
.work-info .video video {
width: 100%; }
/*# sourceMappingURL=work-detail.css.map */ | user/themes/quark/css-compiled/work-detail.css | .container {
max-width: 1580px;
padding-left: 15px;
padding-right: 15px; }
svg {
width: 11px;
vertical-align: -1px; }
.work-link {
padding: 120px 24px; }
.work-link a {
padding-bottom: 3px;
margin-right: 10px;
margin-bottom: 1.45rem;
font-size: 20px;
line-height: 22px;
font-family: "Gotham Bold";
text-decoration: none;
color: #FFCC04; }
.work-link a:after {
content: "";
display: block;
margin: auto;
height: 1px;
width: 0;
background: transparent;
transition: width .25s ease,background-color .25s ease; }
.work-link a:hover {
text-decoration: none;
color: #FFCC04; }
.work-link a:hover:after {
width: 100%;
background: #ffcc04; }
.work-link .next-work svg {
color: #FFCC04; }
.work-content {
padding: 30px 0;
margin-bottom: 100px;
margin-top: 80px; }
.work-content p {
font-size: 20px;
line-height: 32px;
margin-bottom: 30px;
color: #FFFFFF;
font-family: 'Gotham Regular'; }
.work-content .content-center {
display: flex;
align-items: center; }
.work-content .row {
margin-bottom: 50px; }
.work-content .row:last-child {
margin-bottom: 0; }
.work-slider {
padding: 30px 24px; }
.work-slider .loading::after {
display: none; }
.work-slider .owl-theme .owl-controls {
margin-top: 0;
text-align: center; }
.work-slider .owl-theme .owl-controls .owl-buttons .owl-prev {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
padding: 6px 24px;
background: transparent;
opacity: 1; }
.work-slider .owl-theme .owl-controls .owl-buttons .owl-next {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
padding: 6px 24px;
background: transparent;
opacity: 1; }
.work-slider .owl-theme .owl-controls .owl-buttons svg {
width: 35px;
color: #FFFFFF; }
.work-slider .owl-theme .owl-pagination {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%); }
.work-slider .owl-theme .owl-pagination .owl-page {
margin-bottom: 0.725rem; }
.work-slider .owl-theme .owl-pagination .owl-page span {
width: 6px;
height: 6px;
background: #000;
opacity: 0.5;
line-height: 32px;
margin: 23px 10px; }
.outer-grid {
display: grid;
grid-template-columns: [viewport-start] minmax(0, 1fr) [container-start] minmax(100px, 1600px) [container-end] minmax(0, 1fr) [viewport-end]; }
.outer-grid .full {
height: 100vh;
width: 100%;
overflow: hidden;
background: #1d1d1d;
grid-column: viewport;
display: inherit;
position: relative; }
.outer-grid .full .bg {
grid-column: viewport;
overflow: hidden; }
.outer-grid .full .bg img {
width: 100%;
height: 100%;
object-position: 50% 50%;
object-fit: cover; }
.outer-grid .full .banner-overlay {
grid-column: viewport;
background: rgba(0, 0, 0, 0.3);
position: absolute;
padding: 12px;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; }
.outer-grid .full .banner-overlay h1 {
font-size: 100px;
line-height: 110px;
color: #FFFFFF;
margin: 0;
font-weight: 700;
font-family: 'Gotham Bold';
margin-bottom: 55px; }
.outer-grid .full .banner-overlay p {
color: #F2F2F2;
font-size: 20px;
line-height: 30px;
margin-bottom: 80px;
font-family: 'Gotham Regular'; }
.outer-grid .full .banner-overlay a {
text-decoration: none;
border: thin solid #FFCC04;
color: #FFCC04;
transition: all .5s ease;
padding: 10px 38px;
font-size: 20px;
line-height: 23px;
font-family: 'Gotham Regular'; }
.outer-grid .full .banner-overlay a:hover {
background: #FFCC04;
color: #010101;
text-decoration: none; }
.outer-grid .full .banner-scroll {
cursor: pointer;
position: absolute;
left: 50%;
bottom: 0;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%); }
.outer-grid .full .banner-scroll p {
text-align: center;
margin-bottom: 10px;
font-size: 12px;
line-height: 12px;
color: #FFFFFF;
font-family: 'Gotham Bold'; }
.outer-grid .full .banner-scroll .scroll-line {
width: 1px;
height: 4vh;
margin: auto;
position: relative;
overflow: hidden; }
.outer-grid .full .banner-scroll .scroll-line .vertical-line {
position: absolute;
width: 100%;
height: 100%;
background: grey;
border: 1px solid #FFFFFF; }
.work-info .info {
margin-top: 150px;
margin-bottom: 150px; }
.work-info .info p:first-child {
font-family: 'Gotham Light'; }
.work-info .desc {
margin-top: 150px;
margin-bottom: 150px; }
.work-info .desc p {
line-height: 30px;
font-family: 'Gotham Regular'; }
.work-info p {
font-size: 20px;
line-height: 24px;
color: #F2F2F2;
margin-bottom: 15px;
font-family: 'Gotham Medium'; }
.work-info .info-image {
padding: 30px 24px; }
.work-info .video {
padding-top: 30px;
padding-bottom: 30px; }
.work-info .video video {
width: 100%; }
/*# sourceMappingURL=work-detail.css.map */ | 0.42322 | 0.056757 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 500;
}
html {
width: 100%;
}
body {
font-family: 'Raleway', sans-serif;
/* background-color: aquamarine; */
background-color: #fff;
background-image: url(../assets/square.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: right;
height: 100%;
}
.overlay {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: -1;
}
.pls {
font-size: 0.9em;
margin-bottom: 10px;
}
select {
height: 35px;
outline: none;
border: 1px solid #ddd;
border-radius: 5px;
}
main {
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
.all {
/* box-shadow: 0 5px 20px -10px #000; */
height: 100%;
display: flex;
justify-content: space-between;
/* flex-direction: column-reverse;
justify-content: flex-start;
align-items: flex-start; */
overflow: hidden;
/* max-width: 700px; */
/* background-color: #fff; */
/* border-radius: 8px; */
}
.all .logo {
height: 50px;
display: flex;
justify-content: flex-start;
margin-bottom: 20px;
}
.all img {
height: 100%;
margin-left: -20px;
}
.all .text {
margin-bottom: 30px;
color: #fff;
margin-left: 10px;
}
.all .text h1 {
/* font-size: 22px; */
}
.all .text p {
font-size: 0.9em;
width: 80%;
}
.wrapper {
padding: 1rem;
width: 100%;
/* max-width: 700px; */
max-width: 600px;
width: 100%;
/* height: 100%; */
border-radius: 8px;
background-color: #fff;
}
.form-wrapper form {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.form-wrapper .person {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.form-wrapper input {
padding-right: 20px;
padding-left: 10px;
width: 45%;
height: 35px;
outline: none;
border: none;
border-bottom: 1px solid #ddd;
}
.gender {
width: 45%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.gender p {
font-size: 0.8em;
margin-top: 5px;
margin-bottom: 2px;
width: 100%;
}
.gender input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
input.ref {
width: 100%;
margin-top: 10px;
}
.form-wrapper .address {
width: 100%;
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.address h3 {
width: 100%;
font-size: 15px;
margin-bottom: 4px;
}
.address select {
display: inline-block;
width: 45%;
}
.address textarea {
padding: 1rem;
outline: none;
border: 1px solid #ddd;
width: 100%;
resize: none;
height: 70px;
margin-top: 10px;
}
.crops {
width: 100%;
margin-top: 30px;
}
.crops div {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
/* border: 1px solid gold; */
width: 100%;
margin-top: 15px;
}
.crops p {
width: 100%;
margin-bottom: 8px;
text-decoration: underline;
font-weight: bold;
/* color: #02a653; */
}
.crops label {
/* display: inline-flex; */
/* width: 25%; */
margin-right: 5px;
width: 130px;
margin-top: 8px;
/* border: 1px solid red; */
}
.crops input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
.farmsize {
width: 100%;
margin-top: 12px;
margin-bottom: 15px;
/* border: 1px solid rebeccapurple; */
}
.farmsize select {
width: 100%;
max-width: 300px;
}
.smartph {
/* border: 1px solid greenyellow; */
width: 100%;
display: flex;
flex-wrap: wrap;
margin-bottom: 15px;
}
.smartph p {
width: 100%;
}
.smartph label {
margin-right: 15px;
}
.smartph input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0px;
}
.managed {
margin-bottom: 15px;
}
.managed label {
margin-right: 15px;
}
.managed input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
.accept {
display: flex;
align-items: baseline;
}
.accept p {
line-height: 1.4;
}
.accept a {
text-decoration: none;
cursor: pointer;
color: darkgreen;
}
.accept a:hover {
text-decoration: underline;
}
.accept input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
margin-right: 10px;
}
input[type='submit'] {
margin-top: 20px;
border: none;
background-image: linear-gradient(to right, green, #00a652, green);
background-size: 300%;
background-position: right;
color: white;
font-weight: 700;
max-width: 130px;
font-size: 16px;
margin-right: auto;
transition: background-position 1s;
margin-bottom: 20px;
cursor: pointer;
}
input[type='submit']:hover,
input[type='submit']:active {
background-position: left;
box-shadow: 0 3px 8px -4px #00a652;
transform: scale(0.9);
}
div.image {
background-image: url(../assets/square.jpg);
flex-grow: 1;
overflow: hidden;
/* width: 250px; */
/* background-color: rebeccapurple; */
min-height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.success {
background-color: #fff;
font-size: 0.85em;
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
padding: 10px 1rem;
border-radius: 5px;
max-width: 650px;
box-shadow: 0 5px 15px -5px #ccc;
}
.success .logo {
height: 60px;
}
.success .logo img {
height: 100%;
}
.success i.far {
/* font-size: 40px; */
display: block;
width: 100%;
color: #02a653;
}
.success h2 {
color: #02a653;
margin-bottom: 8px;
}
.success p {
margin-bottom: 10px;
}
.success h2,
.success p {
width: 100%;
line-height: 1.4;
}
@media screen and (max-width: 800px) {
.all {
/* box-shadow: 0 5px 20px -10px #000; */
height: 100%;
display: flex;
flex-direction: column-reverse;
justify-content: flex-start;
align-items: flex-start;
overflow: hidden;
/* max-width: 700px; */
/* background-color: #fff; */
/* border-radius: 8px; */
}
}
@media screen and (max-width: 500px) {
.form-wrapper .person input {
padding-right: 20px;
padding-left: 10px;
width: 100%;
height: 35px;
outline: none;
border: none;
border-bottom: 1px solid #ddd;
}
.gender {
margin-top: 10px;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.gender p {
font-size: 0.8em;
margin-top: 5px;
width: 100%;
text-align: center;
}
.gender input {
height: 0.9em !important;
width: auto;
padding-left: 0;
padding-right: 0;
}
}
@media screen and (max-width: 36em) {
.all .text h1{
font-size: 32px;
}
} | public/reg-farmers/css/farmersReg.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 500;
}
html {
width: 100%;
}
body {
font-family: 'Raleway', sans-serif;
/* background-color: aquamarine; */
background-color: #fff;
background-image: url(../assets/square.jpg);
background-size: cover;
background-repeat: no-repeat;
background-position: right;
height: 100%;
}
.overlay {
width: 100%;
height: 100%;
position: fixed;
left: 0;
top: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: -1;
}
.pls {
font-size: 0.9em;
margin-bottom: 10px;
}
select {
height: 35px;
outline: none;
border: 1px solid #ddd;
border-radius: 5px;
}
main {
padding-left: 1rem;
padding-right: 1rem;
padding-top: 1rem;
padding-bottom: 1rem;
}
.all {
/* box-shadow: 0 5px 20px -10px #000; */
height: 100%;
display: flex;
justify-content: space-between;
/* flex-direction: column-reverse;
justify-content: flex-start;
align-items: flex-start; */
overflow: hidden;
/* max-width: 700px; */
/* background-color: #fff; */
/* border-radius: 8px; */
}
.all .logo {
height: 50px;
display: flex;
justify-content: flex-start;
margin-bottom: 20px;
}
.all img {
height: 100%;
margin-left: -20px;
}
.all .text {
margin-bottom: 30px;
color: #fff;
margin-left: 10px;
}
.all .text h1 {
/* font-size: 22px; */
}
.all .text p {
font-size: 0.9em;
width: 80%;
}
.wrapper {
padding: 1rem;
width: 100%;
/* max-width: 700px; */
max-width: 600px;
width: 100%;
/* height: 100%; */
border-radius: 8px;
background-color: #fff;
}
.form-wrapper form {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.form-wrapper .person {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.form-wrapper input {
padding-right: 20px;
padding-left: 10px;
width: 45%;
height: 35px;
outline: none;
border: none;
border-bottom: 1px solid #ddd;
}
.gender {
width: 45%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.gender p {
font-size: 0.8em;
margin-top: 5px;
margin-bottom: 2px;
width: 100%;
}
.gender input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
input.ref {
width: 100%;
margin-top: 10px;
}
.form-wrapper .address {
width: 100%;
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.address h3 {
width: 100%;
font-size: 15px;
margin-bottom: 4px;
}
.address select {
display: inline-block;
width: 45%;
}
.address textarea {
padding: 1rem;
outline: none;
border: 1px solid #ddd;
width: 100%;
resize: none;
height: 70px;
margin-top: 10px;
}
.crops {
width: 100%;
margin-top: 30px;
}
.crops div {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
/* border: 1px solid gold; */
width: 100%;
margin-top: 15px;
}
.crops p {
width: 100%;
margin-bottom: 8px;
text-decoration: underline;
font-weight: bold;
/* color: #02a653; */
}
.crops label {
/* display: inline-flex; */
/* width: 25%; */
margin-right: 5px;
width: 130px;
margin-top: 8px;
/* border: 1px solid red; */
}
.crops input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
.farmsize {
width: 100%;
margin-top: 12px;
margin-bottom: 15px;
/* border: 1px solid rebeccapurple; */
}
.farmsize select {
width: 100%;
max-width: 300px;
}
.smartph {
/* border: 1px solid greenyellow; */
width: 100%;
display: flex;
flex-wrap: wrap;
margin-bottom: 15px;
}
.smartph p {
width: 100%;
}
.smartph label {
margin-right: 15px;
}
.smartph input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0px;
}
.managed {
margin-bottom: 15px;
}
.managed label {
margin-right: 15px;
}
.managed input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
}
.accept {
display: flex;
align-items: baseline;
}
.accept p {
line-height: 1.4;
}
.accept a {
text-decoration: none;
cursor: pointer;
color: darkgreen;
}
.accept a:hover {
text-decoration: underline;
}
.accept input {
height: 0.9em;
width: auto;
padding-left: 0;
padding-right: 0;
margin-right: 10px;
}
input[type='submit'] {
margin-top: 20px;
border: none;
background-image: linear-gradient(to right, green, #00a652, green);
background-size: 300%;
background-position: right;
color: white;
font-weight: 700;
max-width: 130px;
font-size: 16px;
margin-right: auto;
transition: background-position 1s;
margin-bottom: 20px;
cursor: pointer;
}
input[type='submit']:hover,
input[type='submit']:active {
background-position: left;
box-shadow: 0 3px 8px -4px #00a652;
transform: scale(0.9);
}
div.image {
background-image: url(../assets/square.jpg);
flex-grow: 1;
overflow: hidden;
/* width: 250px; */
/* background-color: rebeccapurple; */
min-height: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.success {
background-color: #fff;
font-size: 0.85em;
display: flex;
flex-wrap: wrap;
justify-content: center;
text-align: center;
padding: 10px 1rem;
border-radius: 5px;
max-width: 650px;
box-shadow: 0 5px 15px -5px #ccc;
}
.success .logo {
height: 60px;
}
.success .logo img {
height: 100%;
}
.success i.far {
/* font-size: 40px; */
display: block;
width: 100%;
color: #02a653;
}
.success h2 {
color: #02a653;
margin-bottom: 8px;
}
.success p {
margin-bottom: 10px;
}
.success h2,
.success p {
width: 100%;
line-height: 1.4;
}
@media screen and (max-width: 800px) {
.all {
/* box-shadow: 0 5px 20px -10px #000; */
height: 100%;
display: flex;
flex-direction: column-reverse;
justify-content: flex-start;
align-items: flex-start;
overflow: hidden;
/* max-width: 700px; */
/* background-color: #fff; */
/* border-radius: 8px; */
}
}
@media screen and (max-width: 500px) {
.form-wrapper .person input {
padding-right: 20px;
padding-left: 10px;
width: 100%;
height: 35px;
outline: none;
border: none;
border-bottom: 1px solid #ddd;
}
.gender {
margin-top: 10px;
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.gender p {
font-size: 0.8em;
margin-top: 5px;
width: 100%;
text-align: center;
}
.gender input {
height: 0.9em !important;
width: auto;
padding-left: 0;
padding-right: 0;
}
}
@media screen and (max-width: 36em) {
.all .text h1{
font-size: 32px;
}
} | 0.496338 | 0.099121 |
@font-face {
font-family: 'Roboto';
src: url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Light';
src: url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Light';
src: url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
} | bitrix/modules/ui/install/js/ui/fonts/roboto/ui.font.roboto.css | @font-face {
font-family: 'Roboto';
src: url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto';
src: url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Bold';
src: url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Light';
src: url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Light';
src: url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-lightitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-medium-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto-Medium';
src: url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.eot');
src: url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.eot?#iefix') format('embedded-opentype'),
url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.woff2') format('woff2'),
url('/bitrix/js/ui/fonts/roboto/roboto-mediumitalic-webfont.woff') format('woff');
font-weight: normal;
font-style: italic;
} | 0.231093 | 0.035244 |
.timeline {
padding: 32px 0;
}
.periods, .periods__list {
display: flex;
flex-direction: column;
align-items: center;
width: 100%
}
.periods__item {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
width: 90%;
padding-top: 16px;
padding-bottom: 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.periods__item:nth-child(2) {
border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.item__data {
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
width: 70%;
font-size: 24px;
}
.data__icon {
width: 24px;
height: 24px;
}
.data__time {
width: 65px;
text-align: center;
}
.data__time input {
display: none;
width: 65px;
height: 20px;
font-size: 14px;
font-weight: bold;
}
.item__remove-button {
display: none;
position: absolute;
top: 18px;
left: 8px;
}
.note__wrapper {
display: flex;
flex-direction: column;
text-align: center;
width: 70%;
height: 0;
}
.item__note {
display: none;
}
.periods__note {
display: none;
margin: 4px 42px;
font-size: 18px;
text-align: center;
}
.periods__add-button {
display: none;
border-radius: 50%;
width: 56px;
height: 56px;
margin: 24px 24px 0 24px;
background-color: #1976d2;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
font-size: 24px;
line-height: 56px;
text-align: center;
}
.raised-buttons__wrapper {
display: flex;
}
.periods__raised-button {
min-width: 100px;
margin: 24px 12px 0 12px;
padding: 14px 16px;
border-radius: 2px;
background-color: #1976d2;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
text-align: center;
font-size: 18px;
cursor: pointer;
}
.raised-button--red {
background-color: #f44336;
}
.buttons-editing {
display: none;
}
.dummy {
display: none;
} | styles/weekday.css | .timeline {
padding: 32px 0;
}
.periods, .periods__list {
display: flex;
flex-direction: column;
align-items: center;
width: 100%
}
.periods__item {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
width: 90%;
padding-top: 16px;
padding-bottom: 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.periods__item:nth-child(2) {
border-top: 1px solid rgba(255, 255, 255, 0.20);
}
.item__data {
display: flex;
justify-content: space-around;
align-items: center;
margin: 0 auto;
width: 70%;
font-size: 24px;
}
.data__icon {
width: 24px;
height: 24px;
}
.data__time {
width: 65px;
text-align: center;
}
.data__time input {
display: none;
width: 65px;
height: 20px;
font-size: 14px;
font-weight: bold;
}
.item__remove-button {
display: none;
position: absolute;
top: 18px;
left: 8px;
}
.note__wrapper {
display: flex;
flex-direction: column;
text-align: center;
width: 70%;
height: 0;
}
.item__note {
display: none;
}
.periods__note {
display: none;
margin: 4px 42px;
font-size: 18px;
text-align: center;
}
.periods__add-button {
display: none;
border-radius: 50%;
width: 56px;
height: 56px;
margin: 24px 24px 0 24px;
background-color: #1976d2;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
font-size: 24px;
line-height: 56px;
text-align: center;
}
.raised-buttons__wrapper {
display: flex;
}
.periods__raised-button {
min-width: 100px;
margin: 24px 12px 0 12px;
padding: 14px 16px;
border-radius: 2px;
background-color: #1976d2;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
text-align: center;
font-size: 18px;
cursor: pointer;
}
.raised-button--red {
background-color: #f44336;
}
.buttons-editing {
display: none;
}
.dummy {
display: none;
} | 0.604399 | 0.192653 |
.section{
width:100%;
height: 680px;
}
.section .left{
width: 420px;
height:100%;
}
h1{
width: 100%;
font-size: 1.5em;
letter-spacing: 0.88em;
}
.left form{
padding-top: 30px;
}
.left p {
font-size: 0.88em;
height: 55px;
margin-bottom: 10px;
}
.left p span{
height: 45px;
width: 90px;
display: inline-block;
}
.left form input{
width: 290px;
height: 30px;
border: #D6E2E6 2px solid !important;
padding: 5px 15px;
}
.left form .shortIn{
width: 80px;
padding: 3px 10px;
}
.left form img{
margin:0 15px 0 15px;
}
.section a:hover{
background-color: #96ADB5;
}
.left form button{
width: 140px;
height: 45px;
margin-left: 15px;
background-color: #15374A;
color: white;
border: none;
font-size: 1.1em;
cursor: pointer;
}
.left form .checkbox{
width: 19px;
height: 19px;
border: #D6E2E6 2px solid !important;
outline: none;
position: relative;
top: 5px;
margin-right: 10px;
cursor: pointer;
}
.left form .submit{
width: 422px;
color: white;
background-color: #15374A;
font-size: 1.2em;
letter-spacing: 0.5em;
cursor: pointer;
width: 100%;
height: 50px;
}
.tishi{
position: relative;
top: -25px;
}
.mimaqiangdu{
font-size: 0.8em;
}
.mimaqiangduVal{
position: relative;
top: -18px;
left: 100px;
height: 15px ;
color: red;
}
/*底色*/
.mimaqiangduImg1{
width: 111px !important;
height: 8px !important;
line-height: 6px;
background-color: #D6E2E6;
position: relative;
top: -50px;;
}
/*进度条*/
#mimaqiangduImg{
width: 0px;
height: 8px;
line-height: 6px;
background: #E88771;
position: relative;
top: -67px;
}
.section .right{
width: 730px;
height:100%;
margin-left: 50px;
}
.section .right .bg{
width: 730px;
height: 600px;
background: url("../img/regist_bg.jpg");
background-size: 730px;
}
form .s1{
width: 15px !important;
height: 15px !important;
background-color: #B14C49;
border-radius: 50%;
text-align: center;
color: white;
font-size: 0.6em;
font-weight: 100;
}
form .s2{
width: 250px;
height: 15px !important;
font-size: 0.6em;
position: relative;
top: -11px;
left: 100px;
color: #666666;
line-height: 15px;
display: none;
} | public/static/index/css/regist.css | .section{
width:100%;
height: 680px;
}
.section .left{
width: 420px;
height:100%;
}
h1{
width: 100%;
font-size: 1.5em;
letter-spacing: 0.88em;
}
.left form{
padding-top: 30px;
}
.left p {
font-size: 0.88em;
height: 55px;
margin-bottom: 10px;
}
.left p span{
height: 45px;
width: 90px;
display: inline-block;
}
.left form input{
width: 290px;
height: 30px;
border: #D6E2E6 2px solid !important;
padding: 5px 15px;
}
.left form .shortIn{
width: 80px;
padding: 3px 10px;
}
.left form img{
margin:0 15px 0 15px;
}
.section a:hover{
background-color: #96ADB5;
}
.left form button{
width: 140px;
height: 45px;
margin-left: 15px;
background-color: #15374A;
color: white;
border: none;
font-size: 1.1em;
cursor: pointer;
}
.left form .checkbox{
width: 19px;
height: 19px;
border: #D6E2E6 2px solid !important;
outline: none;
position: relative;
top: 5px;
margin-right: 10px;
cursor: pointer;
}
.left form .submit{
width: 422px;
color: white;
background-color: #15374A;
font-size: 1.2em;
letter-spacing: 0.5em;
cursor: pointer;
width: 100%;
height: 50px;
}
.tishi{
position: relative;
top: -25px;
}
.mimaqiangdu{
font-size: 0.8em;
}
.mimaqiangduVal{
position: relative;
top: -18px;
left: 100px;
height: 15px ;
color: red;
}
/*底色*/
.mimaqiangduImg1{
width: 111px !important;
height: 8px !important;
line-height: 6px;
background-color: #D6E2E6;
position: relative;
top: -50px;;
}
/*进度条*/
#mimaqiangduImg{
width: 0px;
height: 8px;
line-height: 6px;
background: #E88771;
position: relative;
top: -67px;
}
.section .right{
width: 730px;
height:100%;
margin-left: 50px;
}
.section .right .bg{
width: 730px;
height: 600px;
background: url("../img/regist_bg.jpg");
background-size: 730px;
}
form .s1{
width: 15px !important;
height: 15px !important;
background-color: #B14C49;
border-radius: 50%;
text-align: center;
color: white;
font-size: 0.6em;
font-weight: 100;
}
form .s2{
width: 250px;
height: 15px !important;
font-size: 0.6em;
position: relative;
top: -11px;
left: 100px;
color: #666666;
line-height: 15px;
display: none;
} | 0.441914 | 0.1126 |
.main {
margin: auto;
}
.ui.segment {
padding: 0px;
background-color: black;
}
.item {
list-style: none;
margin: 0 2px;
padding: 0;
display: flex;
justify-content: space-around;
}
.fullContainer {
height: 100vh;
width: 100vw;
}
.realNav {
width: 100vw;
}
.navbar {
}
nav-wrapper form, nav .nav-wrapper form input{
height: 100%;
}
.navbar {
display: inline-block;
}
.search {
float: bottom;
/* width: 80px; */
height: 20px;
background-color: white;
color:white;
}
ul {
size: 10px
}
.navHeader {
padding-left: 20px
}
navIcon {
padding-bottom: 30px
}
.navHeaderMobile {
position:relative;
display: inline-block;
margin-left: auto;
margin-right: auto;
color: yellow;
z-index: 4;
}
.yo {
padding-left: 20px
}
.oy {
padding-left: 250px;
/* position: inline-block; */
/* width: 800px */
}
.sidebar {
transition-duration: 0s;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.navbarDesktop {
/* height: 60px; */
/* margin-left: 30px; */
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.navbarMobile {
height: 50px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.chart {
height: 600px;
width: 600px;
}
@import url('https://fonts.googleapis.com/css?family=Raleway');
.center {
font-family: 'Raleway', sans-serif;
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
/* align-items: center; */
margin-top: 200px;
overflow:hidden;
}
.card {
background-color: #fff;
border-radius: 15px;
padding: 0.8rem;
}
.card > form {
display: flex;
flex-direction: column;
}
.card h1 {
text-align: center;
margin-top: 0;
margin-bottom: 10px;
}
.form-item {
font-family: 'Raleway', sans-serif;
padding: 5px;
margin-bottom: 2rem;
height: 30px;
width: 16rem;
border: 1px solid grey;
}
.form-submit{
font-family: 'Raleway', sans-serif;
height: 35px;
color: #fff;
background-color: #1abc9c;
border: none;
letter-spacing: 0.2rem;
transition: 0.3s opacity ease;
cursor: pointer;
}
.form-submit:hover{
opacity: 0.6;
}
.burger:hover{
background-color:#1b1c1d !important;
}
form a {
margin-left: 5px
}
.navItems {
padding-right:30px;
/* margin-right:40px */
}
.commentFeed {
margin-top: 20px
}
.commentBox {
margin-left: 30px
}
.pushDown {
padding-top: 50px;
}
.navbar-toggle {
border: none;
outline: none;
}
.navbar-toggle:hover,
.navbar-toggle:active,
.navbar-toggle:focus
{
background:none !important;
border-color:none !important;
}
.navToggleLeft {
float: left;
padding-left: 20px;
}
avatarIcon {
margin-left: 100px
}
smallImage {
width: 50px;
height: 50px
}
beerThumbnail {
border: 1px solid #ddd; /* Gray border */
border-radius: 4px; /* Rounded border */
padding: 5px; /* Some padding */
width: 150px; /* Set a small width */
}
beerThumbnail:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
.sign-form {
margin-bottom: 500px;
}
.navlist {
padding-right: 400px;
}
nav {
background-color:#151616;
}
.logo {
margin-left: 20px;
}
@media (min-width: 900px) {
}
.NavbarMaterial {
margin-right: 400px
}
.navbar-fixed { z-index: 999; }
@media only screen and (min-width: 900px) {
.labell {
padding-right: 30px
}
}
.image-upload > input
{
display: none;
}
.feedImage {
position: relative;
float: left;
width: 100px;
height: 100px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
.mapImage {
position: relative;
float: left;
width: 100px;
height: 100px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
} | client/dist/styles.css | .main {
margin: auto;
}
.ui.segment {
padding: 0px;
background-color: black;
}
.item {
list-style: none;
margin: 0 2px;
padding: 0;
display: flex;
justify-content: space-around;
}
.fullContainer {
height: 100vh;
width: 100vw;
}
.realNav {
width: 100vw;
}
.navbar {
}
nav-wrapper form, nav .nav-wrapper form input{
height: 100%;
}
.navbar {
display: inline-block;
}
.search {
float: bottom;
/* width: 80px; */
height: 20px;
background-color: white;
color:white;
}
ul {
size: 10px
}
.navHeader {
padding-left: 20px
}
navIcon {
padding-bottom: 30px
}
.navHeaderMobile {
position:relative;
display: inline-block;
margin-left: auto;
margin-right: auto;
color: yellow;
z-index: 4;
}
.yo {
padding-left: 20px
}
.oy {
padding-left: 250px;
/* position: inline-block; */
/* width: 800px */
}
.sidebar {
transition-duration: 0s;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.navbarDesktop {
/* height: 60px; */
/* margin-left: 30px; */
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.navbarMobile {
height: 50px;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 1.5px 5px 0 rgba(0, 0, 0, 0.19) !important;
}
.chart {
height: 600px;
width: 600px;
}
@import url('https://fonts.googleapis.com/css?family=Raleway');
.center {
font-family: 'Raleway', sans-serif;
position: absolute;
height: 100%;
width: 100%;
display: flex;
justify-content: center;
/* align-items: center; */
margin-top: 200px;
overflow:hidden;
}
.card {
background-color: #fff;
border-radius: 15px;
padding: 0.8rem;
}
.card > form {
display: flex;
flex-direction: column;
}
.card h1 {
text-align: center;
margin-top: 0;
margin-bottom: 10px;
}
.form-item {
font-family: 'Raleway', sans-serif;
padding: 5px;
margin-bottom: 2rem;
height: 30px;
width: 16rem;
border: 1px solid grey;
}
.form-submit{
font-family: 'Raleway', sans-serif;
height: 35px;
color: #fff;
background-color: #1abc9c;
border: none;
letter-spacing: 0.2rem;
transition: 0.3s opacity ease;
cursor: pointer;
}
.form-submit:hover{
opacity: 0.6;
}
.burger:hover{
background-color:#1b1c1d !important;
}
form a {
margin-left: 5px
}
.navItems {
padding-right:30px;
/* margin-right:40px */
}
.commentFeed {
margin-top: 20px
}
.commentBox {
margin-left: 30px
}
.pushDown {
padding-top: 50px;
}
.navbar-toggle {
border: none;
outline: none;
}
.navbar-toggle:hover,
.navbar-toggle:active,
.navbar-toggle:focus
{
background:none !important;
border-color:none !important;
}
.navToggleLeft {
float: left;
padding-left: 20px;
}
avatarIcon {
margin-left: 100px
}
smallImage {
width: 50px;
height: 50px
}
beerThumbnail {
border: 1px solid #ddd; /* Gray border */
border-radius: 4px; /* Rounded border */
padding: 5px; /* Some padding */
width: 150px; /* Set a small width */
}
beerThumbnail:hover {
box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}
.sign-form {
margin-bottom: 500px;
}
.navlist {
padding-right: 400px;
}
nav {
background-color:#151616;
}
.logo {
margin-left: 20px;
}
@media (min-width: 900px) {
}
.NavbarMaterial {
margin-right: 400px
}
.navbar-fixed { z-index: 999; }
@media only screen and (min-width: 900px) {
.labell {
padding-right: 30px
}
}
.image-upload > input
{
display: none;
}
.feedImage {
position: relative;
float: left;
width: 100px;
height: 100px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}
.mapImage {
position: relative;
float: left;
width: 100px;
height: 100px;
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
} | 0.497315 | 0.104569 |
.lightslist {
margin: 0;
padding: 0;
width: 100%;
}
.lightslist li {
position: absolute;
left: 50%;
width: 60px;
height: 60px;
top: 50%;
transform: translate(-50%, -50%);
z-index: 200;
list-style: none;
font-family: sans-serif;
border-radius: 50%;
text-align: center;
margin: 0 50px;
color: #000635;
animation: anime11 0.6s infinite linear;
}
@keyframes anime11 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.lightslist img {
width: 100%;
height: 100%;
}
@keyframes anime1 {
0% {
width: 30px;
height: 30px;
}
20% {
width: 50px;
height: 50px;
}
40% {
width: 60px;
height: 60px;
}
60% {
width: 90px;
height: 90px;
}
80% {
width: 60px;
height: 60px;
}
100% {
width: 20px;
height: 20px;
}
}
.lightslist li:nth-child(1) {
top: 50%;
left: 20%;
animation-delay: 0.2s;
}
.lightslist li:nth-child(2) {
top: 25%;
left: 24%;
z-index: 10;
animation-delay: 0.4s;
}
.lightslist li:nth-child(3) {
top: 16%;
left: 33%;
animation-delay: 0.6s;
}
.lightslist li:nth-child(4) {
top: 18%;
left: 59%;
animation-delay: 0.8s;
}
.lightslist li:nth-child(5) {
top: 18%;
left: 63%;
animation-delay: 0.1s;
}
.lightslist li:nth-child(6) {
top: 50%;
left: 72%;
animation-delay: 0.12s;
}
.lightslist li:nth-child(7) {
top: 60%;
left: 25%;
animation-delay: 0.14s;
}
.lightslist li:nth-child(8) {
top: 35%;
left: 27%;
animation-delay: 0.16s;
}
.lightslist li:nth-child(9) {
top: 24%;
left: 33%;
animation-delay: 0.18s;
}
.lightslist li:nth-child(10) {
top: 56%;
left: 66%;
animation-delay: 0.2s;
}
.lightslist li:nth-child(11) {
top: 33%;
left: 63%;
animation-delay: 0.22s;
}
@media screen and (max-width: 1024px) {
.lightslist li:nth-child(1) {
left: 25%;
}
.lightslist li:nth-child(2) {
left: 29%;
}
.lightslist li:nth-child(3) {
left: 35%;
top: 20%;
}
.lightslist li:nth-child(4) {
left: 55%;
top: 21%;
}
.lightslist li:nth-child(5) {
left: 60%;
top: 25%;
}
.lightslist li:nth-child(6) {
left: 66%;
top: 50%;
}
.lightslist li:nth-child(7) {
left: 30%;
}
.lightslist li:nth-child(8) {
left: 31%;
top: 37%;
}
.lightslist li:nth-child(9) {
top: 27%;
left: 36%;
}
.lightslist li:nth-child(10) {
left: 60%;
top: 56%;
}
.lightslist li:nth-child(11) {
top: 35%;
left: 58%;
}
}
@media screen and (max-width: 830px) {
.lightslist li:nth-child(1) {
left: 22%;
}
.lightslist li:nth-child(2) {
left: 26%;
}
.lightslist li:nth-child(3) {
left: 32%;
}
.lightslist li:nth-child(4) {
left: 52%;
}
.lightslist li:nth-child(5) {
left: 57%;
}
.lightslist li:nth-child(6) {
left: 63%;
}
.lightslist li:nth-child(7) {
left: 27%;
}
.lightslist li:nth-child(8) {
left: 28%;
}
.lightslist li:nth-child(9) {
left: 33%;
}
.lightslist li:nth-child(10) {
left: 57%;
}
.lightslist li:nth-child(11) {
left: 55%;
}
}
@media screen and (max-width: 670px) {
.lightslist li:nth-child(1) {
left: 20%;
}
.lightslist li:nth-child(2) {
left: 24%;
}
.lightslist li:nth-child(3) {
left: 30%;
}
.lightslist li:nth-child(6) {
left: 63%;
}
.lightslist li:nth-child(7) {
left: 24%;
}
.lightslist li:nth-child(8) {
left: 26%;
}
.lightslist li:nth-child(9) {
left: 32%;
}
.lightslist li:nth-child(10) {
left: 59%;
}
.lightslist li:nth-child(11) {
left: 57%;
}
}
@media screen and (max-width: 590px) {
.lightslist li:nth-child(1) {
left: 17%;
}
.lightslist li:nth-child(2) {
left: 22%;
}
.lightslist li:nth-child(3) {
left: 28%;
}
.lightslist li:nth-child(5) {
left: 59%;
}
.lightslist li:nth-child(6) {
left: 64%;
}
.lightslist li:nth-child(7) {
left: 24%;
}
}
@media screen and (max-width: 540px) {
.lightslist li:nth-child(1) {
left: 13%;
top: 45%;
}
.lightslist li:nth-child(2) {
left: 13%;
top: 26%;
}
.lightslist li:nth-child(3) {
left: 27%;
top: 15%;
}
.lightslist li:nth-child(4) {
left: 68%;
top: 10%;
}
.lightslist li:nth-child(5) {
left: 69%;
top: 15%;
}
.lightslist li:nth-child(6) {
left: 88%;
top: 45%;
}
.lightslist li:nth-child(7) {
left: 22%;
top: 54%;
}
.lightslist li:nth-child(8) {
left: 23%;
top: 31%;
}
.lightslist li:nth-child(9) {
left: 34%;
top: 19%;
}
.lightslist li:nth-child(10) {
left: 80%;
top: 51%;
}
.lightslist li:nth-child(11) {
left: 76%;
top: 28%;
}
}
@media screen and (max-width: 415px) {
.lightslist li:nth-child(1) {
left: 0%;
top: 50%;
}
.lightslist li:nth-child(2) {
left: 0%;
top: 24%;
}
.lightslist li:nth-child(3) {
left: 15%;
top: 14%;
}
.lightslist li:nth-child(4) {
left: 59%;
top: 13%;
}
.lightslist li:nth-child(5) {
left: 70%;
top: 20%;
}
.lightslist li:nth-child(6) {
left: 78%;
top: 50%;
}
.lightslist li:nth-child(7) {
left: 7%;
top: 59%;
}
.lightslist li:nth-child(8) {
left: 9%;
top: 34%;
}
.lightslist li:nth-child(9) {
left: 20%;
top: 20%;
}
.lightslist li:nth-child(10) {
left: 69%;
top: 56%;
}
.lightslist li:nth-child(11) {
left: 64%;
top: 31%;
}
}
@media screen and (max-width: 375px) {
.lightslist li {
animation: anime2 0.6s infinite linear;
}
.lightslist li:nth-child(1) {
left: -2%;
top: 54%;
}
.lightslist li:nth-child(2) {
left: 1%;
top: 30%;
}
.lightslist li:nth-child(3) {
top: 23%;
}
.lightslist li:nth-child(4) {
left: 59%;
top: 23%;
}
.lightslist li:nth-child(5) {
left: 70%;
top: 30%;
}
.lightslist li:nth-child(6) {
left: 76%;
top: 55%;
}
.lightslist li:nth-child(7) {
left: 5%;
top: 64%;
}
.lightslist li:nth-child(8) {
left: 8%;
top: 41%;
}
.lightslist li:nth-child(9) {
left: 19%;
top: 29%;
}
.lightslist li:nth-child(10) {
left: 67%;
top: 60%;
}
.lightslist li:nth-child(11) {
left: 64%;
top: 38%;
}
}
@keyframes anime2 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@media screen and (max-width: 360px) {
.lightslist li:nth-child(1) {
left: -4%;
top: 54%;
}
.lightslist li:nth-child(2) {
left: -1%;
top: 30%;
}
.lightslist li:nth-child(3) {
top: 23%;
}
.lightslist li:nth-child(6) {
left: 73%;
top: 52%;
}
.lightslist li:nth-child(7) {
left: 5%;
top: 61%;
}
.lightslist li:nth-child(8) {
left: 7%;
top: 40%;
}
.lightslist li:nth-child(9) {
left: 18%;
top: 28%;
}
.lightslist li:nth-child(11) {
left: 63%;
top: 37%;
}
} | css/lightslist.css | .lightslist {
margin: 0;
padding: 0;
width: 100%;
}
.lightslist li {
position: absolute;
left: 50%;
width: 60px;
height: 60px;
top: 50%;
transform: translate(-50%, -50%);
z-index: 200;
list-style: none;
font-family: sans-serif;
border-radius: 50%;
text-align: center;
margin: 0 50px;
color: #000635;
animation: anime11 0.6s infinite linear;
}
@keyframes anime11 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.lightslist img {
width: 100%;
height: 100%;
}
@keyframes anime1 {
0% {
width: 30px;
height: 30px;
}
20% {
width: 50px;
height: 50px;
}
40% {
width: 60px;
height: 60px;
}
60% {
width: 90px;
height: 90px;
}
80% {
width: 60px;
height: 60px;
}
100% {
width: 20px;
height: 20px;
}
}
.lightslist li:nth-child(1) {
top: 50%;
left: 20%;
animation-delay: 0.2s;
}
.lightslist li:nth-child(2) {
top: 25%;
left: 24%;
z-index: 10;
animation-delay: 0.4s;
}
.lightslist li:nth-child(3) {
top: 16%;
left: 33%;
animation-delay: 0.6s;
}
.lightslist li:nth-child(4) {
top: 18%;
left: 59%;
animation-delay: 0.8s;
}
.lightslist li:nth-child(5) {
top: 18%;
left: 63%;
animation-delay: 0.1s;
}
.lightslist li:nth-child(6) {
top: 50%;
left: 72%;
animation-delay: 0.12s;
}
.lightslist li:nth-child(7) {
top: 60%;
left: 25%;
animation-delay: 0.14s;
}
.lightslist li:nth-child(8) {
top: 35%;
left: 27%;
animation-delay: 0.16s;
}
.lightslist li:nth-child(9) {
top: 24%;
left: 33%;
animation-delay: 0.18s;
}
.lightslist li:nth-child(10) {
top: 56%;
left: 66%;
animation-delay: 0.2s;
}
.lightslist li:nth-child(11) {
top: 33%;
left: 63%;
animation-delay: 0.22s;
}
@media screen and (max-width: 1024px) {
.lightslist li:nth-child(1) {
left: 25%;
}
.lightslist li:nth-child(2) {
left: 29%;
}
.lightslist li:nth-child(3) {
left: 35%;
top: 20%;
}
.lightslist li:nth-child(4) {
left: 55%;
top: 21%;
}
.lightslist li:nth-child(5) {
left: 60%;
top: 25%;
}
.lightslist li:nth-child(6) {
left: 66%;
top: 50%;
}
.lightslist li:nth-child(7) {
left: 30%;
}
.lightslist li:nth-child(8) {
left: 31%;
top: 37%;
}
.lightslist li:nth-child(9) {
top: 27%;
left: 36%;
}
.lightslist li:nth-child(10) {
left: 60%;
top: 56%;
}
.lightslist li:nth-child(11) {
top: 35%;
left: 58%;
}
}
@media screen and (max-width: 830px) {
.lightslist li:nth-child(1) {
left: 22%;
}
.lightslist li:nth-child(2) {
left: 26%;
}
.lightslist li:nth-child(3) {
left: 32%;
}
.lightslist li:nth-child(4) {
left: 52%;
}
.lightslist li:nth-child(5) {
left: 57%;
}
.lightslist li:nth-child(6) {
left: 63%;
}
.lightslist li:nth-child(7) {
left: 27%;
}
.lightslist li:nth-child(8) {
left: 28%;
}
.lightslist li:nth-child(9) {
left: 33%;
}
.lightslist li:nth-child(10) {
left: 57%;
}
.lightslist li:nth-child(11) {
left: 55%;
}
}
@media screen and (max-width: 670px) {
.lightslist li:nth-child(1) {
left: 20%;
}
.lightslist li:nth-child(2) {
left: 24%;
}
.lightslist li:nth-child(3) {
left: 30%;
}
.lightslist li:nth-child(6) {
left: 63%;
}
.lightslist li:nth-child(7) {
left: 24%;
}
.lightslist li:nth-child(8) {
left: 26%;
}
.lightslist li:nth-child(9) {
left: 32%;
}
.lightslist li:nth-child(10) {
left: 59%;
}
.lightslist li:nth-child(11) {
left: 57%;
}
}
@media screen and (max-width: 590px) {
.lightslist li:nth-child(1) {
left: 17%;
}
.lightslist li:nth-child(2) {
left: 22%;
}
.lightslist li:nth-child(3) {
left: 28%;
}
.lightslist li:nth-child(5) {
left: 59%;
}
.lightslist li:nth-child(6) {
left: 64%;
}
.lightslist li:nth-child(7) {
left: 24%;
}
}
@media screen and (max-width: 540px) {
.lightslist li:nth-child(1) {
left: 13%;
top: 45%;
}
.lightslist li:nth-child(2) {
left: 13%;
top: 26%;
}
.lightslist li:nth-child(3) {
left: 27%;
top: 15%;
}
.lightslist li:nth-child(4) {
left: 68%;
top: 10%;
}
.lightslist li:nth-child(5) {
left: 69%;
top: 15%;
}
.lightslist li:nth-child(6) {
left: 88%;
top: 45%;
}
.lightslist li:nth-child(7) {
left: 22%;
top: 54%;
}
.lightslist li:nth-child(8) {
left: 23%;
top: 31%;
}
.lightslist li:nth-child(9) {
left: 34%;
top: 19%;
}
.lightslist li:nth-child(10) {
left: 80%;
top: 51%;
}
.lightslist li:nth-child(11) {
left: 76%;
top: 28%;
}
}
@media screen and (max-width: 415px) {
.lightslist li:nth-child(1) {
left: 0%;
top: 50%;
}
.lightslist li:nth-child(2) {
left: 0%;
top: 24%;
}
.lightslist li:nth-child(3) {
left: 15%;
top: 14%;
}
.lightslist li:nth-child(4) {
left: 59%;
top: 13%;
}
.lightslist li:nth-child(5) {
left: 70%;
top: 20%;
}
.lightslist li:nth-child(6) {
left: 78%;
top: 50%;
}
.lightslist li:nth-child(7) {
left: 7%;
top: 59%;
}
.lightslist li:nth-child(8) {
left: 9%;
top: 34%;
}
.lightslist li:nth-child(9) {
left: 20%;
top: 20%;
}
.lightslist li:nth-child(10) {
left: 69%;
top: 56%;
}
.lightslist li:nth-child(11) {
left: 64%;
top: 31%;
}
}
@media screen and (max-width: 375px) {
.lightslist li {
animation: anime2 0.6s infinite linear;
}
.lightslist li:nth-child(1) {
left: -2%;
top: 54%;
}
.lightslist li:nth-child(2) {
left: 1%;
top: 30%;
}
.lightslist li:nth-child(3) {
top: 23%;
}
.lightslist li:nth-child(4) {
left: 59%;
top: 23%;
}
.lightslist li:nth-child(5) {
left: 70%;
top: 30%;
}
.lightslist li:nth-child(6) {
left: 76%;
top: 55%;
}
.lightslist li:nth-child(7) {
left: 5%;
top: 64%;
}
.lightslist li:nth-child(8) {
left: 8%;
top: 41%;
}
.lightslist li:nth-child(9) {
left: 19%;
top: 29%;
}
.lightslist li:nth-child(10) {
left: 67%;
top: 60%;
}
.lightslist li:nth-child(11) {
left: 64%;
top: 38%;
}
}
@keyframes anime2 {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@media screen and (max-width: 360px) {
.lightslist li:nth-child(1) {
left: -4%;
top: 54%;
}
.lightslist li:nth-child(2) {
left: -1%;
top: 30%;
}
.lightslist li:nth-child(3) {
top: 23%;
}
.lightslist li:nth-child(6) {
left: 73%;
top: 52%;
}
.lightslist li:nth-child(7) {
left: 5%;
top: 61%;
}
.lightslist li:nth-child(8) {
left: 7%;
top: 40%;
}
.lightslist li:nth-child(9) {
left: 18%;
top: 28%;
}
.lightslist li:nth-child(11) {
left: 63%;
top: 37%;
}
} | 0.674479 | 0.1273 |
@charset "UTF-8";
/* CSS Document */
body{
background-color: #5CA6C6;
height: 100vh;
display: grid;
place-items: center;
margin: 0;
}
h1{
position: absolute;
left: 545px;
top: 50px;
}
.container{
display: flex;
justify-content: center;
position: relative;
}
.head{
width: 300px;
height: 300px;
border-radius: 50%;
border: 10px solid black;
background: white;
position: relative;
justify-content: center;
display: flex;
align-items: baseline;
}
.head::before {
content: "";
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
box-shadow: inset -22px 5px 0 3px rgba(0,0,0,.2);
}
.head::after {
content: "";
position: absolute;
width: 15px;
height: 30px;
background: white;
margin-top: 300px;
border: 10px solid black;
}
.left, .right{
background: black;
border-radius: 50%;
width: 175px;
height: 175px;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
.left{
margin-left: -180px;
}
.right{
margin-left: 180px;
}
.left::before, .right::before {
content: "";
position: absolute;
width: 175px;
height: 175px;
border-radius: 50%;
box-shadow: inset -22px 5px 0 3px rgba(255,255,255,0.164);
}
.right::after, .left::after{
content: "";
position: absolute;
width: 10px;
height: 10px;
background: white;
border-radius: 50%;
}
.right::after {
width: 30px;
height: 30px;
background: transparent;
border: 5px solid white;
}
.cutout{
position: absolute;
width: 100px;
height: 100px;
background: white;
border-radius: 50%;
align-self: flex-end;
margin-bottom: -50px;
}
.mouth{
width: 180px;
height: 180px;
position: absolute;
border: 10px solid black;
border-radius: 50%;
align-self: center;
clip-path: circle(60% at 49% 100%);
}
.mouth::before, .mouth::after{
position: absolute;
content: "";
width: 30px;
height: 30px;
border-radius: 50%;
border: 10px solid black;
top: 102px;
left: -9px;
clip-path: circle(50% at 0 0);
}
.mouth::after{
left: 140px;
top: 107px;
clip-path: circle(50% at 100% 0);
}
.body{
position: absolute;
height: 50px;
width: 100px;
background: rgba(0,140,255,1.00);
top: 350px;
border: 10px solid black;
border-radius: 100% 100% 100% 100% / 100% 100% 0% 0%;
}
.body::before, .body::after{
position: absolute;
content: "";
width: 15px;
height: 20px;
top: 30px;
}
.body::before{
border-right: 10px solid black;
}
.body::after{
border-left: 10px solid black;
right: 0;
}
.background{
width: 100px;
height: 50px;
position: absolute;
left: -100px;
border-radius: 30%;
/*background: white;*/
top: 100px;
box-shadow:
400px 100px 0 0 rgba(0,0,0,.15),
50px 150px 0 0 rgba(0,0,0,.15),
400px 250px 0 0 rgba(0,0,0,.15);
animation: backgroundanim 3s infinite alternate;
}
@keyframes backgroundanim{
from{
box-shadow:
400px 100px 0 0 rgba(0,0,0,.15),
50px 150px 0 0 rgba(0,0,0,.15),
400px 250px 0 0 rgba(0,0,0,.15);
}
to{
box-shadow:
450px 100px 0 0 rgba(0,0,0,.15),
00px 150px 0 0 rgba(0,0,0,.15),
350px 250px 0 0 rgba(0,0,0,.15);
}
} | styles.css | @charset "UTF-8";
/* CSS Document */
body{
background-color: #5CA6C6;
height: 100vh;
display: grid;
place-items: center;
margin: 0;
}
h1{
position: absolute;
left: 545px;
top: 50px;
}
.container{
display: flex;
justify-content: center;
position: relative;
}
.head{
width: 300px;
height: 300px;
border-radius: 50%;
border: 10px solid black;
background: white;
position: relative;
justify-content: center;
display: flex;
align-items: baseline;
}
.head::before {
content: "";
position: absolute;
width: 300px;
height: 300px;
border-radius: 50%;
box-shadow: inset -22px 5px 0 3px rgba(0,0,0,.2);
}
.head::after {
content: "";
position: absolute;
width: 15px;
height: 30px;
background: white;
margin-top: 300px;
border: 10px solid black;
}
.left, .right{
background: black;
border-radius: 50%;
width: 175px;
height: 175px;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
.left{
margin-left: -180px;
}
.right{
margin-left: 180px;
}
.left::before, .right::before {
content: "";
position: absolute;
width: 175px;
height: 175px;
border-radius: 50%;
box-shadow: inset -22px 5px 0 3px rgba(255,255,255,0.164);
}
.right::after, .left::after{
content: "";
position: absolute;
width: 10px;
height: 10px;
background: white;
border-radius: 50%;
}
.right::after {
width: 30px;
height: 30px;
background: transparent;
border: 5px solid white;
}
.cutout{
position: absolute;
width: 100px;
height: 100px;
background: white;
border-radius: 50%;
align-self: flex-end;
margin-bottom: -50px;
}
.mouth{
width: 180px;
height: 180px;
position: absolute;
border: 10px solid black;
border-radius: 50%;
align-self: center;
clip-path: circle(60% at 49% 100%);
}
.mouth::before, .mouth::after{
position: absolute;
content: "";
width: 30px;
height: 30px;
border-radius: 50%;
border: 10px solid black;
top: 102px;
left: -9px;
clip-path: circle(50% at 0 0);
}
.mouth::after{
left: 140px;
top: 107px;
clip-path: circle(50% at 100% 0);
}
.body{
position: absolute;
height: 50px;
width: 100px;
background: rgba(0,140,255,1.00);
top: 350px;
border: 10px solid black;
border-radius: 100% 100% 100% 100% / 100% 100% 0% 0%;
}
.body::before, .body::after{
position: absolute;
content: "";
width: 15px;
height: 20px;
top: 30px;
}
.body::before{
border-right: 10px solid black;
}
.body::after{
border-left: 10px solid black;
right: 0;
}
.background{
width: 100px;
height: 50px;
position: absolute;
left: -100px;
border-radius: 30%;
/*background: white;*/
top: 100px;
box-shadow:
400px 100px 0 0 rgba(0,0,0,.15),
50px 150px 0 0 rgba(0,0,0,.15),
400px 250px 0 0 rgba(0,0,0,.15);
animation: backgroundanim 3s infinite alternate;
}
@keyframes backgroundanim{
from{
box-shadow:
400px 100px 0 0 rgba(0,0,0,.15),
50px 150px 0 0 rgba(0,0,0,.15),
400px 250px 0 0 rgba(0,0,0,.15);
}
to{
box-shadow:
450px 100px 0 0 rgba(0,0,0,.15),
00px 150px 0 0 rgba(0,0,0,.15),
350px 250px 0 0 rgba(0,0,0,.15);
}
} | 0.309545 | 0.061396 |
position:absolute;
top:0px;
left:0px;
}
#H1{
position:absolute;
top:150px;
left:640px;
border:solid;
padding:0.3%;
}
#H4{
position:absolute;
top:250px;
background:#aba97d;
}
.P1{
position:relative;
top:270px;
left:0px;
}
#E1{
position:absolute;
left:300px;
}
#E2{
position:absolute;
left:360px;
}
#E3{
position:absolute;
left:420px;
}
#E4{
position:absolute;
left:480px;
}
#E5{
position:absolute;
left:540px;
}
#E6{
position:absolute;
left:600px;
}
#E7{
position:absolute;
left:660px;
}
#E8{
position:absolute;
left:720px;
}
#E9{
position:absolute;
left:720px;
}
#E10{
position:absolute;
left:780px;
}
#E11{
position:absolute;
left:840px;
}
#E12{
position:absolute;
left:900px;
}
#E13{
position:absolute;
left:960px;
}
#E14{
position:absolute;
left:1020px;
}
#E15{
position:absolute;
left:1080px;
}
#E16{
position:absolute;
left:1140px;
}
#P2{
position:absolute;
top:340px;
}
#D1{
position:absolute;
left:300px;
}
#D2{
position:absolute;
left:360px;
background-color:white;
}
#D3{
position:absolute;
left:420px;
}
#D4{
position:absolute;
left:480px;
}
#D5{
position:absolute;
left:540px;
}
#D6{
position:absolute;
left:600px;
}
#D7{
position:absolute;
left:660px;
}
#D8{
position:absolute;
left:720px;
}
#D9{
position:absolute;
left:780px;
}
#D10{
position:absolute;
left:840px;
}
#D11{
position:absolute;
left:900px;
}
#D12{
position:absolute;
left:960px;
}
#D13{
position:absolute;
left:1020px;
}
#D14{
position:absolute;
left:1080px;
}
#D15{
position:absolute;
left:1140px;
}
#P3{
position:absolute;
top:380px;
}
#A1{
position:absolute;
left:300px;
}
#A2{
position:absolute;
left:360px;
}
#A3{
position:absolute;
left:420px;
}
#A4{
position:absolute;
left:480px;
}
#A5{
position:absolute;
left:540px;
}
#A6{
position:absolute;
left:600px;
}
#A7{
position:absolute;
left:660px;
}
#A8{
position:absolute;
left:720px;
}
#A9{
position:absolute;
left:780px;
}
#A10{
position:absolute;
left:840px;
}
#A11{
position:absolute;
left:900px;
}
#A12{
position:absolute;
left:960px;
}
#A13{
position:absolute;
left:1020px;
}
#A14{
position:absolute;
left:1080px;
}
#H4a{
position:absolute;
top:430px;
background:#aba97d;
}
#Im{
position:absolute;
top:600px;
left:550px;
}
#P4{
position:absolute;
top:480px;
}
#C1{
position:absolute;
left:300px;
}
#C2{
position:absolute;
left:360px;
}
#C3{
position:absolute;
left:420px;
}
#C4{
position:absolute;
left:480px;
}
#C5{
position:absolute;
left:540px;
}
#C6{
position:absolute;
left:600px;
}
#C7{
position:absolute;
left:660px;
}
#C8{
position:absolute;
left:720px;
}
#C9{
position:absolute;
left:780px;
}
#C10{
position:absolute;
left:840px;
}
#C11{
position:absolute;
left:900px;
}
#C12{
position:absolute;
left:960px;
}
#C13{
position:absolute;
left:1020px;
}
#C14{
position:absolute;
left:1080px;
}
#P5{
position:absolute;
top:520px;
}
#B1{
position:absolute;
left:300px;
}
#B2{
position:absolute;
left:360px;
}
#B3{
position:absolute;
left:420px;
}
#B4{
position:absolute;
left:480px;
}
#B5{
position:absolute;
left:540px;
}
#B6{
position:absolute;
left:600px;
}
#B7{
position:absolute;
left:660px;
}
#B8{
position:absolute;
left:720px;
}
#B9{
position:absolute;
left:780px;
}
#B10{
position:absolute;
left:840px;
}
#B11{
position:absolute;
left:900px;
}
#B12{
position:absolute;
left:960px;
}
#B13{
position:absolute;
left:1020px;
}
#B14{
position:absolute;
left:1080px;
}
#S1{
position:absolute;
top:680px;
left:750px;
}
#R1{
position:absolute;
top:680px;
left:650px;
}
#W1{
position:absolute;
top:400px;
left:1200px;
}
#H61{
position:absolute;
top:380px;
left:1250px;
}
#W2{
position:absolute;
top:450px;
left:1200px;
}
#H62{
position:absolute;
top:430px;
left:1260px;
}
#W3{
position: absolute;
top:500px;
left:1200px;
}
#H63{
position: absolute;
top:480px;
left:1255px;
}
.Nav{
position: relative;
top:600px;
}
.This{
position: relative;
left:0px;
top:-100px;
}
.That{
position: relative;
left:100px;
top:-100px;
}
.Ay{
position: relative;
left:1300px;
top:500px;
} | src/page7.css | position:absolute;
top:0px;
left:0px;
}
#H1{
position:absolute;
top:150px;
left:640px;
border:solid;
padding:0.3%;
}
#H4{
position:absolute;
top:250px;
background:#aba97d;
}
.P1{
position:relative;
top:270px;
left:0px;
}
#E1{
position:absolute;
left:300px;
}
#E2{
position:absolute;
left:360px;
}
#E3{
position:absolute;
left:420px;
}
#E4{
position:absolute;
left:480px;
}
#E5{
position:absolute;
left:540px;
}
#E6{
position:absolute;
left:600px;
}
#E7{
position:absolute;
left:660px;
}
#E8{
position:absolute;
left:720px;
}
#E9{
position:absolute;
left:720px;
}
#E10{
position:absolute;
left:780px;
}
#E11{
position:absolute;
left:840px;
}
#E12{
position:absolute;
left:900px;
}
#E13{
position:absolute;
left:960px;
}
#E14{
position:absolute;
left:1020px;
}
#E15{
position:absolute;
left:1080px;
}
#E16{
position:absolute;
left:1140px;
}
#P2{
position:absolute;
top:340px;
}
#D1{
position:absolute;
left:300px;
}
#D2{
position:absolute;
left:360px;
background-color:white;
}
#D3{
position:absolute;
left:420px;
}
#D4{
position:absolute;
left:480px;
}
#D5{
position:absolute;
left:540px;
}
#D6{
position:absolute;
left:600px;
}
#D7{
position:absolute;
left:660px;
}
#D8{
position:absolute;
left:720px;
}
#D9{
position:absolute;
left:780px;
}
#D10{
position:absolute;
left:840px;
}
#D11{
position:absolute;
left:900px;
}
#D12{
position:absolute;
left:960px;
}
#D13{
position:absolute;
left:1020px;
}
#D14{
position:absolute;
left:1080px;
}
#D15{
position:absolute;
left:1140px;
}
#P3{
position:absolute;
top:380px;
}
#A1{
position:absolute;
left:300px;
}
#A2{
position:absolute;
left:360px;
}
#A3{
position:absolute;
left:420px;
}
#A4{
position:absolute;
left:480px;
}
#A5{
position:absolute;
left:540px;
}
#A6{
position:absolute;
left:600px;
}
#A7{
position:absolute;
left:660px;
}
#A8{
position:absolute;
left:720px;
}
#A9{
position:absolute;
left:780px;
}
#A10{
position:absolute;
left:840px;
}
#A11{
position:absolute;
left:900px;
}
#A12{
position:absolute;
left:960px;
}
#A13{
position:absolute;
left:1020px;
}
#A14{
position:absolute;
left:1080px;
}
#H4a{
position:absolute;
top:430px;
background:#aba97d;
}
#Im{
position:absolute;
top:600px;
left:550px;
}
#P4{
position:absolute;
top:480px;
}
#C1{
position:absolute;
left:300px;
}
#C2{
position:absolute;
left:360px;
}
#C3{
position:absolute;
left:420px;
}
#C4{
position:absolute;
left:480px;
}
#C5{
position:absolute;
left:540px;
}
#C6{
position:absolute;
left:600px;
}
#C7{
position:absolute;
left:660px;
}
#C8{
position:absolute;
left:720px;
}
#C9{
position:absolute;
left:780px;
}
#C10{
position:absolute;
left:840px;
}
#C11{
position:absolute;
left:900px;
}
#C12{
position:absolute;
left:960px;
}
#C13{
position:absolute;
left:1020px;
}
#C14{
position:absolute;
left:1080px;
}
#P5{
position:absolute;
top:520px;
}
#B1{
position:absolute;
left:300px;
}
#B2{
position:absolute;
left:360px;
}
#B3{
position:absolute;
left:420px;
}
#B4{
position:absolute;
left:480px;
}
#B5{
position:absolute;
left:540px;
}
#B6{
position:absolute;
left:600px;
}
#B7{
position:absolute;
left:660px;
}
#B8{
position:absolute;
left:720px;
}
#B9{
position:absolute;
left:780px;
}
#B10{
position:absolute;
left:840px;
}
#B11{
position:absolute;
left:900px;
}
#B12{
position:absolute;
left:960px;
}
#B13{
position:absolute;
left:1020px;
}
#B14{
position:absolute;
left:1080px;
}
#S1{
position:absolute;
top:680px;
left:750px;
}
#R1{
position:absolute;
top:680px;
left:650px;
}
#W1{
position:absolute;
top:400px;
left:1200px;
}
#H61{
position:absolute;
top:380px;
left:1250px;
}
#W2{
position:absolute;
top:450px;
left:1200px;
}
#H62{
position:absolute;
top:430px;
left:1260px;
}
#W3{
position: absolute;
top:500px;
left:1200px;
}
#H63{
position: absolute;
top:480px;
left:1255px;
}
.Nav{
position: relative;
top:600px;
}
.This{
position: relative;
left:0px;
top:-100px;
}
.That{
position: relative;
left:100px;
top:-100px;
}
.Ay{
position: relative;
left:1300px;
top:500px;
} | 0.57069 | 0.063599 |
@charset "utf-8";
/*
Master Styles
Description: Layout and element specific styling for the master thesis page
Author: <NAME>
Start: 111217_BW
Last update: 160531_BW
/* OVERWRITE
/////////////////////////////////////////////////////////////////*/
body { font-size: 87.5%;}
h1, h2, .post h3, .entry h3 { font-family: "ff-netto-web",sans-serif;}
/* HEADER
/////////////////////////////////////////////////////////////////*/
#header { height: 170px; position: relative; padding: 30px 0 0;}
#header h1 { font-size: 44px; margin: 0; letter-spacing: -2.5px; line-height: 1;}
#header h1 a { display: block; color: rgba(200, 200, 200, 0.9); text-shadow: 0 1px 0px #fff, 0 0 0 #444; transition: color 0.2s;}
#header h1 a:hover{ color: rgba(60, 60, 60, 0.9);}
#header .title { font-weight: bold; display: block;}
#header .subtitle { font-weight: normal; display: block;}
/* CONTENT
/////////////////////////////////////////////////////////////////*/
#content { padding: 0 0 60px;}
.post { border-top: 3px solid #d4d5d3; border-bottom: 1px solid #d4d5d3; padding-bottom: 36px; margin-bottom: 36px; position: relative;}
h2 { margin: 1.8em 0 1em;}
h3 { font-weight: bold; margin-bottom: 0.5em;}
h3.ui { color: #bbb; font-size: 10px; font-weight: normal; margin-bottom: 2px; text-transform: uppercase;}
h3.ui a { color: #bbb; font-weight: normal;}
h3.ui a:hover { color: #444; }
.entry a:hover,
.post a:hover{ text-decoration: underline;}
/* REVEAL
/////////////////////////////////////////////////////////////////*/
a.reveal { visibility: hidden;}
p:hover a.reveal { visibility: visible;}
/* HOME
/////////////////////////////////////////////////////////////////*/
.home .introduction { border-top: 3px solid #d4d5d3; padding: 40px 0;}
.home .entry_date { top: 18px;}
/* JOURNAL
/////////////////////////////////////////////////////////////////*/
.journal { border-top: 3px solid #d4d5d3;}
.entry { border-bottom: 1px solid #d4d5d3; position: relative;}
.entry h2 { margin: 1.8em 0 1.8em;}
.entry h2 a { display: block;}
.entry h2 a:hover,
.entry h3 a:hover{ text-decoration: none;}
.entry h2 a .entry_toggle{
background: url("../img/toggle_btn.png") 0 0 no-repeat;
display: none;
height: 20px;
width: 20px;
left: -30px;
top: 46px;
position: absolute;
text-indent: -9999px;
}
.entry h2:hover a .entry_toggle,
.entry.expanded h2 a .entry_toggle{
display: block;
}
.entry h2:hover a .entry_toggle{
-webkit-transition: all 300ms ease-in;
-moz-transition: all 300ms ease-in;
-o-transition: all 300ms ease-in;
-ms-transition: all 300ms ease-in;
transition: all 300ms ease-in;
}
.entry.expanded h2 a .entry_toggle{
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.entry_date{
position: absolute;
right: 0;
top: 44px;
}
.entry_date a{
font: italic 12px/18px "Georgia", Georgia, serif;
color: #aaa;
}
.entry_date a:hover{
color: #444;
text-decoration: none;
}
.expanded .entry_text{
padding-bottom: 40px;
}
.entry img,
.post img{
-webkit-box-shadow: 0px 1px 3px 0px rgba(170, 170, 170, 1);
box-shadow: 0px 1px 3px 0px rgba(170, 170, 170, 1);
}
/* SIDEBAR
/////////////////////////////////////////////////////////////////*/
#sidebar a { color: #aaa; font-weight: bold; text-decoration: none;}
#sidebar a:hover { color: #444;}
#sidebar p { font-size: 11px; margin: 0 0 40px;}
#sidebar p.lead { font: italic 14px/21px "Georgia", Georgia, serif; color: #aaa; margin-top: 40px;}
#sidebar h3 { color: #bbb; font-size: 10px; padding-bottom: 2px; margin-bottom: 15px; text-transform: uppercase; border-bottom: 3px solid #d4d5d3;}
#sidebar ul { list-style: none; margin: 0 0 40px; padding: 0;}
#sidebar ul li { font-size: 11px; }
#sidebar ul li a { line-height: 20px; display: block; border-bottom: 1px solid #d4d5d3;}
#sidebar ul li a:hover { text-decoration: none; border-bottom: 1px solid #bbb; outline: none;}
#sidebar ul li a.active { border-bottom: 1px solid #bbb; color: #444;}
#sidebar dl { font-size: 11px; margin: 0 0 40px;}
#sidebar dt { float: none; margin-top: 1em;}
#sidebar dd { }
.sidebar_content p { color: #bbb;}
/* SLIDER
/////////////////////////////////////////////////////////////////*/
.orbit-wrapper{
clear: both;
}
.orbit-wrapper #slider {
width: 670px;
height: 503px;
background-color: #efefec;
}
.orbit-wrapper #slider img{
background: #efefec;
}
.orbit-wrapper div.slider-nav span {
width: 30px;
height: 30px;
margin-top: -15px;
}
.orbit-wrapper div.slider-nav span.right {
right: -40px;
}
.orbit-wrapper div.slider-nav span.left {
left: -40px;
}
/* FOOTNOTES
/////////////////////////////////////////////////////////////////*/
.footnotes{
padding-top: 36px;
}
.footnotes hr{
margin-bottom: 36px;
}
.footnotes ol {
font-size: 0.85em;
margin-top: 1.5em;
padding-top: 1.5em;
}
.footnotes ol li{
padding-left: 1.5em;
}
sup{
font-size: 0.71em;
padding-left: 3px;
}
sup a[rel="footnote"] {
text-decoration: none;
}
a.footnoteBackref, a.footnoteLink {
text-decoration: none;
}
/* VERSION
/////////////////////////////////////////////////////////////////*/
.version{
font: italic 12px/18px "Georgia", Georgia, serif; color: #aaa;
text-align: center;
padding-bottom: 36px;
padding-top: 1.5em;
margin-bottom: 36px;
} | assets/css/style.css | @charset "utf-8";
/*
Master Styles
Description: Layout and element specific styling for the master thesis page
Author: <NAME>
Start: 111217_BW
Last update: 160531_BW
/* OVERWRITE
/////////////////////////////////////////////////////////////////*/
body { font-size: 87.5%;}
h1, h2, .post h3, .entry h3 { font-family: "ff-netto-web",sans-serif;}
/* HEADER
/////////////////////////////////////////////////////////////////*/
#header { height: 170px; position: relative; padding: 30px 0 0;}
#header h1 { font-size: 44px; margin: 0; letter-spacing: -2.5px; line-height: 1;}
#header h1 a { display: block; color: rgba(200, 200, 200, 0.9); text-shadow: 0 1px 0px #fff, 0 0 0 #444; transition: color 0.2s;}
#header h1 a:hover{ color: rgba(60, 60, 60, 0.9);}
#header .title { font-weight: bold; display: block;}
#header .subtitle { font-weight: normal; display: block;}
/* CONTENT
/////////////////////////////////////////////////////////////////*/
#content { padding: 0 0 60px;}
.post { border-top: 3px solid #d4d5d3; border-bottom: 1px solid #d4d5d3; padding-bottom: 36px; margin-bottom: 36px; position: relative;}
h2 { margin: 1.8em 0 1em;}
h3 { font-weight: bold; margin-bottom: 0.5em;}
h3.ui { color: #bbb; font-size: 10px; font-weight: normal; margin-bottom: 2px; text-transform: uppercase;}
h3.ui a { color: #bbb; font-weight: normal;}
h3.ui a:hover { color: #444; }
.entry a:hover,
.post a:hover{ text-decoration: underline;}
/* REVEAL
/////////////////////////////////////////////////////////////////*/
a.reveal { visibility: hidden;}
p:hover a.reveal { visibility: visible;}
/* HOME
/////////////////////////////////////////////////////////////////*/
.home .introduction { border-top: 3px solid #d4d5d3; padding: 40px 0;}
.home .entry_date { top: 18px;}
/* JOURNAL
/////////////////////////////////////////////////////////////////*/
.journal { border-top: 3px solid #d4d5d3;}
.entry { border-bottom: 1px solid #d4d5d3; position: relative;}
.entry h2 { margin: 1.8em 0 1.8em;}
.entry h2 a { display: block;}
.entry h2 a:hover,
.entry h3 a:hover{ text-decoration: none;}
.entry h2 a .entry_toggle{
background: url("../img/toggle_btn.png") 0 0 no-repeat;
display: none;
height: 20px;
width: 20px;
left: -30px;
top: 46px;
position: absolute;
text-indent: -9999px;
}
.entry h2:hover a .entry_toggle,
.entry.expanded h2 a .entry_toggle{
display: block;
}
.entry h2:hover a .entry_toggle{
-webkit-transition: all 300ms ease-in;
-moz-transition: all 300ms ease-in;
-o-transition: all 300ms ease-in;
-ms-transition: all 300ms ease-in;
transition: all 300ms ease-in;
}
.entry.expanded h2 a .entry_toggle{
-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.entry_date{
position: absolute;
right: 0;
top: 44px;
}
.entry_date a{
font: italic 12px/18px "Georgia", Georgia, serif;
color: #aaa;
}
.entry_date a:hover{
color: #444;
text-decoration: none;
}
.expanded .entry_text{
padding-bottom: 40px;
}
.entry img,
.post img{
-webkit-box-shadow: 0px 1px 3px 0px rgba(170, 170, 170, 1);
box-shadow: 0px 1px 3px 0px rgba(170, 170, 170, 1);
}
/* SIDEBAR
/////////////////////////////////////////////////////////////////*/
#sidebar a { color: #aaa; font-weight: bold; text-decoration: none;}
#sidebar a:hover { color: #444;}
#sidebar p { font-size: 11px; margin: 0 0 40px;}
#sidebar p.lead { font: italic 14px/21px "Georgia", Georgia, serif; color: #aaa; margin-top: 40px;}
#sidebar h3 { color: #bbb; font-size: 10px; padding-bottom: 2px; margin-bottom: 15px; text-transform: uppercase; border-bottom: 3px solid #d4d5d3;}
#sidebar ul { list-style: none; margin: 0 0 40px; padding: 0;}
#sidebar ul li { font-size: 11px; }
#sidebar ul li a { line-height: 20px; display: block; border-bottom: 1px solid #d4d5d3;}
#sidebar ul li a:hover { text-decoration: none; border-bottom: 1px solid #bbb; outline: none;}
#sidebar ul li a.active { border-bottom: 1px solid #bbb; color: #444;}
#sidebar dl { font-size: 11px; margin: 0 0 40px;}
#sidebar dt { float: none; margin-top: 1em;}
#sidebar dd { }
.sidebar_content p { color: #bbb;}
/* SLIDER
/////////////////////////////////////////////////////////////////*/
.orbit-wrapper{
clear: both;
}
.orbit-wrapper #slider {
width: 670px;
height: 503px;
background-color: #efefec;
}
.orbit-wrapper #slider img{
background: #efefec;
}
.orbit-wrapper div.slider-nav span {
width: 30px;
height: 30px;
margin-top: -15px;
}
.orbit-wrapper div.slider-nav span.right {
right: -40px;
}
.orbit-wrapper div.slider-nav span.left {
left: -40px;
}
/* FOOTNOTES
/////////////////////////////////////////////////////////////////*/
.footnotes{
padding-top: 36px;
}
.footnotes hr{
margin-bottom: 36px;
}
.footnotes ol {
font-size: 0.85em;
margin-top: 1.5em;
padding-top: 1.5em;
}
.footnotes ol li{
padding-left: 1.5em;
}
sup{
font-size: 0.71em;
padding-left: 3px;
}
sup a[rel="footnote"] {
text-decoration: none;
}
a.footnoteBackref, a.footnoteLink {
text-decoration: none;
}
/* VERSION
/////////////////////////////////////////////////////////////////*/
.version{
font: italic 12px/18px "Georgia", Georgia, serif; color: #aaa;
text-align: center;
padding-bottom: 36px;
padding-top: 1.5em;
margin-bottom: 36px;
} | 0.247532 | 0.091585 |
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
}
.wrapper {
position: relative;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.thumbnail.logo {
width: 100%;
}
/* Home */
.container-home {
/* padding-top: 5rem; */
background-image: linear-gradient(#0f0db9, #6a0ae9);
max-width: 100%;
}
.kiri {
max-width: 100%;
padding: 10px;
font-size: small;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.kanan {
margin-top: 5rem;
max-width: 100%;
}
.thumbnail img {
max-width: 100%;
z-index: 2;
}
.btn {
display: block;
width: 100%;
border: none;
background-color: #198754;
padding: 14px 28px;
font-size: 16px;
color: white;
cursor: pointer;
text-align: center;
margin-top: 20px;
border: 1px solid rgb(90, 180, 110);
border-radius: 5px;
}
.box {
display: block;
max-width: 100%;
max-height: 37px;
margin-top: 30px;
}
.box::before {
content: "Coming Soon";
color: white;
position: absolute;
z-index: 2;
opacity: 0;
}
.box:hover::before {
opacity: 1;
font-size: 17px;
padding-top: 10px;
/* transform: translate(-50%); */
background-color: #198754;
width: 300px;
height: 37px;
text-align: center;
border-radius: 5px;
}
.box:hover {
opacity: 0.9;
}
.container-roadmap {
padding-top: 5rem;
background-image: linear-gradient(#6a0ae9, #0f0db9);
box-sizing: border-box;
padding-bottom: 5rem;
}
.card {
border-radius: 20px;
margin: 10px;
box-sizing: border-box;
padding: 20px;
}
.card ol {
padding: 20px;
}
.card.satu {
border: 1px solid black;
background-image: linear-gradient(170deg, #9f2cd4 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.dua {
border: 1px solid black;
background-image: linear-gradient(170deg, #c4f025 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.tiga {
border: 1px solid black;
background-image: linear-gradient(170deg, #0cb44c 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.empat {
border: 1px solid black;
background-image: linear-gradient(170deg, #5a40eb 0%, #0c228f 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card-header {
height: 50px;
/* background-color: #ccc; */
text-align: center;
font-size: 20px;
color: azure;
font-weight: bold;
}
.card-body {
color: azure;
font-size: medium;
max-height: 600px;
}
/* Swap */
.container-swap {
box-sizing: border-box;
background-image: linear-gradient(#0f0db9, #0cad62);
}
.thumbnail {
max-width: 100%;
flex: 1;
}
.thumbnaile img {
max-width: 100%;
}
.kanan-swap {
flex: 1;
/* background-color: brown; */
padding: 5rem;
}
.konten {
/* margin: 20px; */
padding: 10px;
order: 1;
}
.konten ul {
max-width: 100%;
list-style: none;
display: flex;
justify-content: space-between;
}
.konten ul li {
margin: 2px;
}
.kanan.bawah {
font-size: small;
margin: 10px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
/* NFT */
.container-nft {
background-image: linear-gradient(#0cad62, #000704);
box-sizing: border-box;
padding: 10px;
}
.nft-kiri {
font-size: 20px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
padding: 10px;
background-image: linear-gradient(180deg, #cedb1a 0%, #000000 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.nft-tengah {
flex: 1;
order: 2;
width: 100%;
border-radius: 10px;
padding-top: 20px;
}
.nft-tengah img {
box-sizing: border-box;
width: 100%;
}
.nft-kanan {
flex: 1;
order: 1;
font-size: 20px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
padding: 20px;
padding-bottom: 5rem;
background-image: linear-gradient(180deg, #2b56f1 0%, #000000 100%);
border-radius: 10px;
}
.text-center {
padding-bottom: 30px;
}
/* Team */
.container-team {
max-width: 100%;
background-image: linear-gradient(#000008, #2b56f1);
}
.kartu {
flex: 1;
max-width: 250px;
max-height: 300px;
border-radius: 10px;
transform: translateX(25%);
overflow: hidden;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.kepala {
font-weight: bold;
align-items: center;
text-align: center;
color: white;
line-height: 1.8;
}
.kepala img {
max-width: 100px;
max-height: 100px;
border-radius: 50%;
padding: 20px;
}
.badan {
text-align: center;
color: white;
padding: 10px;
height: 300px;
line-height: 1.4;
}
.core.didi {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.hayun {
background: linear-gradient(to right, #a86008, #ffba56);
}
.core.anton {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.rian {
background: linear-gradient(to right, #0a504a, #38ef7d);
}
.core.asgon {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.ichan {
background: linear-gradient(to right, #493240, #f09);
}
/* Footer */
.container-footer {
width: 100%;
background-color: rgb(7, 7, 161);
box-sizing: border-box;
border: 1px solid;
}
.footer-atas {
margin: 20px;
}
.footer-atas ul {
text-align: center;
list-style: none;
padding: 5rem;
}
.footer-atas a {
color: white;
font-size: 25px;
text-decoration: none;
}
.footer-atas a:hover {
color: rgb(150, 135, 135);
}
.content-footer {
align-items: center;
padding: 5rem;
color: white;
border-radius: 20px;
}
.footer-kiri {
margin: 20px;
flex: 1;
color: white;
}
.footer-tengah {
margin: 20px;
color: white;
flex: 1;
}
.footer-kanan {
margin: 20px;
flex: 1;
}
.footer-bawah {
width: 100%;
height: 50px;
background-color: rgb(5, 5, 151);
color: white;
text-align: center;
font-size: 15px;
line-height: 50px;
}
/* Tulisan Div */
.tulisan-satu {
text-align: center;
font-size: 40px;
background-color: #6a0ae9;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
z-index: 3;
}
.tulisan-dua {
text-align: center;
font-size: 40px;
background-color: #0f0db9;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.tulisan-tiga {
text-align: center;
font-size: 40px;
background-color: #0cad62;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.tulisan-empat {
text-align: center;
font-size: 40px;
background-color: #000008;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
/* End Tulisan */
@media screen and (min-width: 576px) {
.container-home {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 5rem;
}
.kiri {
margin-right: 10rem;
max-width: 100%;
font-size: 24px;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
z-index: 1;
}
.kanan {
max-width: 100%;
z-index: 1;
}
.thumbnail img {
max-width: 500px;
z-index: 1;
}
.container-roadmap {
display: flex;
justify-content: center;
}
.card {
width: 20%;
border-radius: 20px;
margin: 10px;
box-sizing: border-box;
padding: 20px;
}
.container-swap {
display: flex;
justify-content: center;
padding: 5rem;
}
.thumbnail {
/* background-color: blueviolet; */
flex: 1;
}
.thumbnaile img {
width: 100%;
}
.kanan-swap {
flex: 1;
/* background-color: brown; */
padding: 2.5rem;
}
.kanan.bawah {
font-size: 25px;
margin: 10px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.container-nft {
padding: 5rem;
display: flex;
justify-content: center;
}
.container-nft div {
margin: 10px;
width: 100%;
padding: 20px;
}
.nft-tengah {
width: 100%;
}
.nft-kiri {
flex: 1;
order: 3;
font-size: 20px;
}
.container-team {
display: flex;
padding: 5rem;
box-sizing: border-box;
justify-content: flex-start;
}
.kartu {
flex: 1;
max-width: 250px;
max-height: 300px;
border-radius: 10px;
margin: 5px;
overflow: hidden;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
transform: translateX(-5%);
}
.container-footer {
width: 100%;
background-color: rgb(7, 7, 161);
box-sizing: border-box;
border: 1px solid;
}
.footer-atas {
margin: 20px;
}
.footer-atas ul {
display: flex;
justify-content: space-between;
list-style: none;
padding: 5rem;
}
.footer-atas a {
margin: 5 0rem;
color: white;
font-size: 18px;
text-decoration: none;
}
.footer-atas a:hover {
color: rgb(150, 135, 135);
}
.content-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5rem;
border-radius: 20px;
}
.footer-kiri {
margin: 20px;
flex: 1;
}
.footer-tengah {
margin: 20px;
flex: 1;
}
.footer-kanan {
margin: 20px;
flex: 1;
}
.footer-bawah {
width: 100%;
height: 50px;
background-color: rgb(5, 5, 151);
color: white;
text-align: center;
font-size: 15px;
line-height: 50px;
}
} | style.css | html,
body {
margin: 0;
padding: 0;
}
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
}
.wrapper {
position: relative;
max-width: 100%;
box-sizing: border-box;
overflow: hidden;
}
.thumbnail.logo {
width: 100%;
}
/* Home */
.container-home {
/* padding-top: 5rem; */
background-image: linear-gradient(#0f0db9, #6a0ae9);
max-width: 100%;
}
.kiri {
max-width: 100%;
padding: 10px;
font-size: small;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.kanan {
margin-top: 5rem;
max-width: 100%;
}
.thumbnail img {
max-width: 100%;
z-index: 2;
}
.btn {
display: block;
width: 100%;
border: none;
background-color: #198754;
padding: 14px 28px;
font-size: 16px;
color: white;
cursor: pointer;
text-align: center;
margin-top: 20px;
border: 1px solid rgb(90, 180, 110);
border-radius: 5px;
}
.box {
display: block;
max-width: 100%;
max-height: 37px;
margin-top: 30px;
}
.box::before {
content: "Coming Soon";
color: white;
position: absolute;
z-index: 2;
opacity: 0;
}
.box:hover::before {
opacity: 1;
font-size: 17px;
padding-top: 10px;
/* transform: translate(-50%); */
background-color: #198754;
width: 300px;
height: 37px;
text-align: center;
border-radius: 5px;
}
.box:hover {
opacity: 0.9;
}
.container-roadmap {
padding-top: 5rem;
background-image: linear-gradient(#6a0ae9, #0f0db9);
box-sizing: border-box;
padding-bottom: 5rem;
}
.card {
border-radius: 20px;
margin: 10px;
box-sizing: border-box;
padding: 20px;
}
.card ol {
padding: 20px;
}
.card.satu {
border: 1px solid black;
background-image: linear-gradient(170deg, #9f2cd4 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.dua {
border: 1px solid black;
background-image: linear-gradient(170deg, #c4f025 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.tiga {
border: 1px solid black;
background-image: linear-gradient(170deg, #0cb44c 0%, #1d3ede 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card.empat {
border: 1px solid black;
background-image: linear-gradient(170deg, #5a40eb 0%, #0c228f 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.card-header {
height: 50px;
/* background-color: #ccc; */
text-align: center;
font-size: 20px;
color: azure;
font-weight: bold;
}
.card-body {
color: azure;
font-size: medium;
max-height: 600px;
}
/* Swap */
.container-swap {
box-sizing: border-box;
background-image: linear-gradient(#0f0db9, #0cad62);
}
.thumbnail {
max-width: 100%;
flex: 1;
}
.thumbnaile img {
max-width: 100%;
}
.kanan-swap {
flex: 1;
/* background-color: brown; */
padding: 5rem;
}
.konten {
/* margin: 20px; */
padding: 10px;
order: 1;
}
.konten ul {
max-width: 100%;
list-style: none;
display: flex;
justify-content: space-between;
}
.konten ul li {
margin: 2px;
}
.kanan.bawah {
font-size: small;
margin: 10px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
/* NFT */
.container-nft {
background-image: linear-gradient(#0cad62, #000704);
box-sizing: border-box;
padding: 10px;
}
.nft-kiri {
font-size: 20px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
padding: 10px;
background-image: linear-gradient(180deg, #cedb1a 0%, #000000 100%);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.nft-tengah {
flex: 1;
order: 2;
width: 100%;
border-radius: 10px;
padding-top: 20px;
}
.nft-tengah img {
box-sizing: border-box;
width: 100%;
}
.nft-kanan {
flex: 1;
order: 1;
font-size: 20px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
padding: 20px;
padding-bottom: 5rem;
background-image: linear-gradient(180deg, #2b56f1 0%, #000000 100%);
border-radius: 10px;
}
.text-center {
padding-bottom: 30px;
}
/* Team */
.container-team {
max-width: 100%;
background-image: linear-gradient(#000008, #2b56f1);
}
.kartu {
flex: 1;
max-width: 250px;
max-height: 300px;
border-radius: 10px;
transform: translateX(25%);
overflow: hidden;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.kepala {
font-weight: bold;
align-items: center;
text-align: center;
color: white;
line-height: 1.8;
}
.kepala img {
max-width: 100px;
max-height: 100px;
border-radius: 50%;
padding: 20px;
}
.badan {
text-align: center;
color: white;
padding: 10px;
height: 300px;
line-height: 1.4;
}
.core.didi {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.hayun {
background: linear-gradient(to right, #a86008, #ffba56);
}
.core.anton {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.rian {
background: linear-gradient(to right, #0a504a, #38ef7d);
}
.core.asgon {
background: linear-gradient(to right, #373b44, #4286f4);
}
.core.ichan {
background: linear-gradient(to right, #493240, #f09);
}
/* Footer */
.container-footer {
width: 100%;
background-color: rgb(7, 7, 161);
box-sizing: border-box;
border: 1px solid;
}
.footer-atas {
margin: 20px;
}
.footer-atas ul {
text-align: center;
list-style: none;
padding: 5rem;
}
.footer-atas a {
color: white;
font-size: 25px;
text-decoration: none;
}
.footer-atas a:hover {
color: rgb(150, 135, 135);
}
.content-footer {
align-items: center;
padding: 5rem;
color: white;
border-radius: 20px;
}
.footer-kiri {
margin: 20px;
flex: 1;
color: white;
}
.footer-tengah {
margin: 20px;
color: white;
flex: 1;
}
.footer-kanan {
margin: 20px;
flex: 1;
}
.footer-bawah {
width: 100%;
height: 50px;
background-color: rgb(5, 5, 151);
color: white;
text-align: center;
font-size: 15px;
line-height: 50px;
}
/* Tulisan Div */
.tulisan-satu {
text-align: center;
font-size: 40px;
background-color: #6a0ae9;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
z-index: 3;
}
.tulisan-dua {
text-align: center;
font-size: 40px;
background-color: #0f0db9;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.tulisan-tiga {
text-align: center;
font-size: 40px;
background-color: #0cad62;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.tulisan-empat {
text-align: center;
font-size: 40px;
background-color: #000008;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
/* End Tulisan */
@media screen and (min-width: 576px) {
.container-home {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 5rem;
}
.kiri {
margin-right: 10rem;
max-width: 100%;
font-size: 24px;
color: aliceblue;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
z-index: 1;
}
.kanan {
max-width: 100%;
z-index: 1;
}
.thumbnail img {
max-width: 500px;
z-index: 1;
}
.container-roadmap {
display: flex;
justify-content: center;
}
.card {
width: 20%;
border-radius: 20px;
margin: 10px;
box-sizing: border-box;
padding: 20px;
}
.container-swap {
display: flex;
justify-content: center;
padding: 5rem;
}
.thumbnail {
/* background-color: blueviolet; */
flex: 1;
}
.thumbnaile img {
width: 100%;
}
.kanan-swap {
flex: 1;
/* background-color: brown; */
padding: 2.5rem;
}
.kanan.bawah {
font-size: 25px;
margin: 10px;
color: whitesmoke;
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}
.container-nft {
padding: 5rem;
display: flex;
justify-content: center;
}
.container-nft div {
margin: 10px;
width: 100%;
padding: 20px;
}
.nft-tengah {
width: 100%;
}
.nft-kiri {
flex: 1;
order: 3;
font-size: 20px;
}
.container-team {
display: flex;
padding: 5rem;
box-sizing: border-box;
justify-content: flex-start;
}
.kartu {
flex: 1;
max-width: 250px;
max-height: 300px;
border-radius: 10px;
margin: 5px;
overflow: hidden;
box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
transform: translateX(-5%);
}
.container-footer {
width: 100%;
background-color: rgb(7, 7, 161);
box-sizing: border-box;
border: 1px solid;
}
.footer-atas {
margin: 20px;
}
.footer-atas ul {
display: flex;
justify-content: space-between;
list-style: none;
padding: 5rem;
}
.footer-atas a {
margin: 5 0rem;
color: white;
font-size: 18px;
text-decoration: none;
}
.footer-atas a:hover {
color: rgb(150, 135, 135);
}
.content-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding: 5rem;
border-radius: 20px;
}
.footer-kiri {
margin: 20px;
flex: 1;
}
.footer-tengah {
margin: 20px;
flex: 1;
}
.footer-kanan {
margin: 20px;
flex: 1;
}
.footer-bawah {
width: 100%;
height: 50px;
background-color: rgb(5, 5, 151);
color: white;
text-align: center;
font-size: 15px;
line-height: 50px;
}
} | 0.344003 | 0.086323 |
body {
padding: 0;
margin: 0;
background: #FFF;
font-family: 'open Sans', sans-serif;
}
body a {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-decoration: none;
}
body a:hover {
text-decoration: none;
}
body a:focus, a:hover {
text-decoration: none;
}
input[type="button"], input[type="submit"] {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
text-align: center;
font-family: 'Josefin Sans', sans-serif;
letter-spacing:1px;
}
p {
margin:0;
}
ul {
margin:0;
padding:0;
}
label {
margin:0;
}
a:focus, a:hover {
text-decoration: none;
outline: none
}
img {
width: 100%;
}
/*-- //Reset Code --*/
/*-- Banner --*/
/*-- Navbar --*/
.navbar {
margin-bottom: 0;
position: absolute;
z-index: 99999;
background:transparent;
border: none;
border-radius: 0;
width: 100%;
padding: 10px 0;
}
.navbar-header h1{
color:#fff;
font-size:40px;
}
.navbar-header img{
width:22%;
}
.navbar-nav>li {
padding: 5px 15px;
}
.navbar-default .navbar-nav>li>a {
color: #fff;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
color: #FFF;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #E91E63;
background-color: transparent;
}
/*-- Link-Hover-Effect --*/
.hover-effect a {
padding: 10px;
color: #237546;
font-weight: 700;
text-shadow: none;
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
transition: color 0.3s;
font-family: 'Raleway', sans-serif;
}
.hover-effect a::before, .hover-effect a::after {
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: #fff;
content: '';
opacity: 0;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-moz-transition: opacity 0.3s, -moz-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transform: translateY(-10px);
-moz-transform: translateY(-10px);
transform: translateY(-10px);
}
.hover-effect a::before {
top: 0;
-webkit-transform: translateY(-10px);
-moz-transform: translateY(-10px);
transform: translateY(-10px);
}
.hover-effect a::after {
bottom: 0;
-webkit-transform: translateY(10px);
-moz-transform: translateY(10px);
transform: translateY(10px);
}
.hover-effect a:hover, .hover-effect a:focus {
color: #fff;
}
.hover-effect a:hover::before, .hover-effect a:focus::before, .hover-effect a:hover::after, .hover-effect a:focus::after {
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
transform: translateY(0px);
}
/*-- //Link-Hover-Effect --*/
/*-- //Navbar --*/
/*-- Banner-Slider --*/
.slider {
position: relative;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li:first-child {
position: relative;
display: block;
float: left;
}
.rslides img {
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top: 50%;
left: 0;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
text-decoration: none;
height: 61px;
width: 38px;
background: url("../images/themes.gif") no-repeat left top;
margin-top: -45px;
}
.callbacks_nav.next {
left: auto;
background-position: right top;
right: 0;
}
ul.callbacks_tabs.callbacks1_tabs {
display: none;
}
.callbacks_nav {
left: 20px;
}
.callbacks_nav.next {
right: 20px;
}
/*-- //Banner --*/
/*--Trend--*/
.trend-w3layouts,.new-w3-agile,.services-agileits-w3layouts,.about-agileinfo,.team-w3layouts,.gallery-w3layouts,.contact-agileinfo,.events-w3layouts,.blog{
padding:50px 0px;
}
.trend-w3layouts h2,.new-w3-agile h3,.services-agileits-w3layouts h3,.services-bottom-w3-agileits h3,.about-agileinfo h2,.team-w3layouts h3,.gallery-w3layouts h2,.contact-agileinfo h2,.events-w3layouts h2{
font-size:40px;
color:#e91e63;
margin-bottom:40px;
}
.services-agileits-w3layouts h3{
color:#071ea0;
}
.trend-grid{
padding:0 15px;
}
.trend-w3layouts h4,.services-agileits-w3layouts h4{
font-size:27px;
color:#000;
margin-bottom:20px;
}
/*--flexisel--*/
.flex-slider{
background:#222227;
padding: 70px 0 165px 0;
}
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
text-align: center;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0px auto;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
position: relative;
line-height: 0px;
}
.nbs-flexisel-item > img {
cursor: pointer;
position: relative;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
width:60px;
height:115px;
position: absolute;
cursor: pointer;
z-index: 100;
}
.nbs-flexisel-nav-left {
left:0%;
top: 15% !important;
display:none;
}
.nbs-flexisel-nav-right {
right: 0%;
top: 15% !important;
display:none;
}
/*--//flexisel--*/
/*--//trend--*/
/*--new games--*/
.new-grid-agile{
margin-top:30px;
}
.view {
overflow: hidden;
position: relative;
margin-top: 2em;
}
.view .mask, .view .content {
width: 90%;
position: absolute;
overflow: hidden;
padding: 6.5em 0;
}
.view img {
display: block;
position: relative;
}
.view h4 {
text-transform: capitalize;
color: #fff;
text-align: center;
position: relative;
font-size: 2.5em;
letter-spacing: 2px;
}
.view p {
font-size: 1em;
position: relative;
color: #fff !important;
padding: 0.5em 0;
text-align: center;
margin:0;
}
.view-eighth .mask {
background-color:rgba(0, 0, 0, 0.67);
top: -200px;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.3s ease-out 0.5s;
-moz-transition: all 0.3s ease-out 0.5s;
transition: all 0.3s ease-out 0.5s;
}
.view-eighth h2 {
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-o-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all 0.2s ease-in-out 0.1s;
-moz-transition: all 0.2s ease-in-out 0.1s;
transition: all 0.2s ease-in-out 0.1s;
}
.view-eighth p {
color: #333;
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-o-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all 0.2s ease-in-out 0.2s;
-moz-transition: all 0.2s ease-in-out 0.2s;
-o-transition: all 0.2s ease-in-out 0.2s;
-ms-transition: all 0.2s ease-in-out 0.2s;
transition: all 0.2s ease-in-out 0.2s;
}
.view-eighth:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
top: 0px;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
transition-delay: 0s;
-webkit-animation: bounceY 0.9s linear;
-moz-animation: bounceY 0.9s linear;
-ms-animation: bounceY 0.9s linear;
animation: bounceY 0.9s linear;
height: 100%;
}
.view-eighth:hover h2 {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-ms-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.view-eighth:hover p {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s;
}
@keyframes bounceY {
0% { transform: translateY(-205px);}
40% { transform: translateY(-100px);}
65% { transform: translateY(-52px);}
82% { transform: translateY(-25px);}
92% { transform: translateY(-12px);}
55%, 75%, 87%, 97%, 100% { transform: translateY(0px);}
}
/*--//new games--*/
/*--services--*/
.services-agileits-w3layouts {
background: #f4f4f4;
}
.service-grid-agileits{
text-align:center;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits .glyphicon{
font-size:30px;
background:#E91E63;
padding:20px;
border-radius:50%;
color:#fff;
margin-bottom:15px;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits p{
font-size:14px;
line-height:27px;
color:#999;
}
.service-grid-agileits a{
color:#E91E63;
border:2px solid #E91E63;
font-size:15px;
margin-top:15px;
padding:7px 15px;
display:inline-block;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits:hover a{
color:#fff;
border:2px solid #071ea0;
background:#071ea0;
}
.service-grid-agileits:hover .glyphicon{
background:#071ea0;
}
/*--//services--*/
/*-- services bottom --*/
.services-bottom-w3-agileits{
background:url(../images/sbbg.jpg) no-repeat 0px 0px;
background-size:cover;
background-attachment:fixed;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
position:relative;
min-height:400px;
padding:100px 0px;
}
.wthree_info {
width:100%;
text-align:center;
}
.services-bottom-w3-agileits h3{
color:#fff;
margin-bottom:10px;
}
.wthree_info p{
text-transform: capitalize;
color: #fff;
letter-spacing: 2px;
font-style:italic;
font-size:16px;
text-align:center;
}
a.learn{
color:#fff;
border:2px solid #fff;
font-size:14px;
padding:7px 15px;
display:inline-block;
margin-top:50px;
}
a.learn:hover{
color:#fff;
border:2px solid #e91e63;
background: #e91e63;
}
/*-- //services bottom --*/
/*-- //footer --*/
.footer{
padding:35px 0px;
}
.footer h4{
text-align:left;
color:#000;
font-size:27px;
margin-bottom:30px;
}
.footer-left-w3 ul li{
display:inline-block;
margin-bottom:35px;
}
.footer-left-w3 .glyphicon{
font-size:16px;
}
.footer-left-w3 ul li h6{
font-size:16px;
color:#000;
margin-left:10px;
}
.footer-left-w3 ul li a{
font-size:14px;
color:#000;
}
.footer-middle-wthree{
margin-top:25px;
}
.footer-right-w3 h4{
color: #E91E63;
}
.footer-right-w3 img {
width: 12%;
}
.footer-right-w3 p{
font-size:14px;
color:#000;
line-height:30px;
}
p.agileinfo{
margin-top:30px;
}
.copyright p {
text-align: center;
font-size: 14px;
color: #000;
border-top: 1px dotted #000;
padding: 30px 0px 0 0px;
}
.copyright p a{
color:#000;
}
.copyright p a:hover{
text-decoration:underline;
}
/*-- //footer --*/
/*-- sub-banner --*/
.sub-banner{
background:url(../images/banner3.jpg) no-repeat 0px 0px;
min-height:87px;
}
/*-- //sub-banner--*/
/*-- about--*/
.about-grids-w3-agileits {
margin: 3em 0 0;
}
.about-grid-left-agileits-w3layouts ul li{
display: inline-block;
margin-bottom: 2em;
font-size: 14px;
text-transform: capitalize;
color:#999;
}
.about-grid-left-agileits-w3layouts ul li a{
text-decoration:none;
color:#999;
}
.about-grid-left-agileits-w3layouts ul li i{
padding: .7em 1em;
background: #E91E63;
color: #fff;
margin-right: 2em;
border-radius: 60%;
font-style:normal;
}
.about-grid-right-w3-agile img {
padding: .5em;
border: 1px dotted #999;
}
.link {
outline: none;
text-decoration: none;
position: relative;
line-height: 1;
display: inline-block;
}
/* Kumya */
.link--kumya {
overflow: hidden;
padding:0;
line-height: 1;
z-index: 9999;
padding: 10px;
display: inline-flex;
}
.link--kumya:hover {
color:#000;
}
.link--kumya::after {
content: '';
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
z-index: -1;
background:#0b219d;
-webkit-transform: translate3d(101%,0,0);
transform: translate3d(101%,0,0);
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.link--kumya:hover::after,.welcome-grid:hover .link--kumya::after{
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.link--kumya span {
display: block;
position: relative;
}
.link--kumya span::before {
content: attr(data-letters);
position: absolute;
color: #fff;
left: 0;
overflow: hidden;
white-space: nowrap;
width: 0%;
-webkit-transition: width 0.5s;
transition: width 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.link--kumya:hover span::before,.welcome-grid:hover .link--kumya span::before{
width: 100%;
}
.grid-w3ls {
position: relative;
margin: 0 auto;
max-width: 1000px;
list-style: none;
text-align: center;
}
/* Common style */
.grid-w3ls figure {
position: relative;
float: none;
overflow: hidden;
margin: 0;
width: 100%;
background: transparent;
text-align: center;
}
.grid-w3ls figure img {
/*-- agileits --*/
position: relative;
display: block;
width: 100%;
opacity: 0.8;
}
.grid-w3ls figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.grid-w3ls figure figcaption,
.grid-w3ls figure figcaption > a {
position: absolute;
top: 0;
left: 9px;
width: 96.8%;
height: 100%;
}
/***** Zoe *****/
/*---------------*/
figure.effect-zoe figcaption {
top: auto;
bottom: 0;
padding: 1em;
height:3.3em;
background: #E91E63;
color: #212121;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
figure.effect-zoe h3 {
float: left;
}
figure.effect-zoe p.icon-links a {
float: right;
color: #FFFFFF;
font-size: 1em;
}
figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
color: #252d31;
}
figure.effect-zoe p.description {
position: absolute;
bottom: 8em;
padding: 2em;
color: #fff;
text-transform: none;
font-size: .8em;
line-height: 1.8em;
background: rgba(53, 53, 53, 0.25);
opacity: 0;
-webkit-transition: opacity 0.35s;
transition: opacity 0.35s;
-webkit-backface-visibility: hidden;
}
figure.effect-zoe h3,
figure.effect-zoe p.icon-links a {
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,200%,0);
transform: translate3d(0,200%,0);
transition:.5s ease-in;
}
figure.effect-zoe p.icon-links a span::before {
display: inline-block;
padding: 8px 10px;
}
figure.effect-zoe h3 {
display: inline-block;
font-size:1.3em;
color:#fff;
}
figure.effect-zoe h3 span {
color: #0c1e81;
margin-left: 15px;
}
figure.effect-zoe:hover p.description {
opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h3,
figure.effect-zoe:hover p.icon-links a {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: 9px;
}
figure.effect-zoe:hover h3 {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
/*-- //about --*/
/*-- Collections --*/
.collection-agileits{
padding:50px 0px;
}
.collection-left, .collection-right {
padding: 0;
}
.collection-grid {
padding: 0;
height: 348.5px;
}
.collection-text {
background-color: #000;
text-align: center;
padding-top: 75px;
}
.collection-text img {
width: 50px;
}
.collection-text h3 {
color: #FFF;
margin: 30px 0 20px;
}
.collection-text p {
font-size: 14px;
font-weight: 600;
color: #999;
line-height: 30px;
padding: 0 35px;
}
.collection-left{
background:url(../images/c1.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:700px;
}
.collection-grid.collection-image.collection-grid-2 {
background: url(../images/c4.jpg) no-repeat 0px 0px;
background-size:cover;
}
.collection-grid.collection-image.collection-grid-4 {
background: url(../images/c3.jpg) no-repeat 0px 0px;
background-size:cover;
}
.collection-grid.collection-image.collection-grid-6 {
background: url(../images/c2.jpg) no-repeat 0px 0px;
background-size:cover;
}
/*-- //Collections --*/
/*-- team --*/
.team-w3layouts {
background: #e8e8e8;
}
.w3l_team_grid h4{
font-size:1.6em;
color:#E91E63;
margin:1em 0 .5em;
}
.w3l_team_grid p{
color:#999;
text-align:center;
}
.view {
overflow: hidden;
position: relative;
}
.view-second .mask,.view-second .content {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
padding: 6em 1em;
}
.view img {
display: block;
position: relative;
}
.view-second img {
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.view-second .mask {
background-color: rgba(19, 19, 19, 0.35);
width: 520px!important;
padding: 60px!important;
height: 520px!important;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: translate(265px, 145px) rotate(45deg);
-moz-transform: translate(265px, 145px) rotate(45deg);
-o-transform: translate(265px, 145px) rotate(45deg);
-ms-transform: translate(265px, 145px) rotate(45deg);
transform: translate(265px, 145px) rotate(45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-second .w3l_social_icons1 {
border-bottom: 1px solid #fff;
padding-bottom: 1em;
background: transparent;
margin: 20px 40px 0px 40px;
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
transform: translate(200px, -200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-second:hover .mask,.w3l_team_grid:hover .view-second .mask{
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform:translate(-125px, -45px) rotate(45deg);
-moz-transform:translate(-125px, -45px) rotate(45deg);
-o-transform:translate(-125px, -45px) rotate(45deg);
-ms-transform:translate(-125px, -45px) rotate(45deg);
transform: translate(-125px, -45px) rotate(45deg);
}
.view-second:hover .w3l_social_icons1,.w3l_team_grid:hover .view-second .w3l_social_icons1{
-webkit-transform: translate(0px,0px);
-moz-transform: translate(0px,0px);
-o-transform: translate(0px,0px);
-ms-transform: translate(0px,0px);
transform: translate(0px,0px);
-webkit-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
-ms-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.view-second:hover p,.w3l_team_grid:hover .view-second p{
-webkit-transform: translate(0px,0px);
-moz-transform: translate(0px,0px);
-o-transform: translate(0px,0px);
-ms-transform: translate(0px,0px);
transform: translate(0px,0px);
-webkit-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-ms-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.view-second p {
-webkit-transform: translate(-200px, 200px);
-moz-transform: translate(-200px, 200px);
-o-transform: translate(-200px, 200px);
-ms-transform: translate(-200px, 200px);
transform: translate(-200px, 200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
color:#fff;
margin:1em 0 0;
line-height:2em;
text-align:left;
}
.w3l_social_icons {
float: left;
margin: 1.5em 0 0;
}
.w3l_social_icons1{
float:none !important;
margin:0 !important;
}
.w3l_social_icons ul li{
display:inline-block;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
/*-- //team --*/
/*-- gallery --*/
.gallery-w3layouts {
background-color: #F7F7F7;
}
.gallery-grids {
margin: 3em 0 0;
}
.gallery-grid{
float:left;
width:25%;
}
.gallery-grid a {
display: block;
overflow: hidden;
}
.gallery-grid img{
padding:.5em;
}
img.zoom-img {
transform: scale(1, 1);
-webkit-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transition-timing-function: ease-out;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
-webkit-transition-duration: .5s;
-moz-transition-duration: .5s;
-ms-transition-duration: .5s;
-o-transition-duration: .5s;
}
img.zoom-img:hover{
transform: scale(.9);
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
-ms-transform: scale(.9);
-o-transform: scale(.9);
-webkit-transition-timing-function: ease-in-out;
-webkit-transition-duration: 750ms;
-moz-transition-timing-function: ease-in-out;
-moz-transition-duration: 750ms;
-ms-transition-timing-function: ease-in-out;
-o-transition-timing-function: ease-in-out;
-ms-transition-duration: 750ms;
-o-transition-duration: 750ms;
overflow: hidden;
}
.span1 {
margin: 18px 0;
padding: 15px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.span2{
border-bottom: 1px solid #Eee;
padding-bottom: 15px;
}
.span3 {
border-bottom: 1px solid #Eee;
padding: 15px 0px;
}
p.left {
float: left;
font-size: 14px;
color: #000;
letter-spacing: 3px;
margin-right: 5%;
width: 35%;
font-weight: 600;
}
p.right {
font-size: 14px;
float: left;
color: #949494;
letter-spacing: 2px;
}
.pop-up-content-agileits-w3layouts h4{
font-size:27px;
color:#fff;
text-align:left;
margin-bottom:25px;
}
.pop-up-content-agileits-w3layouts p{
color:#eee;
font-size:14px;
line-height:27px;
}
p.agileits{
margin:20px 0;
}
/*-- //gallery --*/
/*--events--*/
.events-left-agile-agileits-w3layouts{
background:url(../images/e1.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:400px;
padding:0;
}
.events-right-agile{
padding:0;
}
.events-text-w3-agile{
padding:20px 0px 0px 30px;
}
.events-text-w3-agile h4 {
background: #dfdc00;
padding: 10px 0px;
color: #000;
width: 24%;
font-size: 17px;
}
.events-text-w3-agile p {
font-size: 30px;
color: #dfdc00;
padding: 54px 0px 6px 0px;
font-weight: 600;
}
.events-text1 p {
font-size: 30px;
color: #dfdc00;
padding: 250px 0px 6px 0px;
font-weight: 600;
}
.events-text-w3-agile ul li{
display:inline;
color:#fff;
}
.events-text-w3-agile ul li:nth-child(2) {
margin-left:20px;
}
.events-right-top{
background:url(../images/e2.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:200px;
}
.events-right-bottom{
background:url(../images/e3.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:200px;
}
.events-section2-agileinfo{
background: #f4f4f4;
padding:50px 0px;
}
.blog-text-w3ls h4{
color: #333;
font-size:35px;
text-align:left;
font-weight: 400;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.blog-text-w3ls h4:hover{
color: #e91e63;
}
.item_info {
border: 1px solid #ddd;
padding: 0.5em 2em;
margin: 2.2em 0;
}
.item_info ul li i {
color:#8a8a8a;
margin-right: 15px;
}
.item_info ul li {
display: inline-block;
font-size: 1.1em;
margin-right: 27px;
vertical-align: middle;
color: #777;
list-style: none;
}
.item_info ul li a{
color: #777;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.item_info ul li a:hover{
color:#e91e63
}
.blog-text-w3ls p{
color: #999;
font-size:14px;
text-align:left;
line-height:30px;
}
a.blog-read{
color: #001fcc;
border: 2px solid #001fcc;
font-size: 15px;
margin-top: 30px;
padding: 7px 15px;
display: inline-block;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
a.blog-read:hover{
color: #fff;
background:#E91E63;
border: 2px solid #E91E63;
}
.blog2-w3ls{
margin:30px 0px;
}
/*--//events --*/
/*-- Contact --*/
.contact-left-agile h4 {
font-size: 21px;
text-align: left;
margin-bottom: 13px;
color: #E91E63;
font-weight: 700;
}
.contact-left-agile ul li {
text-align: left;
display: block;
font-size: 14px;
line-height: 25px;
color:#999;
}
.contact-left-agile .phone-agileits-w3layouts {
margin: 25px 0;
}
.contact-left-agile p {
font-size: 14px;
line-height: 25px;
color: #999;
}
.contact-left-agile p a{
color: #999;
font-size:14px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
width: 48.2%;
float: left;
margin: 0 10px 25px 0;
padding: 15px 10px;
background-color: transparent;
border: none;
border-left: 1px solid rgb(2, 24, 136);
border-bottom: 1px solid rgb(2, 24, 136);
outline: transparent;
}
.contact-right-w3 textarea {
width: 100%;
height: 125px;
}
.contact-right-w3 input.more_btn {
float: right;
padding: 7px 15px;
background-color: transparent;
border: 2px solid rgb(2, 24, 136);
outline: transparent;
color:rgb(2, 24, 136);
}
.contact-right-w3 input.more_btn:hover {
color: #FFf;
border: 2px solid #FF166D;
background:#FF166D;
}
::-webkit-input-placeholder{
color:rgb(2, 24, 136) !important;
}
/*-- Map --*/
.map iframe {
width: 100%;
height: 400px;
}
.map-hover {
position: relative;
}
.map-hover-1 {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background-color: rgba(0, 0, 0, 0.46);
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.map-hover-1:hover {
background-color: transparent;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
/*-- //Map --*/
/*-- //Contact-Page-Styling --*/
/*-- single --*/
.agileits_breadcrumbs {
padding: 1em 0;
background: #dfdc00;
}
.agileits_breadcrumbs_left {
width: 70%;
float: left;
}
.agileits_breadcrumbs_left ul{
margin-top:5px;
}
.agileits_breadcrumbs_right {
width: 30%;
float: left;
}
.agileits_breadcrumbs_left ul li {
display: inline-block;
color: #212121;
text-transform: uppercase;
}
.agileits_breadcrumbs_right h3{
font-size: 2em;
color: #212121;
font-weight:700;
}
.blog{
background: #f4f4f4;
}
.wthree_blog_left_grid h4 {
font-size: 1.5em;
color:#e91e63;
margin: 1em 0 0;
font-weight:700;
text-align: left;
}
.wthree_blog_left_grid ul li i {
padding: 0 1em;
}
.wthree_blog_left_grid h3 {
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
text-transform: capitalize;
text-align: left;
font-weight: 700;
margin-top: 10px;
}
.wthree_blog_left_grid ul {
padding: 0em 0 1em 0;
text-align:left;
}
.wthree_blog_left_grid ul li {
display: inline-block;
color:#8a8a8a;
line-height:30px;
}
.wthree_blog_left_grid ul li a{
display: inline-block;
color: #212121;
}
.wthree_blog_left_grid ul li span {
color:#8a8a8a;
padding-right: 1em;
}
.wthree_blog_left_grid p{
text-align:left;
line-height:27px;
color: #999;
font-size:14px;
}
.wthree_blog_left_grid p i {
display: block;
margin: 1em 0;
color: #999;
text-align:left;
}
.agileits_share ul{
text-align:left;
}
.agileits_share ul li{
display:inline-block;
}
.agileits_share ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -4px;
display: inline-block;
border: none;
}
.agileits_share ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -4px;
}
.agileits_share ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -4px;
}
.agileits_share ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -4px;
}
.agileits_share ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -47px;
}
.agileits_share ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -47px;
}
.agileits_share ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -47px;
}
.agileits_share ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -47px;
}
.agileits_reply{
text-align:left;
}
.agileits_reply h3{
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
text-transform: capitalize;
text-align:left;
margin-top:30px;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
width: 100%;
padding: 13px;
border: 1px solid #000;
margin-bottom: 30px;
background:transparent;
outline:none;
}
.agileits_reply textarea{
width: 100%;
padding: 10px;
border: 1px solid #000;
margin-bottom:15px;
height:150px;
resize:none;
background:transparent;
outline:none;
}
.agileits_reply input[type="submit"] {
padding: 10px 35px;
border: none;
border: 2px solid rgb(2, 24, 136);
color:rgb(2, 24, 136);
outline:none;
background:transparent;
}
.agileits_reply input[type="submit"]:hover{
border: 2px solid #E91E63;
color:#fff;
background:#E91E63;
}
.w3ls_search input[type="text"] {
outline: none;
padding: 10px;
background: #f5f5f5;
border: 1px solid #E1E1E1;
color: #212121;
font-size: 14px;
width: 80%;
}
.w3ls_search input[type="submit"] {
outline: none;
padding: 10px;
background: url(../images/img-sp.png) no-repeat 26px -392px rgb(2, 24, 136);
border: none;
width: 19%;
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 26px -392px #999;
}
.w3l_categories ul li, .w3l_archives ul li {
margin-bottom: 1.5em;
background: url(../images/img-sp.png) no-repeat 0px -183px;
padding-left: 2.5em;
list-style-type: none;
text-transform: capitalize;
font-family: 'Poppins', sans-serif;
text-align:left;
color: #999;
font-size:14px;
}
.w3l_categories ul li a {
color: #999;
text-decoration: none;
line-height: 1.8em;
font-size:14px;
}
.w3l_categories ul li a:hover{
color: #e91e63;
}
.w3agile_flickr_post_left {
width: 48%;
float: left;
margin: 1%;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3 ,.wthree_blog_left_grid h3,.newsletter h4{
font-size: 1.5em!important;
color: #212121;
font-weight:700;
margin-bottom: 1em;
text-align:left;
}
.w3l_categories, .w3l_archives {
margin: 3em 0;
}
.agileits_share ul{
text-align:left;
}
.agileits_share ul li{
display:inline-block;
}
.agileits_share ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -4px;
display: inline-block;
border: none;
}
.agileits_share ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -4px;
}
.agileits_share ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -4px;
}
.agileits_share ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -4px;
}
.agileits_share ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -47px;
}
.agileits_share ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -47px;
}
.agileits_share ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -47px;
}
.agileits_share ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -47px;
}
/*-- //single --*/
/*-- responsive--*/
@media screen and (max-width: 1440px){
.pop-up-content-agileits-w3layouts h4 {
margin-bottom: 15px;
}
p.agileits {
margin: 5px 0;
}
p.right {
letter-spacing: 0px;
}
.collection-grid {
padding: 0;
height: 313px;
}
.collection-text img {
width: 50px;
margin-top: 45px;
}
.collection-left {
min-height: 626px;
}
}
@media screen and (max-width: 1366px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
padding: 40px 20px;
}
.collection-grid {
padding: 0;
height: 297px;
}
.collection-text h3 {
margin: 25px 0 20px;
}
.collection-text p {
padding: 0 25px;
}
.collection-left {
min-height: 594.4px;
}
}
@media screen and (max-width: 1280px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 55%
}
.collection-grid {
padding: 0;
height: 278px;
}
.collection-text img {
margin-top: 30px;
}
.collection-text p {
padding: 0px 20px;
}
.collection-left {
min-height: 556.4px;
}
}
@media screen and (max-width: 1080px){
.view .mask, .view .content {
width: 87%;
padding: 5.5em 0;
}
.flex-control-nav {
top: 54px;
right:0;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 70%
}
.about-grid-left-agileits-w3layouts ul li {
margin-bottom: 1.6em;
}
.collection-grid {
padding: 0;
height: 234px;
}
.collection-text img {
margin-top: 15px;
}
.collection-text h3 {
margin: 12px 0 12px;
}
.collection-text p {
font-size: 13px;
line-height: 26px;
}
.view-second .mask {
width: 520px!important;
}
.view-second .content {
padding:2em 1em!important;
width:100%!important;
}
.collection-left {
min-height: 468.4px;
}
.events-text-w3-agile h4 {
width: 32%;
}
.blog-text-w3ls h4 {
color: #333;
}
.events-text-w3-agile p {
font-size: 25px;
}
.item_info {
margin: 1.2em 0;
}
.item_info ul li {
margin-right: 23px;
}
a.blog-read {
margin-top:12px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 18px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover{
background: url(../images/img-sp.png) no-repeat 18px -392px #999;
}
}
@media screen and (max-width: 1024px){
.events-text-w3-agile p {
font-size: 23px;
}
}
@media screen and (max-width: 991px){
.navbar-header h1 {
margin-top:7px;
font-size: 35px;
}
.navbar-header img {
width: 18%;
}
.navbar-nav>li {
padding: 5px 8px;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
font-size: 35px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 24px;
}
.service-grid-agileits {
width: 25%;
float: left;
}
.service-grid-agileits .glyphicon {
font-size: 25px;
padding: 15px;
}
.new-grid-w3l,.new-grid-agile{
width: 25%;
float: left;
}
.view .mask, .view .content {
width: 83%;
padding: 50px 0;
}
.view h4 {
font-size: 1.8em;
}
.view p {
font-size: 12px;
}
.footer-left-w3,.footer-middle-w3,.footer-right-w3 {
width: 33.3%;
float: left;
}
.footer-middle-w3{
padding:0;
}
.img-w3-agile{
width:25%;
float:left;
padding:0px 3px;
}
.footer-middle-wthree {
margin-top: 7px;
}
.footer-left-w3 ul li {
margin-bottom: 22px;
}
.footer-right-w3 p {
font-size: 13px;
line-height: 25px;
}
p.agileinfo {
margin-top: 12px;
}
.w3ls-left,.w3ls-right{
width:50%;
float:left;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 72%;
}
.about-grid-left-agileits-w3layouts,.about-grid-right-w3-agile {
width: 50%;
float: left;
}
figure.effect-zoe p.description {
padding: 1em;
}
.about-grid-left-agileits-w3layouts ul li {
margin-bottom: 0.6em;
}
.about-grid-left-agileits-w3layouts ul li i {
padding: .4em 0.7em;
margin-right: 1em;
}
figure.effect-zoe h3 {
font-size: 1.1em;
}
.collection-text img {
width: 45px;
}
.w3l_team_grid {
width: 25%;
float: left;
padding: 0 10px;
}
.w3l_social_icons ul li a,.w3l_social_icons ul li a.google,.w3l_social_icons ul li a.twitter,.w3l_social_icons ul li a.facebook{
background-size:400px;
width:27px;
height:27px;
}
.w3l_social_icons ul li a{
background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.google {
background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.twitter {
background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.facebook {
background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a:hover {
background: url('../images/img-sprite.png') no-repeat -6px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.google:hover {
background: url('../images/img-sprite.png') no-repeat -45px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.twitter:hover{
background: url('../images/img-sprite.png') no-repeat -86px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.facebook:hover {
background: url('../images/img-sprite.png') no-repeat -125px -41px;
background-size:400px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 0.5em;
}
.view-second p {
font-size:13px;
margin: 0.6em 0 0;
line-height: 1.5em;
padding-top:0;
}
.footer-right-w3 img {
width: 16%;
}
.events-left-agile-agileits-w3layouts {
width: 55%;
float: left;
}
.events-right-agile {
width: 45%;
float: left;
}
.events-text-w3-agile p {
font-size: 23px;
}
.blog-image-w3l {
width: 33.3%;
float: left;
}
.blog-text-w3ls {
width: 66.6%;
float: left;
padding-left: 0;
}
.item_info {
padding: 0.5em;
}
.item_info ul li {
font-size: 1em;
margin-right: 16px;
}
.item_info ul li i {
margin-right: 5px;
}
.blog-text-w3ls h4 {
font-size: 30px;
}
.item_info {
margin: 1em 0;
}
.blog-text-w3ls p {
font-size: 13px;
line-height: 26px;
}
.blog2-w3ls {
margin: 50px 0px;
}
.contact-left-agile {
width: 33.3%;
float: left;
}
.contact-right-w3{
width: 66.6%;
float: left;
}
.contact-right-w3 input.text{
width: 47.7%;
}
.map iframe {
width: 100%;
height: 350px;
}
.wthree_blog_left {
width: 55%;
float: left;
}
.wthree_blog_right {
width: 45%;
float: left;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 12px -392px rgb(2, 24, 136);
width:18%;
}
.w3ls_search input[type="submit"]:hover{
background: url(../images/img-sp.png) no-repeat 12px -392px #999;
width:18%;
}
.wthree_blog_left_grid ul li i {
padding: 0 0.5em;
}
}
@media screen and (max-width: 900px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 80%;
}
.events-text-w3-agile {
padding: 20px 0px 0px 20px;
}
.events-text-w3-agile p {
font-size: 21px;
}
}
@media screen and (max-width: 800px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 90%;
}
.collection-text img {
width: 35px;
margin-top:20px;
}
.collection-text h3 {
margin: 8px 0 8px;
font-size: 24px;
}
.collection-text p {
font-size: 13px;
line-height: 23px;
padding:0 16px;
}
.events-text-w3-agile h4 {
width: 40%;
}
.events-text-w3-agile p {
font-size: 19px;
}
}
@media screen and (max-width: 768px){
.collection-text p {
padding: 0 10px;
}
}
@media screen and (max-width: 736px){
.navbar-header h1 {
text-align: left;
padding-left: 15px;
}
.navbar-default .navbar-toggle {
background: transparent;
border: 2px solid #E91E63;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #E91E63;
}
.navbar-toggle {
border-radius: 0px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-header img {
width: 7%;
}
.navbar-nav {
margin: 0;
background: #02178e;
}
.navbar-collapse.in {
overflow-y: inherit;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 22px;
}
.view .mask, .view .content {
padding: 45px 0;
}
.services-bottom-w3-agileits {
min-height: 325px;
padding: 85px 0px;
}
.collection-left {
width: 50%;
margin: 0 auto;
}
.collection-right {
width: 100%;
}
.collection-grid-1,.collection-grid-2,.collection-grid-3,.collection-grid-4,.collection-grid-5,.collection-grid-6{
width: 33.3%;
float: left;
}
.collection-text img {
margin-top: 33px;
}
.collection-text p {
line-height: 26px;
}
.item_info ul li {
margin-right: 14px;
}
.contact-right-w3 input.text{
width: 47.6%;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 10px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 10px -392px #999;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3, .wthree_blog_left_grid h3, .newsletter h4 {
font-size: 1.4em!important;
}
.wthree_blog_left_grid ul li span {
color: #8a8a8a;
padding-right: 0.7em;
}
}
@media screen and (max-width:667px){
.callbacks_nav {
height: 61px;
width: 32px;
background-size: 58px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 19px;
}
.service-grid-agileits {
width: 50%;
float: left;
}
.service-grid-agileits-bottom{
margin-top:50px;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 10px;
}
.view .mask, .view .content {
padding: 37px 0;
width:87%;
}
.footer-left-w3 ul li h6 {
font-size: 15px;
margin-left: 5px;
}
.w3ls-right {
padding-left: 0;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
padding: 25px 5px;
}
.span1 {
margin: 15px 0;
padding: 10px 0;
}
.span2,.span3 {
padding-bottom: 10px;
}
p.left {
letter-spacing: 2px;
}
.pop-up-content-agileits-w3layouts p {
font-size: 13px;
line-height: 25px;
}
.about-grid-left-agileits-w3layouts ul li i {
margin-right: 0.2em;
}
.about-grid-left-agileits-w3layouts ul li {
font-size: 13.5px;
}
.w3l_team_grid {
width: 50%;
float: left;
padding: 0 15px;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 1.5em;
}
.view-second p {
font-size: 15px;
margin: 1.6em 0 0;
line-height: 2em;
padding-top: 0;
}
.footer h4 {
font-size:25px;
}
figure.effect-zoe h3 {
font-size: 1em;
}
figure.effect-zoe h3 span {
margin-left: 7px;
}
figure.effect-zoe p.icon-links a {
font-size: 0.9em;
}
.grid-w3ls figure figcaption, .grid-w3ls figure figcaption > a {
left: 8px;
}
figure.effect-zoe:hover figcaption, figure.effect-zoe:hover h3, figure.effect-zoe:hover p.icon-links a {
bottom: 8px;
}
figure.effect-zoe figcaption {
padding: 0.5em;
height: 2.5em;
}
figure.effect-zoe p.description {
padding: 0.5em;
bottom:5em;
}
.item_info ul li {
font-size: 12px;
margin-right: 16px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
margin: 0 8px 25px 0;
}
.map iframe {
width: 100%;
height: 300px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 7px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 7px -392px #999;
}
.wthree_blog_left_grid ul li span {
color: #8a8a8a;
padding-right: 0.3em;
}
.wthree_blog_left_grid ul li i {
padding: 0 0.3em;
}
}
@media screen and (max-width:640px){
.footer-left-w3 ul li h6 {
font-size: 14px;
margin-left: 5px;
}
.footer-left-w3 .glyphicon {
font-size: 15px;
}
.pop-up-content-agileits-w3layouts h4 {
margin-bottom: 8px;
}
.about-grid-left-agileits-w3layouts{
padding-right:0;
}
.about-grid-right-w3-agile {
padding-left:0;
}
.footer h4 {
font-size: 24px;
}
.events-text-w3-agile p {
font-size: 16px;
}
.item_info ul li {
font-size: 12px;
margin-right: 12px;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
margin-bottom: 10px;
}
}
@media screen and (max-width:600px){
.new-grid-w3l, .new-grid-agile {
padding: 0px 5px;
}
.view {
margin-top: 1em;
}
.view .mask, .view .content {
padding: 37px 0;
width: 93%;
}
.footer-left-w3, .footer-middle-w3, .footer-right-w3 {
width: 100%;
float: left;
}
.footer-middle-w3{
margin:30px 0;
}
.footer h4 {
margin-bottom: 20px;
}
.footer-right-w3 h4 {
margin-bottom: 10px;
}
.mfp-close {
left: -30px;
}
.about-grid-left-agileits-w3layouts ul li {
font-size: 12.6px;
}
.footer-right-w3 img {
width: 7%;
}
.events-text-w3-agile h4 {
width: 57%;
}
.item_info ul li {
font-size: 12px;
margin-right: 5px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 4px -388px rgb(2, 24, 136);
background-size: 495px;
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 4px -388px #999;
background-size: 495px;
}
}
@media screen and (max-width:568px){
.trend-w3layouts, .new-w3-agile, .services-agileits-w3layouts, .about-agileinfo, .team-w3layouts, .gallery-w3layouts, .contact-agileinfo, .events-w3layouts, .blog {
padding: 30px 0px;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 7px;
width:50%;
float:left;
}
.view h4 {
font-size: 2.2em;
}
.view p {
font-size: 14px;
}
.view .mask, .view .content {
padding: 83px 0;
width: 94.5%;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 98%;
}
.mfp-close {
left: -8px;
top:-40px;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
margin-bottom: 30px;
}
.gallery-grids {
margin:0;
}
.about-grid-left-agileits-w3layouts, .about-grid-right-w3-agile {
width: 100%;
float: left;
padding:0 15px;
}
.about-grid-left-agileits-w3layouts ul li {
display: block;
margin-left:25%;
}
.item_info ul li {
font-size: 11px;
margin-right: 6px;
}
.map iframe {
width: 100%;
height: 270px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
margin: 0 7px 25px 0;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
padding: 9px;
}
}
@media screen and (max-width:480px){
.callbacks_nav {
top: 60%;
}
.navbar-header h1 {
font-size: 27px;
}
.navbar-header img {
width: 8%;
}
.view .mask, .view .content {
padding: 67px 0;
width: 93.5%;
}
.services-bottom-w3-agileits h3{
font-size:30px;
}
.wthree_info p {
font-size: 14px;
letter-spacing:1px;
}
.gallery-grid {
float: left;
width: 50%;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 75%;
margin-top:100px;
}
.w3ls-left, .w3ls-right {
width: 100%;
float: left;
}
.w3ls-right {
padding-left: 15px;
margin-top:20px;
}
.sub-banner {
min-height: 72px;
}
.collection-left {
width: 75%;
margin: 0 auto;
}
.collection-text img {
margin-top: 17px;
}
.collection-text p {
line-height: 24px;
padding:0 6px;
}
.view-second p {
margin: 0.7em 0 0;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 21%;
}
.events-left-agile-agileits-w3layouts {
width: 100%;
float: left;
min-height:310px;
}
.events-text1 p {
padding: 180px 0px 6px 0px;
}
.events-right-top,.events-right-bottom {
min-height: 175px;
}
.events-right-agile {
width: 100%;
float: left;
}
.events-text-w3-agile h4 {
width: 36%;
}
.blog-image-w3l {
width: 100%;
float: left;
}
.blog-text-w3ls {
width: 100%;
float: left;
padding-left: 15px;
}
.blog-text-w3ls h4 {
font-size: 25px;
}
.map iframe {
width: 100%;
height: 250px;
}
.contact-right-w3 input.text {
width: 99.6%;
}
.contact-left-agile h4 {
font-size: 19px;
}
.wthree_blog_left {
width: 100%;
float: left;
margin-bottom:50px;
}
.wthree_blog_right {
width: 100%;
float: left;
}
}
@media screen and (max-width:414px){
.rslides img {
height: 225px;
}
.navbar-header img {
width: 10%;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
font-size: 28px;
}
.view .mask, .view .content {
padding: 49px 0;
width: 93%;
}
.view h4 {
font-size: 2em;
}
.services-bottom-w3-agileits {
min-height: 265px;
padding: 50px 0px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 14%;
}
.collection-grid-1, .collection-grid-2, .collection-grid-3, .collection-grid-4, .collection-grid-5, .collection-grid-6 {
width: 50%;
float: left;
}
.w3l_social_icons ul li a,.w3l_social_icons ul li a.google,.w3l_social_icons ul li a.twitter,.w3l_social_icons ul li a.facebook{
background-size:400px;
width:27px;
height:27px;
}
.w3l_social_icons ul li a{
background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.google {
background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.twitter {
background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.facebook {
background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a:hover {
background: url('../images/img-sprite.png') no-repeat -6px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.google:hover {
background: url('../images/img-sprite.png') no-repeat -45px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.twitter:hover{
background: url('../images/img-sprite.png') no-repeat -86px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.facebook:hover {
background: url('../images/img-sprite.png') no-repeat -125px -41px;
background-size:400px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 0.1em;
}
.view-second p {
margin: 0.3em 0 0;
line-height: 19px;
font-size: 13px;
}
.view-second .content {
padding: 1em 1em!important;
}
.footer-right-w3 img {
width: 9%;
}
.contact-left-agile {
width: 100%;
float: left;
margin-bottom:30px;
}
.contact-right-w3 {
width: 100%;
float: left;
}
.contact-left-agile h4 {
font-size: 17px;
}
}
@media screen and (max-width:384px){
.view .mask, .view .content {
padding: 40px 0;
width: 91.5%;
}
.view h4 {
font-size: 1.7em;
}
.services-bottom-w3-agileits h3{
font-size:26px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 9%;
}
.collection-left {
width: 100%;
margin: 0 auto;
}
.w3l_team_grid {
width: 80%;
float: none;
margin:0 auto;
padding: 0 15px;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 1.1em;
}
.view-second p {
margin: 1.3em 0 0;
line-height: 27px;
font-size: 14px;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 85%;
}
}
@media screen and (max-width:375px){
}
@media screen and (max-width:320px){
.rslides img {
height: 200px;
}
.callbacks_nav {
height: 45px;
width: 25px;
background-size: 46px;
top:67%;
}
.service-grid-agileits {
width: 100%;
float: left;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 15px;
width: 100%;
float: left;
}
.view .mask, .view .content {
padding: 90px 0;
width: 89%;
}
.services-bottom-w3-agileits h3 {
font-size: 23px;
}
.wthree_info p {
font-size: 14px;
letter-spacing: 1px;
width: 90%;
margin: 0 auto;
line-height: 27px;
}
a.learn {
margin-top: 30px;
}
.service-grid-agileits-top{
margin-bottom:50px;
}
.navbar-toggle {
padding: 8px 8px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 16px;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 96%;
}
.about-grid-left-agileits-w3layouts, .about-grid-right-w3-agile {
padding: 0px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 0;
}
.collection-grid-1, .collection-grid-2, .collection-grid-3, .collection-grid-4, .collection-grid-5, .collection-grid-6 {
width: 100%;
float: left;
}
.collection-text img {
margin-top: 35px;
}
.collection-text p {
line-height: 24px;
padding: 0 21px;
}
.view-second p {
margin: 0.3em 0 0;
line-height: 25px;
font-size: 13px;
}
.footer-right-w3 img {
width: 11%;
}
.events-text-w3-agile h4 {
width: 48%;
}
.events-left-agile-agileits-w3layouts {
min-height: 290px;
}
.events-text1 p {
padding: 145px 0px 6px 0px;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3, .wthree_blog_left_grid h3, .newsletter h4 {
font-size: 1.2em!important;
}
} | css/style.css | body {
padding: 0;
margin: 0;
background: #FFF;
font-family: 'open Sans', sans-serif;
}
body a {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
text-decoration: none;
}
body a:hover {
text-decoration: none;
}
body a:focus, a:hover {
text-decoration: none;
}
input[type="button"], input[type="submit"] {
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
h1, h2, h3, h4, h5, h6 {
margin: 0;
padding: 0;
text-align: center;
font-family: 'Josefin Sans', sans-serif;
letter-spacing:1px;
}
p {
margin:0;
}
ul {
margin:0;
padding:0;
}
label {
margin:0;
}
a:focus, a:hover {
text-decoration: none;
outline: none
}
img {
width: 100%;
}
/*-- //Reset Code --*/
/*-- Banner --*/
/*-- Navbar --*/
.navbar {
margin-bottom: 0;
position: absolute;
z-index: 99999;
background:transparent;
border: none;
border-radius: 0;
width: 100%;
padding: 10px 0;
}
.navbar-header h1{
color:#fff;
font-size:40px;
}
.navbar-header img{
width:22%;
}
.navbar-nav>li {
padding: 5px 15px;
}
.navbar-default .navbar-nav>li>a {
color: #fff;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
color: #FFF;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
color: #E91E63;
background-color: transparent;
}
/*-- Link-Hover-Effect --*/
.hover-effect a {
padding: 10px;
color: #237546;
font-weight: 700;
text-shadow: none;
-webkit-transition: color 0.3s;
-moz-transition: color 0.3s;
transition: color 0.3s;
font-family: 'Raleway', sans-serif;
}
.hover-effect a::before, .hover-effect a::after {
position: absolute;
left: 0;
width: 100%;
height: 2px;
background: #fff;
content: '';
opacity: 0;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-moz-transition: opacity 0.3s, -moz-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transform: translateY(-10px);
-moz-transform: translateY(-10px);
transform: translateY(-10px);
}
.hover-effect a::before {
top: 0;
-webkit-transform: translateY(-10px);
-moz-transform: translateY(-10px);
transform: translateY(-10px);
}
.hover-effect a::after {
bottom: 0;
-webkit-transform: translateY(10px);
-moz-transform: translateY(10px);
transform: translateY(10px);
}
.hover-effect a:hover, .hover-effect a:focus {
color: #fff;
}
.hover-effect a:hover::before, .hover-effect a:focus::before, .hover-effect a:hover::after, .hover-effect a:focus::after {
opacity: 1;
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
transform: translateY(0px);
}
/*-- //Link-Hover-Effect --*/
/*-- //Navbar --*/
/*-- Banner-Slider --*/
.slider {
position: relative;
}
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
-webkit-backface-visibility: hidden;
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li:first-child {
position: relative;
display: block;
float: left;
}
.rslides img {
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
.callbacks_nav {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
top: 50%;
left: 0;
opacity: 0.7;
z-index: 3;
text-indent: -9999px;
text-decoration: none;
height: 61px;
width: 38px;
background: url("../images/themes.gif") no-repeat left top;
margin-top: -45px;
}
.callbacks_nav.next {
left: auto;
background-position: right top;
right: 0;
}
ul.callbacks_tabs.callbacks1_tabs {
display: none;
}
.callbacks_nav {
left: 20px;
}
.callbacks_nav.next {
right: 20px;
}
/*-- //Banner --*/
/*--Trend--*/
.trend-w3layouts,.new-w3-agile,.services-agileits-w3layouts,.about-agileinfo,.team-w3layouts,.gallery-w3layouts,.contact-agileinfo,.events-w3layouts,.blog{
padding:50px 0px;
}
.trend-w3layouts h2,.new-w3-agile h3,.services-agileits-w3layouts h3,.services-bottom-w3-agileits h3,.about-agileinfo h2,.team-w3layouts h3,.gallery-w3layouts h2,.contact-agileinfo h2,.events-w3layouts h2{
font-size:40px;
color:#e91e63;
margin-bottom:40px;
}
.services-agileits-w3layouts h3{
color:#071ea0;
}
.trend-grid{
padding:0 15px;
}
.trend-w3layouts h4,.services-agileits-w3layouts h4{
font-size:27px;
color:#000;
margin-bottom:20px;
}
/*--flexisel--*/
.flex-slider{
background:#222227;
padding: 70px 0 165px 0;
}
#flexiselDemo1 {
display: none;
}
.nbs-flexisel-container {
position: relative;
max-width: 100%;
}
.nbs-flexisel-ul {
position: relative;
width: 9999px;
margin: 0px;
padding: 0px;
list-style-type: none;
text-align: center;
}
.nbs-flexisel-inner {
overflow: hidden;
margin: 0px auto;
}
.nbs-flexisel-item {
float: left;
margin: 0;
padding: 0px;
position: relative;
line-height: 0px;
}
.nbs-flexisel-item > img {
cursor: pointer;
position: relative;
}
/*---- Nav ---*/
.nbs-flexisel-nav-left, .nbs-flexisel-nav-right {
width:60px;
height:115px;
position: absolute;
cursor: pointer;
z-index: 100;
}
.nbs-flexisel-nav-left {
left:0%;
top: 15% !important;
display:none;
}
.nbs-flexisel-nav-right {
right: 0%;
top: 15% !important;
display:none;
}
/*--//flexisel--*/
/*--//trend--*/
/*--new games--*/
.new-grid-agile{
margin-top:30px;
}
.view {
overflow: hidden;
position: relative;
margin-top: 2em;
}
.view .mask, .view .content {
width: 90%;
position: absolute;
overflow: hidden;
padding: 6.5em 0;
}
.view img {
display: block;
position: relative;
}
.view h4 {
text-transform: capitalize;
color: #fff;
text-align: center;
position: relative;
font-size: 2.5em;
letter-spacing: 2px;
}
.view p {
font-size: 1em;
position: relative;
color: #fff !important;
padding: 0.5em 0;
text-align: center;
margin:0;
}
.view-eighth .mask {
background-color:rgba(0, 0, 0, 0.67);
top: -200px;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: all 0.3s ease-out 0.5s;
-moz-transition: all 0.3s ease-out 0.5s;
transition: all 0.3s ease-out 0.5s;
}
.view-eighth h2 {
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-o-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all 0.2s ease-in-out 0.1s;
-moz-transition: all 0.2s ease-in-out 0.1s;
transition: all 0.2s ease-in-out 0.1s;
}
.view-eighth p {
color: #333;
-webkit-transform: translateY(-200px);
-moz-transform: translateY(-200px);
-o-transform: translateY(-200px);
-ms-transform: translateY(-200px);
transform: translateY(-200px);
-webkit-transition: all 0.2s ease-in-out 0.2s;
-moz-transition: all 0.2s ease-in-out 0.2s;
-o-transition: all 0.2s ease-in-out 0.2s;
-ms-transition: all 0.2s ease-in-out 0.2s;
transition: all 0.2s ease-in-out 0.2s;
}
.view-eighth:hover .mask {
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
top: 0px;
-webkit-transition-delay: 0s;
-moz-transition-delay: 0s;
transition-delay: 0s;
-webkit-animation: bounceY 0.9s linear;
-moz-animation: bounceY 0.9s linear;
-ms-animation: bounceY 0.9s linear;
animation: bounceY 0.9s linear;
height: 100%;
}
.view-eighth:hover h2 {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-ms-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.view-eighth:hover p {
-webkit-transform: translateY(0px);
-moz-transform: translateY(0px);
-o-transform: translateY(0px);
-ms-transform: translateY(0px);
transform: translateY(0px);
-webkit-transition-delay: 0.2s;
-moz-transition-delay: 0.2s;
-o-transition-delay: 0.2s;
-ms-transition-delay: 0.2s;
transition-delay: 0.2s;
}
@keyframes bounceY {
0% { transform: translateY(-205px);}
40% { transform: translateY(-100px);}
65% { transform: translateY(-52px);}
82% { transform: translateY(-25px);}
92% { transform: translateY(-12px);}
55%, 75%, 87%, 97%, 100% { transform: translateY(0px);}
}
/*--//new games--*/
/*--services--*/
.services-agileits-w3layouts {
background: #f4f4f4;
}
.service-grid-agileits{
text-align:center;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits .glyphicon{
font-size:30px;
background:#E91E63;
padding:20px;
border-radius:50%;
color:#fff;
margin-bottom:15px;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits p{
font-size:14px;
line-height:27px;
color:#999;
}
.service-grid-agileits a{
color:#E91E63;
border:2px solid #E91E63;
font-size:15px;
margin-top:15px;
padding:7px 15px;
display:inline-block;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.service-grid-agileits:hover a{
color:#fff;
border:2px solid #071ea0;
background:#071ea0;
}
.service-grid-agileits:hover .glyphicon{
background:#071ea0;
}
/*--//services--*/
/*-- services bottom --*/
.services-bottom-w3-agileits{
background:url(../images/sbbg.jpg) no-repeat 0px 0px;
background-size:cover;
background-attachment:fixed;
-webkit-background-size:cover;
-moz-background-size:cover;
-o-background-size:cover;
-ms-background-size:cover;
position:relative;
min-height:400px;
padding:100px 0px;
}
.wthree_info {
width:100%;
text-align:center;
}
.services-bottom-w3-agileits h3{
color:#fff;
margin-bottom:10px;
}
.wthree_info p{
text-transform: capitalize;
color: #fff;
letter-spacing: 2px;
font-style:italic;
font-size:16px;
text-align:center;
}
a.learn{
color:#fff;
border:2px solid #fff;
font-size:14px;
padding:7px 15px;
display:inline-block;
margin-top:50px;
}
a.learn:hover{
color:#fff;
border:2px solid #e91e63;
background: #e91e63;
}
/*-- //services bottom --*/
/*-- //footer --*/
.footer{
padding:35px 0px;
}
.footer h4{
text-align:left;
color:#000;
font-size:27px;
margin-bottom:30px;
}
.footer-left-w3 ul li{
display:inline-block;
margin-bottom:35px;
}
.footer-left-w3 .glyphicon{
font-size:16px;
}
.footer-left-w3 ul li h6{
font-size:16px;
color:#000;
margin-left:10px;
}
.footer-left-w3 ul li a{
font-size:14px;
color:#000;
}
.footer-middle-wthree{
margin-top:25px;
}
.footer-right-w3 h4{
color: #E91E63;
}
.footer-right-w3 img {
width: 12%;
}
.footer-right-w3 p{
font-size:14px;
color:#000;
line-height:30px;
}
p.agileinfo{
margin-top:30px;
}
.copyright p {
text-align: center;
font-size: 14px;
color: #000;
border-top: 1px dotted #000;
padding: 30px 0px 0 0px;
}
.copyright p a{
color:#000;
}
.copyright p a:hover{
text-decoration:underline;
}
/*-- //footer --*/
/*-- sub-banner --*/
.sub-banner{
background:url(../images/banner3.jpg) no-repeat 0px 0px;
min-height:87px;
}
/*-- //sub-banner--*/
/*-- about--*/
.about-grids-w3-agileits {
margin: 3em 0 0;
}
.about-grid-left-agileits-w3layouts ul li{
display: inline-block;
margin-bottom: 2em;
font-size: 14px;
text-transform: capitalize;
color:#999;
}
.about-grid-left-agileits-w3layouts ul li a{
text-decoration:none;
color:#999;
}
.about-grid-left-agileits-w3layouts ul li i{
padding: .7em 1em;
background: #E91E63;
color: #fff;
margin-right: 2em;
border-radius: 60%;
font-style:normal;
}
.about-grid-right-w3-agile img {
padding: .5em;
border: 1px dotted #999;
}
.link {
outline: none;
text-decoration: none;
position: relative;
line-height: 1;
display: inline-block;
}
/* Kumya */
.link--kumya {
overflow: hidden;
padding:0;
line-height: 1;
z-index: 9999;
padding: 10px;
display: inline-flex;
}
.link--kumya:hover {
color:#000;
}
.link--kumya::after {
content: '';
position: absolute;
height: 100%;
width: 100%;
top: 0;
right: 0;
z-index: -1;
background:#0b219d;
-webkit-transform: translate3d(101%,0,0);
transform: translate3d(101%,0,0);
-webkit-transition: -webkit-transform 0.5s;
transition: transform 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.link--kumya:hover::after,.welcome-grid:hover .link--kumya::after{
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
.link--kumya span {
display: block;
position: relative;
}
.link--kumya span::before {
content: attr(data-letters);
position: absolute;
color: #fff;
left: 0;
overflow: hidden;
white-space: nowrap;
width: 0%;
-webkit-transition: width 0.5s;
transition: width 0.5s;
-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.link--kumya:hover span::before,.welcome-grid:hover .link--kumya span::before{
width: 100%;
}
.grid-w3ls {
position: relative;
margin: 0 auto;
max-width: 1000px;
list-style: none;
text-align: center;
}
/* Common style */
.grid-w3ls figure {
position: relative;
float: none;
overflow: hidden;
margin: 0;
width: 100%;
background: transparent;
text-align: center;
}
.grid-w3ls figure img {
/*-- agileits --*/
position: relative;
display: block;
width: 100%;
opacity: 0.8;
}
.grid-w3ls figure figcaption {
padding: 2em;
color: #fff;
text-transform: uppercase;
font-size: 1.25em;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.grid-w3ls figure figcaption,
.grid-w3ls figure figcaption > a {
position: absolute;
top: 0;
left: 9px;
width: 96.8%;
height: 100%;
}
/***** Zoe *****/
/*---------------*/
figure.effect-zoe figcaption {
top: auto;
bottom: 0;
padding: 1em;
height:3.3em;
background: #E91E63;
color: #212121;
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,100%,0);
transform: translate3d(0,100%,0);
}
figure.effect-zoe h3 {
float: left;
}
figure.effect-zoe p.icon-links a {
float: right;
color: #FFFFFF;
font-size: 1em;
}
figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
color: #252d31;
}
figure.effect-zoe p.description {
position: absolute;
bottom: 8em;
padding: 2em;
color: #fff;
text-transform: none;
font-size: .8em;
line-height: 1.8em;
background: rgba(53, 53, 53, 0.25);
opacity: 0;
-webkit-transition: opacity 0.35s;
transition: opacity 0.35s;
-webkit-backface-visibility: hidden;
}
figure.effect-zoe h3,
figure.effect-zoe p.icon-links a {
-webkit-transition: -webkit-transform 0.35s;
transition: transform 0.35s;
-webkit-transform: translate3d(0,200%,0);
transform: translate3d(0,200%,0);
transition:.5s ease-in;
}
figure.effect-zoe p.icon-links a span::before {
display: inline-block;
padding: 8px 10px;
}
figure.effect-zoe h3 {
display: inline-block;
font-size:1.3em;
color:#fff;
}
figure.effect-zoe h3 span {
color: #0c1e81;
margin-left: 15px;
}
figure.effect-zoe:hover p.description {
opacity: 1;
}
figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h3,
figure.effect-zoe:hover p.icon-links a {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
bottom: 9px;
}
figure.effect-zoe:hover h3 {
-webkit-transition-delay: 0.05s;
transition-delay: 0.05s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(3) {
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
figure.effect-zoe:hover p.icon-links a:nth-child(2) {
-webkit-transition-delay: 0.15s;
transition-delay: 0.15s;
}
figure.effect-zoe:hover p.icon-links a:first-child {
-webkit-transition-delay: 0.2s;
transition-delay: 0.2s;
}
/*-- //about --*/
/*-- Collections --*/
.collection-agileits{
padding:50px 0px;
}
.collection-left, .collection-right {
padding: 0;
}
.collection-grid {
padding: 0;
height: 348.5px;
}
.collection-text {
background-color: #000;
text-align: center;
padding-top: 75px;
}
.collection-text img {
width: 50px;
}
.collection-text h3 {
color: #FFF;
margin: 30px 0 20px;
}
.collection-text p {
font-size: 14px;
font-weight: 600;
color: #999;
line-height: 30px;
padding: 0 35px;
}
.collection-left{
background:url(../images/c1.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:700px;
}
.collection-grid.collection-image.collection-grid-2 {
background: url(../images/c4.jpg) no-repeat 0px 0px;
background-size:cover;
}
.collection-grid.collection-image.collection-grid-4 {
background: url(../images/c3.jpg) no-repeat 0px 0px;
background-size:cover;
}
.collection-grid.collection-image.collection-grid-6 {
background: url(../images/c2.jpg) no-repeat 0px 0px;
background-size:cover;
}
/*-- //Collections --*/
/*-- team --*/
.team-w3layouts {
background: #e8e8e8;
}
.w3l_team_grid h4{
font-size:1.6em;
color:#E91E63;
margin:1em 0 .5em;
}
.w3l_team_grid p{
color:#999;
text-align:center;
}
.view {
overflow: hidden;
position: relative;
}
.view-second .mask,.view-second .content {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
padding: 6em 1em;
}
.view img {
display: block;
position: relative;
}
.view-second img {
-webkit-transition: all 0.2s ease-in;
-moz-transition: all 0.2s ease-in;
-o-transition: all 0.2s ease-in;
-ms-transition: all 0.2s ease-in;
transition: all 0.2s ease-in;
}
.view-second .mask {
background-color: rgba(19, 19, 19, 0.35);
width: 520px!important;
padding: 60px!important;
height: 520px!important;
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transform: translate(265px, 145px) rotate(45deg);
-moz-transform: translate(265px, 145px) rotate(45deg);
-o-transform: translate(265px, 145px) rotate(45deg);
-ms-transform: translate(265px, 145px) rotate(45deg);
transform: translate(265px, 145px) rotate(45deg);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-second .w3l_social_icons1 {
border-bottom: 1px solid #fff;
padding-bottom: 1em;
background: transparent;
margin: 20px 40px 0px 40px;
-webkit-transform: translate(200px, -200px);
-moz-transform: translate(200px, -200px);
-o-transform: translate(200px, -200px);
-ms-transform: translate(200px, -200px);
transform: translate(200px, -200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.view-second:hover .mask,.w3l_team_grid:hover .view-second .mask{
-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transform:translate(-125px, -45px) rotate(45deg);
-moz-transform:translate(-125px, -45px) rotate(45deg);
-o-transform:translate(-125px, -45px) rotate(45deg);
-ms-transform:translate(-125px, -45px) rotate(45deg);
transform: translate(-125px, -45px) rotate(45deg);
}
.view-second:hover .w3l_social_icons1,.w3l_team_grid:hover .view-second .w3l_social_icons1{
-webkit-transform: translate(0px,0px);
-moz-transform: translate(0px,0px);
-o-transform: translate(0px,0px);
-ms-transform: translate(0px,0px);
transform: translate(0px,0px);
-webkit-transition-delay: 0.3s;
-moz-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
-ms-transition-delay: 0.3s;
transition-delay: 0.3s;
}
.view-second:hover p,.w3l_team_grid:hover .view-second p{
-webkit-transform: translate(0px,0px);
-moz-transform: translate(0px,0px);
-o-transform: translate(0px,0px);
-ms-transform: translate(0px,0px);
transform: translate(0px,0px);
-webkit-transition-delay: 0.4s;
-moz-transition-delay: 0.4s;
-o-transition-delay: 0.4s;
-ms-transition-delay: 0.4s;
transition-delay: 0.4s;
}
.view-second p {
-webkit-transform: translate(-200px, 200px);
-moz-transform: translate(-200px, 200px);
-o-transform: translate(-200px, 200px);
-ms-transform: translate(-200px, 200px);
transform: translate(-200px, 200px);
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
color:#fff;
margin:1em 0 0;
line-height:2em;
text-align:left;
}
.w3l_social_icons {
float: left;
margin: 1.5em 0 0;
}
.w3l_social_icons1{
float:none !important;
margin:0 !important;
}
.w3l_social_icons ul li{
display:inline-block;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
/*-- //team --*/
/*-- gallery --*/
.gallery-w3layouts {
background-color: #F7F7F7;
}
.gallery-grids {
margin: 3em 0 0;
}
.gallery-grid{
float:left;
width:25%;
}
.gallery-grid a {
display: block;
overflow: hidden;
}
.gallery-grid img{
padding:.5em;
}
img.zoom-img {
transform: scale(1, 1);
-webkit-transform: scale(1, 1);
-moz-transform: scale(1, 1);
-ms-transform: scale(1, 1);
-o-transform: scale(1, 1);
transition-timing-function: ease-out;
-webkit-transition-timing-function: ease-out;
-moz-transition-timing-function: ease-out;
-ms-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
-webkit-transition-duration: .5s;
-moz-transition-duration: .5s;
-ms-transition-duration: .5s;
-o-transition-duration: .5s;
}
img.zoom-img:hover{
transform: scale(.9);
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
-ms-transform: scale(.9);
-o-transform: scale(.9);
-webkit-transition-timing-function: ease-in-out;
-webkit-transition-duration: 750ms;
-moz-transition-timing-function: ease-in-out;
-moz-transition-duration: 750ms;
-ms-transition-timing-function: ease-in-out;
-o-transition-timing-function: ease-in-out;
-ms-transition-duration: 750ms;
-o-transition-duration: 750ms;
overflow: hidden;
}
.span1 {
margin: 18px 0;
padding: 15px 0;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
.span2{
border-bottom: 1px solid #Eee;
padding-bottom: 15px;
}
.span3 {
border-bottom: 1px solid #Eee;
padding: 15px 0px;
}
p.left {
float: left;
font-size: 14px;
color: #000;
letter-spacing: 3px;
margin-right: 5%;
width: 35%;
font-weight: 600;
}
p.right {
font-size: 14px;
float: left;
color: #949494;
letter-spacing: 2px;
}
.pop-up-content-agileits-w3layouts h4{
font-size:27px;
color:#fff;
text-align:left;
margin-bottom:25px;
}
.pop-up-content-agileits-w3layouts p{
color:#eee;
font-size:14px;
line-height:27px;
}
p.agileits{
margin:20px 0;
}
/*-- //gallery --*/
/*--events--*/
.events-left-agile-agileits-w3layouts{
background:url(../images/e1.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:400px;
padding:0;
}
.events-right-agile{
padding:0;
}
.events-text-w3-agile{
padding:20px 0px 0px 30px;
}
.events-text-w3-agile h4 {
background: #dfdc00;
padding: 10px 0px;
color: #000;
width: 24%;
font-size: 17px;
}
.events-text-w3-agile p {
font-size: 30px;
color: #dfdc00;
padding: 54px 0px 6px 0px;
font-weight: 600;
}
.events-text1 p {
font-size: 30px;
color: #dfdc00;
padding: 250px 0px 6px 0px;
font-weight: 600;
}
.events-text-w3-agile ul li{
display:inline;
color:#fff;
}
.events-text-w3-agile ul li:nth-child(2) {
margin-left:20px;
}
.events-right-top{
background:url(../images/e2.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:200px;
}
.events-right-bottom{
background:url(../images/e3.jpg) no-repeat 0px 0px;
background-size:cover;
min-height:200px;
}
.events-section2-agileinfo{
background: #f4f4f4;
padding:50px 0px;
}
.blog-text-w3ls h4{
color: #333;
font-size:35px;
text-align:left;
font-weight: 400;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.blog-text-w3ls h4:hover{
color: #e91e63;
}
.item_info {
border: 1px solid #ddd;
padding: 0.5em 2em;
margin: 2.2em 0;
}
.item_info ul li i {
color:#8a8a8a;
margin-right: 15px;
}
.item_info ul li {
display: inline-block;
font-size: 1.1em;
margin-right: 27px;
vertical-align: middle;
color: #777;
list-style: none;
}
.item_info ul li a{
color: #777;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.item_info ul li a:hover{
color:#e91e63
}
.blog-text-w3ls p{
color: #999;
font-size:14px;
text-align:left;
line-height:30px;
}
a.blog-read{
color: #001fcc;
border: 2px solid #001fcc;
font-size: 15px;
margin-top: 30px;
padding: 7px 15px;
display: inline-block;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
a.blog-read:hover{
color: #fff;
background:#E91E63;
border: 2px solid #E91E63;
}
.blog2-w3ls{
margin:30px 0px;
}
/*--//events --*/
/*-- Contact --*/
.contact-left-agile h4 {
font-size: 21px;
text-align: left;
margin-bottom: 13px;
color: #E91E63;
font-weight: 700;
}
.contact-left-agile ul li {
text-align: left;
display: block;
font-size: 14px;
line-height: 25px;
color:#999;
}
.contact-left-agile .phone-agileits-w3layouts {
margin: 25px 0;
}
.contact-left-agile p {
font-size: 14px;
line-height: 25px;
color: #999;
}
.contact-left-agile p a{
color: #999;
font-size:14px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
width: 48.2%;
float: left;
margin: 0 10px 25px 0;
padding: 15px 10px;
background-color: transparent;
border: none;
border-left: 1px solid rgb(2, 24, 136);
border-bottom: 1px solid rgb(2, 24, 136);
outline: transparent;
}
.contact-right-w3 textarea {
width: 100%;
height: 125px;
}
.contact-right-w3 input.more_btn {
float: right;
padding: 7px 15px;
background-color: transparent;
border: 2px solid rgb(2, 24, 136);
outline: transparent;
color:rgb(2, 24, 136);
}
.contact-right-w3 input.more_btn:hover {
color: #FFf;
border: 2px solid #FF166D;
background:#FF166D;
}
::-webkit-input-placeholder{
color:rgb(2, 24, 136) !important;
}
/*-- Map --*/
.map iframe {
width: 100%;
height: 400px;
}
.map-hover {
position: relative;
}
.map-hover-1 {
position: absolute;
width: 100%;
height: 100%;
top: 0;
background-color: rgba(0, 0, 0, 0.46);
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
.map-hover-1:hover {
background-color: transparent;
transition: 0.5s all;
-webkit-transition: 0.5s all;
-moz-transition: 0.5s all;
-o-transition: 0.5s all;
-ms-transition: 0.5s all;
}
/*-- //Map --*/
/*-- //Contact-Page-Styling --*/
/*-- single --*/
.agileits_breadcrumbs {
padding: 1em 0;
background: #dfdc00;
}
.agileits_breadcrumbs_left {
width: 70%;
float: left;
}
.agileits_breadcrumbs_left ul{
margin-top:5px;
}
.agileits_breadcrumbs_right {
width: 30%;
float: left;
}
.agileits_breadcrumbs_left ul li {
display: inline-block;
color: #212121;
text-transform: uppercase;
}
.agileits_breadcrumbs_right h3{
font-size: 2em;
color: #212121;
font-weight:700;
}
.blog{
background: #f4f4f4;
}
.wthree_blog_left_grid h4 {
font-size: 1.5em;
color:#e91e63;
margin: 1em 0 0;
font-weight:700;
text-align: left;
}
.wthree_blog_left_grid ul li i {
padding: 0 1em;
}
.wthree_blog_left_grid h3 {
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
text-transform: capitalize;
text-align: left;
font-weight: 700;
margin-top: 10px;
}
.wthree_blog_left_grid ul {
padding: 0em 0 1em 0;
text-align:left;
}
.wthree_blog_left_grid ul li {
display: inline-block;
color:#8a8a8a;
line-height:30px;
}
.wthree_blog_left_grid ul li a{
display: inline-block;
color: #212121;
}
.wthree_blog_left_grid ul li span {
color:#8a8a8a;
padding-right: 1em;
}
.wthree_blog_left_grid p{
text-align:left;
line-height:27px;
color: #999;
font-size:14px;
}
.wthree_blog_left_grid p i {
display: block;
margin: 1em 0;
color: #999;
text-align:left;
}
.agileits_share ul{
text-align:left;
}
.agileits_share ul li{
display:inline-block;
}
.agileits_share ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -4px;
display: inline-block;
border: none;
}
.agileits_share ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -4px;
}
.agileits_share ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -4px;
}
.agileits_share ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -4px;
}
.agileits_share ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -47px;
}
.agileits_share ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -47px;
}
.agileits_share ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -47px;
}
.agileits_share ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -47px;
}
.agileits_reply{
text-align:left;
}
.agileits_reply h3{
font-size: 1.5em;
color: #212121;
line-height: 1.5em;
text-transform: capitalize;
text-align:left;
margin-top:30px;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
width: 100%;
padding: 13px;
border: 1px solid #000;
margin-bottom: 30px;
background:transparent;
outline:none;
}
.agileits_reply textarea{
width: 100%;
padding: 10px;
border: 1px solid #000;
margin-bottom:15px;
height:150px;
resize:none;
background:transparent;
outline:none;
}
.agileits_reply input[type="submit"] {
padding: 10px 35px;
border: none;
border: 2px solid rgb(2, 24, 136);
color:rgb(2, 24, 136);
outline:none;
background:transparent;
}
.agileits_reply input[type="submit"]:hover{
border: 2px solid #E91E63;
color:#fff;
background:#E91E63;
}
.w3ls_search input[type="text"] {
outline: none;
padding: 10px;
background: #f5f5f5;
border: 1px solid #E1E1E1;
color: #212121;
font-size: 14px;
width: 80%;
}
.w3ls_search input[type="submit"] {
outline: none;
padding: 10px;
background: url(../images/img-sp.png) no-repeat 26px -392px rgb(2, 24, 136);
border: none;
width: 19%;
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 26px -392px #999;
}
.w3l_categories ul li, .w3l_archives ul li {
margin-bottom: 1.5em;
background: url(../images/img-sp.png) no-repeat 0px -183px;
padding-left: 2.5em;
list-style-type: none;
text-transform: capitalize;
font-family: 'Poppins', sans-serif;
text-align:left;
color: #999;
font-size:14px;
}
.w3l_categories ul li a {
color: #999;
text-decoration: none;
line-height: 1.8em;
font-size:14px;
}
.w3l_categories ul li a:hover{
color: #e91e63;
}
.w3agile_flickr_post_left {
width: 48%;
float: left;
margin: 1%;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3 ,.wthree_blog_left_grid h3,.newsletter h4{
font-size: 1.5em!important;
color: #212121;
font-weight:700;
margin-bottom: 1em;
text-align:left;
}
.w3l_categories, .w3l_archives {
margin: 3em 0;
}
.agileits_share ul{
text-align:left;
}
.agileits_share ul li{
display:inline-block;
}
.agileits_share ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -4px;
display: inline-block;
border: none;
}
.agileits_share ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -4px;
}
.agileits_share ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -4px;
}
.agileits_share ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -4px;
}
.agileits_share ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -47px;
}
.agileits_share ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -47px;
}
.agileits_share ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -47px;
}
.agileits_share ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -47px;
}
/*-- //single --*/
/*-- responsive--*/
@media screen and (max-width: 1440px){
.pop-up-content-agileits-w3layouts h4 {
margin-bottom: 15px;
}
p.agileits {
margin: 5px 0;
}
p.right {
letter-spacing: 0px;
}
.collection-grid {
padding: 0;
height: 313px;
}
.collection-text img {
width: 50px;
margin-top: 45px;
}
.collection-left {
min-height: 626px;
}
}
@media screen and (max-width: 1366px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
padding: 40px 20px;
}
.collection-grid {
padding: 0;
height: 297px;
}
.collection-text h3 {
margin: 25px 0 20px;
}
.collection-text p {
padding: 0 25px;
}
.collection-left {
min-height: 594.4px;
}
}
@media screen and (max-width: 1280px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 55%
}
.collection-grid {
padding: 0;
height: 278px;
}
.collection-text img {
margin-top: 30px;
}
.collection-text p {
padding: 0px 20px;
}
.collection-left {
min-height: 556.4px;
}
}
@media screen and (max-width: 1080px){
.view .mask, .view .content {
width: 87%;
padding: 5.5em 0;
}
.flex-control-nav {
top: 54px;
right:0;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 70%
}
.about-grid-left-agileits-w3layouts ul li {
margin-bottom: 1.6em;
}
.collection-grid {
padding: 0;
height: 234px;
}
.collection-text img {
margin-top: 15px;
}
.collection-text h3 {
margin: 12px 0 12px;
}
.collection-text p {
font-size: 13px;
line-height: 26px;
}
.view-second .mask {
width: 520px!important;
}
.view-second .content {
padding:2em 1em!important;
width:100%!important;
}
.collection-left {
min-height: 468.4px;
}
.events-text-w3-agile h4 {
width: 32%;
}
.blog-text-w3ls h4 {
color: #333;
}
.events-text-w3-agile p {
font-size: 25px;
}
.item_info {
margin: 1.2em 0;
}
.item_info ul li {
margin-right: 23px;
}
a.blog-read {
margin-top:12px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 18px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover{
background: url(../images/img-sp.png) no-repeat 18px -392px #999;
}
}
@media screen and (max-width: 1024px){
.events-text-w3-agile p {
font-size: 23px;
}
}
@media screen and (max-width: 991px){
.navbar-header h1 {
margin-top:7px;
font-size: 35px;
}
.navbar-header img {
width: 18%;
}
.navbar-nav>li {
padding: 5px 8px;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
font-size: 35px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 24px;
}
.service-grid-agileits {
width: 25%;
float: left;
}
.service-grid-agileits .glyphicon {
font-size: 25px;
padding: 15px;
}
.new-grid-w3l,.new-grid-agile{
width: 25%;
float: left;
}
.view .mask, .view .content {
width: 83%;
padding: 50px 0;
}
.view h4 {
font-size: 1.8em;
}
.view p {
font-size: 12px;
}
.footer-left-w3,.footer-middle-w3,.footer-right-w3 {
width: 33.3%;
float: left;
}
.footer-middle-w3{
padding:0;
}
.img-w3-agile{
width:25%;
float:left;
padding:0px 3px;
}
.footer-middle-wthree {
margin-top: 7px;
}
.footer-left-w3 ul li {
margin-bottom: 22px;
}
.footer-right-w3 p {
font-size: 13px;
line-height: 25px;
}
p.agileinfo {
margin-top: 12px;
}
.w3ls-left,.w3ls-right{
width:50%;
float:left;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 72%;
}
.about-grid-left-agileits-w3layouts,.about-grid-right-w3-agile {
width: 50%;
float: left;
}
figure.effect-zoe p.description {
padding: 1em;
}
.about-grid-left-agileits-w3layouts ul li {
margin-bottom: 0.6em;
}
.about-grid-left-agileits-w3layouts ul li i {
padding: .4em 0.7em;
margin-right: 1em;
}
figure.effect-zoe h3 {
font-size: 1.1em;
}
.collection-text img {
width: 45px;
}
.w3l_team_grid {
width: 25%;
float: left;
padding: 0 10px;
}
.w3l_social_icons ul li a,.w3l_social_icons ul li a.google,.w3l_social_icons ul li a.twitter,.w3l_social_icons ul li a.facebook{
background-size:400px;
width:27px;
height:27px;
}
.w3l_social_icons ul li a{
background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.google {
background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.twitter {
background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.facebook {
background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a:hover {
background: url('../images/img-sprite.png') no-repeat -6px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.google:hover {
background: url('../images/img-sprite.png') no-repeat -45px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.twitter:hover{
background: url('../images/img-sprite.png') no-repeat -86px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.facebook:hover {
background: url('../images/img-sprite.png') no-repeat -125px -41px;
background-size:400px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 0.5em;
}
.view-second p {
font-size:13px;
margin: 0.6em 0 0;
line-height: 1.5em;
padding-top:0;
}
.footer-right-w3 img {
width: 16%;
}
.events-left-agile-agileits-w3layouts {
width: 55%;
float: left;
}
.events-right-agile {
width: 45%;
float: left;
}
.events-text-w3-agile p {
font-size: 23px;
}
.blog-image-w3l {
width: 33.3%;
float: left;
}
.blog-text-w3ls {
width: 66.6%;
float: left;
padding-left: 0;
}
.item_info {
padding: 0.5em;
}
.item_info ul li {
font-size: 1em;
margin-right: 16px;
}
.item_info ul li i {
margin-right: 5px;
}
.blog-text-w3ls h4 {
font-size: 30px;
}
.item_info {
margin: 1em 0;
}
.blog-text-w3ls p {
font-size: 13px;
line-height: 26px;
}
.blog2-w3ls {
margin: 50px 0px;
}
.contact-left-agile {
width: 33.3%;
float: left;
}
.contact-right-w3{
width: 66.6%;
float: left;
}
.contact-right-w3 input.text{
width: 47.7%;
}
.map iframe {
width: 100%;
height: 350px;
}
.wthree_blog_left {
width: 55%;
float: left;
}
.wthree_blog_right {
width: 45%;
float: left;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 12px -392px rgb(2, 24, 136);
width:18%;
}
.w3ls_search input[type="submit"]:hover{
background: url(../images/img-sp.png) no-repeat 12px -392px #999;
width:18%;
}
.wthree_blog_left_grid ul li i {
padding: 0 0.5em;
}
}
@media screen and (max-width: 900px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 80%;
}
.events-text-w3-agile {
padding: 20px 0px 0px 20px;
}
.events-text-w3-agile p {
font-size: 21px;
}
}
@media screen and (max-width: 800px){
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 90%;
}
.collection-text img {
width: 35px;
margin-top:20px;
}
.collection-text h3 {
margin: 8px 0 8px;
font-size: 24px;
}
.collection-text p {
font-size: 13px;
line-height: 23px;
padding:0 16px;
}
.events-text-w3-agile h4 {
width: 40%;
}
.events-text-w3-agile p {
font-size: 19px;
}
}
@media screen and (max-width: 768px){
.collection-text p {
padding: 0 10px;
}
}
@media screen and (max-width: 736px){
.navbar-header h1 {
text-align: left;
padding-left: 15px;
}
.navbar-default .navbar-toggle {
background: transparent;
border: 2px solid #E91E63;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #E91E63;
}
.navbar-toggle {
border-radius: 0px;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
background-color: transparent;
}
.navbar-header img {
width: 7%;
}
.navbar-nav {
margin: 0;
background: #02178e;
}
.navbar-collapse.in {
overflow-y: inherit;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 22px;
}
.view .mask, .view .content {
padding: 45px 0;
}
.services-bottom-w3-agileits {
min-height: 325px;
padding: 85px 0px;
}
.collection-left {
width: 50%;
margin: 0 auto;
}
.collection-right {
width: 100%;
}
.collection-grid-1,.collection-grid-2,.collection-grid-3,.collection-grid-4,.collection-grid-5,.collection-grid-6{
width: 33.3%;
float: left;
}
.collection-text img {
margin-top: 33px;
}
.collection-text p {
line-height: 26px;
}
.item_info ul li {
margin-right: 14px;
}
.contact-right-w3 input.text{
width: 47.6%;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 10px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 10px -392px #999;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3, .wthree_blog_left_grid h3, .newsletter h4 {
font-size: 1.4em!important;
}
.wthree_blog_left_grid ul li span {
color: #8a8a8a;
padding-right: 0.7em;
}
}
@media screen and (max-width:667px){
.callbacks_nav {
height: 61px;
width: 32px;
background-size: 58px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 19px;
}
.service-grid-agileits {
width: 50%;
float: left;
}
.service-grid-agileits-bottom{
margin-top:50px;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 10px;
}
.view .mask, .view .content {
padding: 37px 0;
width:87%;
}
.footer-left-w3 ul li h6 {
font-size: 15px;
margin-left: 5px;
}
.w3ls-right {
padding-left: 0;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
padding: 25px 5px;
}
.span1 {
margin: 15px 0;
padding: 10px 0;
}
.span2,.span3 {
padding-bottom: 10px;
}
p.left {
letter-spacing: 2px;
}
.pop-up-content-agileits-w3layouts p {
font-size: 13px;
line-height: 25px;
}
.about-grid-left-agileits-w3layouts ul li i {
margin-right: 0.2em;
}
.about-grid-left-agileits-w3layouts ul li {
font-size: 13.5px;
}
.w3l_team_grid {
width: 50%;
float: left;
padding: 0 15px;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 1.5em;
}
.view-second p {
font-size: 15px;
margin: 1.6em 0 0;
line-height: 2em;
padding-top: 0;
}
.footer h4 {
font-size:25px;
}
figure.effect-zoe h3 {
font-size: 1em;
}
figure.effect-zoe h3 span {
margin-left: 7px;
}
figure.effect-zoe p.icon-links a {
font-size: 0.9em;
}
.grid-w3ls figure figcaption, .grid-w3ls figure figcaption > a {
left: 8px;
}
figure.effect-zoe:hover figcaption, figure.effect-zoe:hover h3, figure.effect-zoe:hover p.icon-links a {
bottom: 8px;
}
figure.effect-zoe figcaption {
padding: 0.5em;
height: 2.5em;
}
figure.effect-zoe p.description {
padding: 0.5em;
bottom:5em;
}
.item_info ul li {
font-size: 12px;
margin-right: 16px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
margin: 0 8px 25px 0;
}
.map iframe {
width: 100%;
height: 300px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 7px -392px rgb(2, 24, 136);
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 7px -392px #999;
}
.wthree_blog_left_grid ul li span {
color: #8a8a8a;
padding-right: 0.3em;
}
.wthree_blog_left_grid ul li i {
padding: 0 0.3em;
}
}
@media screen and (max-width:640px){
.footer-left-w3 ul li h6 {
font-size: 14px;
margin-left: 5px;
}
.footer-left-w3 .glyphicon {
font-size: 15px;
}
.pop-up-content-agileits-w3layouts h4 {
margin-bottom: 8px;
}
.about-grid-left-agileits-w3layouts{
padding-right:0;
}
.about-grid-right-w3-agile {
padding-left:0;
}
.footer h4 {
font-size: 24px;
}
.events-text-w3-agile p {
font-size: 16px;
}
.item_info ul li {
font-size: 12px;
margin-right: 12px;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
margin-bottom: 10px;
}
}
@media screen and (max-width:600px){
.new-grid-w3l, .new-grid-agile {
padding: 0px 5px;
}
.view {
margin-top: 1em;
}
.view .mask, .view .content {
padding: 37px 0;
width: 93%;
}
.footer-left-w3, .footer-middle-w3, .footer-right-w3 {
width: 100%;
float: left;
}
.footer-middle-w3{
margin:30px 0;
}
.footer h4 {
margin-bottom: 20px;
}
.footer-right-w3 h4 {
margin-bottom: 10px;
}
.mfp-close {
left: -30px;
}
.about-grid-left-agileits-w3layouts ul li {
font-size: 12.6px;
}
.footer-right-w3 img {
width: 7%;
}
.events-text-w3-agile h4 {
width: 57%;
}
.item_info ul li {
font-size: 12px;
margin-right: 5px;
}
.w3ls_search input[type="submit"] {
background: url(../images/img-sp.png) no-repeat 4px -388px rgb(2, 24, 136);
background-size: 495px;
}
.w3ls_search input[type="submit"]:hover {
background: url(../images/img-sp.png) no-repeat 4px -388px #999;
background-size: 495px;
}
}
@media screen and (max-width:568px){
.trend-w3layouts, .new-w3-agile, .services-agileits-w3layouts, .about-agileinfo, .team-w3layouts, .gallery-w3layouts, .contact-agileinfo, .events-w3layouts, .blog {
padding: 30px 0px;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 7px;
width:50%;
float:left;
}
.view h4 {
font-size: 2.2em;
}
.view p {
font-size: 14px;
}
.view .mask, .view .content {
padding: 83px 0;
width: 94.5%;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 98%;
}
.mfp-close {
left: -8px;
top:-40px;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
margin-bottom: 30px;
}
.gallery-grids {
margin:0;
}
.about-grid-left-agileits-w3layouts, .about-grid-right-w3-agile {
width: 100%;
float: left;
padding:0 15px;
}
.about-grid-left-agileits-w3layouts ul li {
display: block;
margin-left:25%;
}
.item_info ul li {
font-size: 11px;
margin-right: 6px;
}
.map iframe {
width: 100%;
height: 270px;
}
.contact-right-w3 input.text, .contact-right-w3 textarea {
margin: 0 7px 25px 0;
}
.agileits_reply input[type="text"], .agileits_reply input[type="email"] {
padding: 9px;
}
}
@media screen and (max-width:480px){
.callbacks_nav {
top: 60%;
}
.navbar-header h1 {
font-size: 27px;
}
.navbar-header img {
width: 8%;
}
.view .mask, .view .content {
padding: 67px 0;
width: 93.5%;
}
.services-bottom-w3-agileits h3{
font-size:30px;
}
.wthree_info p {
font-size: 14px;
letter-spacing:1px;
}
.gallery-grid {
float: left;
width: 50%;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 75%;
margin-top:100px;
}
.w3ls-left, .w3ls-right {
width: 100%;
float: left;
}
.w3ls-right {
padding-left: 15px;
margin-top:20px;
}
.sub-banner {
min-height: 72px;
}
.collection-left {
width: 75%;
margin: 0 auto;
}
.collection-text img {
margin-top: 17px;
}
.collection-text p {
line-height: 24px;
padding:0 6px;
}
.view-second p {
margin: 0.7em 0 0;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 21%;
}
.events-left-agile-agileits-w3layouts {
width: 100%;
float: left;
min-height:310px;
}
.events-text1 p {
padding: 180px 0px 6px 0px;
}
.events-right-top,.events-right-bottom {
min-height: 175px;
}
.events-right-agile {
width: 100%;
float: left;
}
.events-text-w3-agile h4 {
width: 36%;
}
.blog-image-w3l {
width: 100%;
float: left;
}
.blog-text-w3ls {
width: 100%;
float: left;
padding-left: 15px;
}
.blog-text-w3ls h4 {
font-size: 25px;
}
.map iframe {
width: 100%;
height: 250px;
}
.contact-right-w3 input.text {
width: 99.6%;
}
.contact-left-agile h4 {
font-size: 19px;
}
.wthree_blog_left {
width: 100%;
float: left;
margin-bottom:50px;
}
.wthree_blog_right {
width: 100%;
float: left;
}
}
@media screen and (max-width:414px){
.rslides img {
height: 225px;
}
.navbar-header img {
width: 10%;
}
.trend-w3layouts h2, .new-w3-agile h3, .services-agileits-w3layouts h3, .services-bottom-w3-agileits h3, .about-agileinfo h2, .team-w3layouts h3, .gallery-w3layouts h2, .contact-agileinfo h2, .events-w3layouts h2 {
font-size: 28px;
}
.view .mask, .view .content {
padding: 49px 0;
width: 93%;
}
.view h4 {
font-size: 2em;
}
.services-bottom-w3-agileits {
min-height: 265px;
padding: 50px 0px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 14%;
}
.collection-grid-1, .collection-grid-2, .collection-grid-3, .collection-grid-4, .collection-grid-5, .collection-grid-6 {
width: 50%;
float: left;
}
.w3l_social_icons ul li a,.w3l_social_icons ul li a.google,.w3l_social_icons ul li a.twitter,.w3l_social_icons ul li a.facebook{
background-size:400px;
width:27px;
height:27px;
}
.w3l_social_icons ul li a{
background: url('../images/img-sprite.png') no-repeat -6px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.google {
background: url('../images/img-sprite.png') no-repeat -45px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.twitter {
background: url('../images/img-sprite.png') no-repeat -86px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a.facebook {
background: url('../images/img-sprite.png') no-repeat -125px -6px #fff;
background-size:400px;
}
.w3l_social_icons ul li a:hover {
background: url('../images/img-sprite.png') no-repeat -6px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.google:hover {
background: url('../images/img-sprite.png') no-repeat -45px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.twitter:hover{
background: url('../images/img-sprite.png') no-repeat -86px -41px;
background-size:400px;
}
.w3l_social_icons ul li a.facebook:hover {
background: url('../images/img-sprite.png') no-repeat -125px -41px;
background-size:400px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 0.1em;
}
.view-second p {
margin: 0.3em 0 0;
line-height: 19px;
font-size: 13px;
}
.view-second .content {
padding: 1em 1em!important;
}
.footer-right-w3 img {
width: 9%;
}
.contact-left-agile {
width: 100%;
float: left;
margin-bottom:30px;
}
.contact-right-w3 {
width: 100%;
float: left;
}
.contact-left-agile h4 {
font-size: 17px;
}
}
@media screen and (max-width:384px){
.view .mask, .view .content {
padding: 40px 0;
width: 91.5%;
}
.view h4 {
font-size: 1.7em;
}
.services-bottom-w3-agileits h3{
font-size:26px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 9%;
}
.collection-left {
width: 100%;
margin: 0 auto;
}
.w3l_team_grid {
width: 80%;
float: none;
margin:0 auto;
padding: 0 15px;
}
.w3l_social_icons ul li a{
width:35px;
height:35px;
background:url('../images/img-sprite.png') no-repeat -7px -7px #fff;
display: inline-block;
border: none;
}
.w3l_social_icons ul li a.google{
background:url('../images/img-sprite.png') no-repeat -55px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.twitter{
background:url('../images/img-sprite.png') no-repeat -108px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a.facebook{
background:url('../images/img-sprite.png') no-repeat -159px -7px #fff;
width:35px;
height:35px;
}
.w3l_social_icons ul li a:hover {
background:url('../images/img-sprite.png') no-repeat -7px -50px;
}
.w3l_social_icons ul li a.google:hover{
background:url('../images/img-sprite.png') no-repeat -55px -50px;
}
.w3l_social_icons ul li a.twitter:hover{
background:url('../images/img-sprite.png') no-repeat -108px -50px;
}
.w3l_social_icons ul li a.facebook:hover{
background:url('../images/img-sprite.png') no-repeat -159px -50px;
}
.view-second .w3l_social_icons1 {
padding-bottom: 1.1em;
}
.view-second p {
margin: 1.3em 0 0;
line-height: 27px;
font-size: 14px;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 85%;
}
}
@media screen and (max-width:375px){
}
@media screen and (max-width:320px){
.rslides img {
height: 200px;
}
.callbacks_nav {
height: 45px;
width: 25px;
background-size: 46px;
top:67%;
}
.service-grid-agileits {
width: 100%;
float: left;
}
.new-grid-w3l, .new-grid-agile {
padding: 0px 15px;
width: 100%;
float: left;
}
.view .mask, .view .content {
padding: 90px 0;
width: 89%;
}
.services-bottom-w3-agileits h3 {
font-size: 23px;
}
.wthree_info p {
font-size: 14px;
letter-spacing: 1px;
width: 90%;
margin: 0 auto;
line-height: 27px;
}
a.learn {
margin-top: 30px;
}
.service-grid-agileits-top{
margin-bottom:50px;
}
.navbar-toggle {
padding: 8px 8px;
}
.trend-w3layouts h4, .services-agileits-w3layouts h4 {
font-size: 16px;
}
#small-dialog, #small-dialog2, #small-dialog3, #small-dialog4, #small-dialog5, #small-dialog6, #small-dialog7, #small-dialog8 {
max-width: 96%;
}
.about-grid-left-agileits-w3layouts, .about-grid-right-w3-agile {
padding: 0px;
}
.about-grid-left-agileits-w3layouts ul li {
margin-left: 0;
}
.collection-grid-1, .collection-grid-2, .collection-grid-3, .collection-grid-4, .collection-grid-5, .collection-grid-6 {
width: 100%;
float: left;
}
.collection-text img {
margin-top: 35px;
}
.collection-text p {
line-height: 24px;
padding: 0 21px;
}
.view-second p {
margin: 0.3em 0 0;
line-height: 25px;
font-size: 13px;
}
.footer-right-w3 img {
width: 11%;
}
.events-text-w3-agile h4 {
width: 48%;
}
.events-left-agile-agileits-w3layouts {
min-height: 290px;
}
.events-text1 p {
padding: 145px 0px 6px 0px;
}
.w3l_categories h3, .w3l_archives h3, .w3agile_flickr_posts h3, .agileits_reply h3, .wthree_blog_left_grid h3, .newsletter h4 {
font-size: 1.2em!important;
}
} | 0.233095 | 0.04975 |
@-moz-document domain("facebook.com")
{
span.messageBody,
div.linkWrap.noCount,
div.linkWrap.hasCount,
.uiLinkButton input.stat_elem,
div#rightCol,
div#rightCol a.ego_title div.fcg strong,
span.messageBody,
div#rightCol,
label.uiLinkButton input,
div#blueBar.fixed_elem .topNavLink a,
a.fbxWelcomeBoxName,
div#blueBar {
border-bottom: 0px !important;
}
div.actorDescription.actorName a,
a.actorName,
a.passiveName,
a.fbxWelcomeBoxName,
strong.attachmentName,
div#rightCol a.ego_title,
div.fcg strong,
/*****************************************************/
/*******************************************/
div#blueBar.fixed_elem .topNavLink a {
-moz-transition: all .4s;
-webkit-transition: all .4s;
}
div#blueBar.fixed_elem li.topNavLink {
background-color: inherit;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem li.topNavLink:hover {
background-color: #4b67a1;
}
div#blueBar.fixed_elem a.jewelButton {
background-color: #3b5998;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem a.jewelButton:hover {
background-color: #4b67a1;
}
div#blueBar.fixed_elem h1#pageLogo a, div#blueBar.fixed_elem h1#pageLogo a{
background-color: #3b5998;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem h1#pageLogo a:hover, div#blueBar.fixed_elem h1#pageLogo a:hover {
background-color: #4b67a1;
}
/** Background Color **/
.fbIndex.UIPage_LoggedOut {
background-color: #3B5998 !important;
}
/** Hides the Facebook images (like the stupid phone with the Facebook icon on it) **/
.fbIndex.UIPage_LoggedOut div.gradient,
.fbIndex.UIPage_LoggedOut div#footerContainer,
.fbIndex.UIPage_LoggedOut div#contentCurve,
.fbIndex.UIPage_LoggedOut ul.uiList.uiListHorizontal {
display: none !important;
}
/** Centers Facebook Logo Picture **/
.fbIndex div.clearfix.loggedout_menubar {
width: 300px !important;
height: 100px !important;
margin: 0 auto !important;
position: fixed !important;
top: 50%;
left: 50%;
margin-top: -90px !important;
margin-left: -100px !important;
/** Animates Facebook login dropdown **/
-moz-animation-duration: 1.9s;
-moz-animation-delay: 0s;
-moz-animation-name: scrollDown;
-webkit-animation-duration: 1.9s;
-webkit-animation-delay: 0s;
-webkit-animation-name: scrollDown;
}
@-moz-keyframes scrollDown {
from {
top: -25%;
}
to {
top: 50%;
}
}
@-webkit-keyframes scrollDown {
from {
top: -25%;
}
to {
top: 50%;
}
}
/** Adds in the CSS transitions for the links **/
.fbIndex div.clearfix.loggedout_menubar div.rfloat td.login_form_label_field a,
.fbIndex div.clearfix.loggedout_menubar div.rfloat div.uiInputLabel label {
-moz-transition: all .4s;
-webkit-transition: all .4s;
}
.fbIndex.UIPage_LoggedOut td.login_form_label_field a:hover,
.fbIndex div.clearfix.loggedout_menubar div.rfloat div.uiInputLabel label:hover {
text-decoration: none !important;
color: white !important;
}
/****Transitions background color on left sidebar****/
div#globalContainer #mainContainer ul.uiSideNav a.item.clearfix {
-moz-transition: background-color 0.4s;
-webkit-transition: background-color 0.4s;
}
/*****Transitions background color on hover for account settings page****/
a.pvm.phs.fbSettingsListLink.clearfix {
-moz-transition: background-color 0.4s;
-webkit-transition: background-color 0.4s;
}
/****Adds transitions to the right column****/
div#rightCol div.home_right_column div.fbCurrentStory, div#rightCol div.home_right_column div.fbRemindersStory {
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
/****Adds transitions to the dropdown menus (messages, notifications, &c.)****/
/**messages & notifications border fix**/
div#jewelContainer ul.jewelItemList.jewelHighlight li {
border: none !important;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#jewelContainer ul.jewelItemList.jewelHighlight li:hover {
border:none !important;
}
/**Notifications transitions**/
div#jewelContainer ul.jewelItemList.jewelHighlight li a,
div#jewelContainer div#fbMessagesFlyout a.seeMore,
div#fbNotificationsFlyout div.jewelFooter a.seeMore {
-moz-transition-property: background-color;
-moz-transition-duration: .25s;
-webkit-transition-property: background-color;
-webkit-transition-duration: .25s;
border-color: white !important;
}
div#jewelContainer ul.jewelItemList.jewelHighlight li a:hover {
border-color: white !important;
}
/**friend requests**/
div#jewelContainer div#fbRequestsFlyout a {
-moz-transition-property: background-color;
-moz-transition-duration: .25s;
-webkit-transition-property: background-color;
-webkit-transition-duration: .25s;
border: none !important;
}
} | data/usercss/70813.user.css | @-moz-document domain("facebook.com")
{
span.messageBody,
div.linkWrap.noCount,
div.linkWrap.hasCount,
.uiLinkButton input.stat_elem,
div#rightCol,
div#rightCol a.ego_title div.fcg strong,
span.messageBody,
div#rightCol,
label.uiLinkButton input,
div#blueBar.fixed_elem .topNavLink a,
a.fbxWelcomeBoxName,
div#blueBar {
border-bottom: 0px !important;
}
div.actorDescription.actorName a,
a.actorName,
a.passiveName,
a.fbxWelcomeBoxName,
strong.attachmentName,
div#rightCol a.ego_title,
div.fcg strong,
/*****************************************************/
/*******************************************/
div#blueBar.fixed_elem .topNavLink a {
-moz-transition: all .4s;
-webkit-transition: all .4s;
}
div#blueBar.fixed_elem li.topNavLink {
background-color: inherit;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem li.topNavLink:hover {
background-color: #4b67a1;
}
div#blueBar.fixed_elem a.jewelButton {
background-color: #3b5998;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem a.jewelButton:hover {
background-color: #4b67a1;
}
div#blueBar.fixed_elem h1#pageLogo a, div#blueBar.fixed_elem h1#pageLogo a{
background-color: #3b5998;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#blueBar.fixed_elem h1#pageLogo a:hover, div#blueBar.fixed_elem h1#pageLogo a:hover {
background-color: #4b67a1;
}
/** Background Color **/
.fbIndex.UIPage_LoggedOut {
background-color: #3B5998 !important;
}
/** Hides the Facebook images (like the stupid phone with the Facebook icon on it) **/
.fbIndex.UIPage_LoggedOut div.gradient,
.fbIndex.UIPage_LoggedOut div#footerContainer,
.fbIndex.UIPage_LoggedOut div#contentCurve,
.fbIndex.UIPage_LoggedOut ul.uiList.uiListHorizontal {
display: none !important;
}
/** Centers Facebook Logo Picture **/
.fbIndex div.clearfix.loggedout_menubar {
width: 300px !important;
height: 100px !important;
margin: 0 auto !important;
position: fixed !important;
top: 50%;
left: 50%;
margin-top: -90px !important;
margin-left: -100px !important;
/** Animates Facebook login dropdown **/
-moz-animation-duration: 1.9s;
-moz-animation-delay: 0s;
-moz-animation-name: scrollDown;
-webkit-animation-duration: 1.9s;
-webkit-animation-delay: 0s;
-webkit-animation-name: scrollDown;
}
@-moz-keyframes scrollDown {
from {
top: -25%;
}
to {
top: 50%;
}
}
@-webkit-keyframes scrollDown {
from {
top: -25%;
}
to {
top: 50%;
}
}
/** Adds in the CSS transitions for the links **/
.fbIndex div.clearfix.loggedout_menubar div.rfloat td.login_form_label_field a,
.fbIndex div.clearfix.loggedout_menubar div.rfloat div.uiInputLabel label {
-moz-transition: all .4s;
-webkit-transition: all .4s;
}
.fbIndex.UIPage_LoggedOut td.login_form_label_field a:hover,
.fbIndex div.clearfix.loggedout_menubar div.rfloat div.uiInputLabel label:hover {
text-decoration: none !important;
color: white !important;
}
/****Transitions background color on left sidebar****/
div#globalContainer #mainContainer ul.uiSideNav a.item.clearfix {
-moz-transition: background-color 0.4s;
-webkit-transition: background-color 0.4s;
}
/*****Transitions background color on hover for account settings page****/
a.pvm.phs.fbSettingsListLink.clearfix {
-moz-transition: background-color 0.4s;
-webkit-transition: background-color 0.4s;
}
/****Adds transitions to the right column****/
div#rightCol div.home_right_column div.fbCurrentStory, div#rightCol div.home_right_column div.fbRemindersStory {
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
/****Adds transitions to the dropdown menus (messages, notifications, &c.)****/
/**messages & notifications border fix**/
div#jewelContainer ul.jewelItemList.jewelHighlight li {
border: none !important;
-moz-transition: background-color .4s;
-webkit-transition: background-color .4s;
}
div#jewelContainer ul.jewelItemList.jewelHighlight li:hover {
border:none !important;
}
/**Notifications transitions**/
div#jewelContainer ul.jewelItemList.jewelHighlight li a,
div#jewelContainer div#fbMessagesFlyout a.seeMore,
div#fbNotificationsFlyout div.jewelFooter a.seeMore {
-moz-transition-property: background-color;
-moz-transition-duration: .25s;
-webkit-transition-property: background-color;
-webkit-transition-duration: .25s;
border-color: white !important;
}
div#jewelContainer ul.jewelItemList.jewelHighlight li a:hover {
border-color: white !important;
}
/**friend requests**/
div#jewelContainer div#fbRequestsFlyout a {
-moz-transition-property: background-color;
-moz-transition-duration: .25s;
-webkit-transition-property: background-color;
-webkit-transition-duration: .25s;
border: none !important;
}
} | 0.332419 | 0.049382 |
html,body {
width: 100%;
height: 100%;
}
#page-1{
display: flex;
/* #F5F5F5 */
width: 100%;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
background: #8697ff;
color: #FAFAF6;
}
#page-1 .title {
font-size: 100px;
font-weight: 100;
margin-bottom: 30px;
}
#page-1 .information,
#page-1 .hrWord{
line-height:80px;
height: 80px;
font-size: 30px;
font-weight: 100;
}
/*header部分开始*/
header {
width: 100%;
height: 200px;
}
.container {
width: 1100px;
margin: 50px auto 0 ;
box-sizing: border-box;
position: relative;
}
.header-aside {
position: absolute;
top: -20px;
left: 50px;
}
.header-aside img {
height: 200px;
width: 150px;
}
.header-main {
float: left;
margin-bottom: 50px;
width: 100%;
}
.header-main .top {
margin: 0 auto;
text-align: center;
line-height: 52px;
height: 52px;
background-color: #466eff;
}
.header-main .top h2 {
display: inline-block;
font-size: 40px;
margin-left: 200px;
}
.header-main .top span {
display: inline-block;
float: right;
font-size: 20px;
margin-right: 100px;
}
.header-main .bottom {
padding-left: 200px;
}
.header-main .bottom .col1 {
width: 200px;
}
.header-main .bottom .col2 {
width: 300px;
}
.header-main .bottom .col3 {
width: 400px;
}
.header-main .bottom .col {
float: left;
}
.header-main .bottom .col span,
.header-main .bottom .col a{
display: block;
margin: 15px 50px 15px 20px;
text-align: left;
font-size: 16px;
}
.header-main .bottom .col a {
text-decoration: none;
}
/*main部分开始*/
main .row {
margin-bottom: 50px;
}
main .row h3 {
color: #fff;
font-size: 20px;
font-weight: 700;
background-color: #1426a7;
line-height: 36px;
height: 36px;
}
main .row1 p{
font-size: 16px;
margin-left: 110px;
line-height: 36px;
height: 36px;
}
/*footer部分开始*/
footer {
}
footer h3 {
text-align: center;
display: block;
margin: 0 auto;
} | day4/index-day4.css | html,body {
width: 100%;
height: 100%;
}
#page-1{
display: flex;
/* #F5F5F5 */
width: 100%;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
background: #8697ff;
color: #FAFAF6;
}
#page-1 .title {
font-size: 100px;
font-weight: 100;
margin-bottom: 30px;
}
#page-1 .information,
#page-1 .hrWord{
line-height:80px;
height: 80px;
font-size: 30px;
font-weight: 100;
}
/*header部分开始*/
header {
width: 100%;
height: 200px;
}
.container {
width: 1100px;
margin: 50px auto 0 ;
box-sizing: border-box;
position: relative;
}
.header-aside {
position: absolute;
top: -20px;
left: 50px;
}
.header-aside img {
height: 200px;
width: 150px;
}
.header-main {
float: left;
margin-bottom: 50px;
width: 100%;
}
.header-main .top {
margin: 0 auto;
text-align: center;
line-height: 52px;
height: 52px;
background-color: #466eff;
}
.header-main .top h2 {
display: inline-block;
font-size: 40px;
margin-left: 200px;
}
.header-main .top span {
display: inline-block;
float: right;
font-size: 20px;
margin-right: 100px;
}
.header-main .bottom {
padding-left: 200px;
}
.header-main .bottom .col1 {
width: 200px;
}
.header-main .bottom .col2 {
width: 300px;
}
.header-main .bottom .col3 {
width: 400px;
}
.header-main .bottom .col {
float: left;
}
.header-main .bottom .col span,
.header-main .bottom .col a{
display: block;
margin: 15px 50px 15px 20px;
text-align: left;
font-size: 16px;
}
.header-main .bottom .col a {
text-decoration: none;
}
/*main部分开始*/
main .row {
margin-bottom: 50px;
}
main .row h3 {
color: #fff;
font-size: 20px;
font-weight: 700;
background-color: #1426a7;
line-height: 36px;
height: 36px;
}
main .row1 p{
font-size: 16px;
margin-left: 110px;
line-height: 36px;
height: 36px;
}
/*footer部分开始*/
footer {
}
footer h3 {
text-align: center;
display: block;
margin: 0 auto;
} | 0.300951 | 0.044411 |
@import 'header/header.css';
@import 'search-bar/search-bar.css';
@import 'footer/footer.css';
@import 'side-bar/side-bar.css';
@import 'content/content.css';
@import 'area-select/area-select.css';
@import 'column-slider/column-slider.css';
@import 'story-slider/story-slider.css';
.horizontal-padding {
margin-left: calc(1.5rem + 2px);
margin-right: calc(1.5rem + 2px);
}
h1, h2, h3, h4, h5, h6 {
font-weight:700;
font-family: 'Titillium Web', sans-serif;
}
.tr-menu ul,
.tr-topbar ul,
.tr-section ul,
.quotes-content ul,
#footer .widget ul,
.entry-meta ul,
.tr-live-score ul,
.tr-widget ul,
.tr-weather ul,
.tr-post ul,
.feed ul,
.small-post-list,
.tr-audio-player ul,
.tr-comment ul {
margin:0;
padding:0;
list-style:none;
}
a {
font-family: 'Titillium Web', sans-serif;
}
a,
a:hover,
a:focus,
input:focus {
text-decoration:none;
outline: none;
}
a:hover {
color: #fff;
}
a:active,
a:focus, button:focus, .btn:focus,
input:focus, textarea:focus, select:focus,
.form-control, .form-control:focus {
outline: none;
text-decoration: none;
box-shadow: none;
}
.tr-section {
background-color: #fff;
border-radius: 5px;
padding: 15px;
margin-bottom: 30px;
overflow: hidden;
position: relative;
}
.tr-post {
position: relative;
}
.tr-section.bg-transparent {
background-color: transparent;
margin-bottom: 0;
padding: 0;
}
.bg-transparent .tr-post,
.photo-gallery,
.latest-result {
background-color: #fff;
border-radius: 5px;
padding: calc(1rem+2px);
margin-bottom: calc(1rem+2px);
overflow: hidden;
position: relative;
}
.entry-header {
position: relative;
overflow: hidden;
}
.tr-post .entry-header img {
width: 100%;
}
.entry-header:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
top: 0;
left: 0;
opacity: 0;
}
.tr-post:hover .entry-header:before,
.small-post-list li:hover .entry-header:before {
opacity: 1;
z-index: 1;
-webkit-animation: fadeOutDown .9s both;
-moz-animation: fadeOutDown .9s both;
-o-animation: fadeOutDown .9s both;
animation: fadeOutDown .9s both;
}
.tr-post.post-header-absolute .entry-header:before,
.tr-watch-now .tr-post .entry-header:before,
.tr-watch-now .small-post-list .entry-header:before,
.video-post .tr-post .entry-header:before,
.tr-video-post .entry-header:before,
.detailspage .entry-header:before,
.tr-post.tr-video-post .entry-header:before {
display: none;
}
.main-wrapper.tr-page-top {
margin-top: 0;
}
.section-title h1 {
font-size: 16px;
margin: 0 0 30px;
text-transform: uppercase;
position: relative;
z-index: 1;
}
.section-title h1 span {
background-color: #f0f3f5;
padding-right: 15px;
}
.section-title h1 a {
color: #000;
}
.section-title h1 a:hover {
color: #fff;
}
.section-title h1 span:after {
position: absolute;
content: "";
top: 50%;
margin-top: -3px;
right: 0;
width: 100%;
height: 3px;
z-index: -1;
background-color: #e6e7e8;
}
.widget-title span {
font-size: 12px;
text-transform: uppercase;
margin: 0 0 15px;
font-weight: 700;
display: block;
}
.tr-before,
.tr-after {
position: relative;
}
.tr-before:before{
position: absolute;
content: "";
top: 0;
left: 20px;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #fff;
}
.tr-after:after {
position: absolute;
content: "";
bottom: 0;
left: 0;
width: 25px;
height: 1px;
z-index: 1;
background-color: #fb1d15;
}
.homepage-1 .section-title {
overflow: hidden;
margin-bottom: 30px;
background-color: #fff;
border-radius: 5px;
padding: 8px 15px 5px;
}
.homepage-1 .section-title h1 {
margin: 6px 0 0;
float: left;
font-size: 12px;
}
.homepage-1 .section-title .icon {
float: left;
font-size: 18px;
margin-right: 10px;
}
.tr-home-slider .post-content .continue-reading a,
.continue-reading a {
font-size: 12px;
color: #afb1b2;
text-transform: uppercase;
}
.continue-reading i {
font-size: 18px;
margin-left: 10px;
float: right;
margin-top: 3px;
}
.feed li {
float: left;
color: #d4d6d7;
}
.feed li a,
.item .post-content .feed li a {
color: #d4d6d7;
padding: 5px;
}
.item .post-content .feed li a:hover,
.feed li a:hover {
color: inherit;
}
.read-more {
margin-top: 25px;
overflow: hidden;
}
.margin-bottom-0 {
margin-bottom: 0 !important;
}
.tr-pixed-top {
position: absolute;
top: 30px;
width: 100%;
z-index: 9999;
}
.tr-padding-0 .col-sm-6,
.tr-padding-0 .col-sm-5,
.tr-padding-0 .col-md-6,
.tr-padding-0 .col-sm-5,
.tr-padding-0 .col-sm-7,
.tr-padding-0 .col-sm-12,
.tr-padding-0 .row {
padding: 0;
border-radius: 0;
margin: 0;
}
.catagory-list {
padding: 10px 0;
}
.catagory-list .title {
font-size: 12px;
color: #010101;
font-weight: 700;
text-transform: uppercase;
}
.catagory-list ul li {
line-height: 40px;
}
.catagory-list ul li a {
font-size: 14px;
color: #696969;
font-weight: 500;
text-transform: uppercase;
}
.catagory-list ul li i {
margin-right: 30px;
color: #010101;
}
.catagory-list ul li a:hover i,
.catagory-list ul li a:hover {
color: #fff;
}
.catagory-list .player {
width: 25px;
height: 25px;
border-radius: 100%;
overflow: hidden;
display: block;
float: left;
margin-top: 10px;
margin-right: 30px;
}
.tr-breadcrumb {
overflow: hidden;
margin-bottom: 30px;
background-color: #fff;
padding: 25px 30px;
border-radius: 5px;
}
.tr-breadcrumb .title h1 {
font-size: 36px;
color: #e81a1b;
margin: 0;
}
.tr-breadcrumb .breadcrumb {
margin-bottom: 0;
background-color: transparent;
}
.tr-breadcrumb .breadcrumb li,
.tr-breadcrumb .breadcrumb li a {
color: #afb1b2;
font-size: 14px;
}
.tr-breadcrumb .breadcrumb li a:hover {
color: #fff;
}
.post-padding {
padding: 30px 20px 25px;
}
.margin-bottom-30 {
margin-bottom: 30px;
}
.tr-box-shadow {
padding: 0;
-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-moz-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-ms-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-o-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
}
.tr-box-shadow:hover {
box-shadow: none;
}
.homepage-3 {
background-color: #fff;
} | fiddles/jquery/fiddle-0069-BootstrapStickyNavBars/assets/css/page/components/components.css | @import 'header/header.css';
@import 'search-bar/search-bar.css';
@import 'footer/footer.css';
@import 'side-bar/side-bar.css';
@import 'content/content.css';
@import 'area-select/area-select.css';
@import 'column-slider/column-slider.css';
@import 'story-slider/story-slider.css';
.horizontal-padding {
margin-left: calc(1.5rem + 2px);
margin-right: calc(1.5rem + 2px);
}
h1, h2, h3, h4, h5, h6 {
font-weight:700;
font-family: 'Titillium Web', sans-serif;
}
.tr-menu ul,
.tr-topbar ul,
.tr-section ul,
.quotes-content ul,
#footer .widget ul,
.entry-meta ul,
.tr-live-score ul,
.tr-widget ul,
.tr-weather ul,
.tr-post ul,
.feed ul,
.small-post-list,
.tr-audio-player ul,
.tr-comment ul {
margin:0;
padding:0;
list-style:none;
}
a {
font-family: 'Titillium Web', sans-serif;
}
a,
a:hover,
a:focus,
input:focus {
text-decoration:none;
outline: none;
}
a:hover {
color: #fff;
}
a:active,
a:focus, button:focus, .btn:focus,
input:focus, textarea:focus, select:focus,
.form-control, .form-control:focus {
outline: none;
text-decoration: none;
box-shadow: none;
}
.tr-section {
background-color: #fff;
border-radius: 5px;
padding: 15px;
margin-bottom: 30px;
overflow: hidden;
position: relative;
}
.tr-post {
position: relative;
}
.tr-section.bg-transparent {
background-color: transparent;
margin-bottom: 0;
padding: 0;
}
.bg-transparent .tr-post,
.photo-gallery,
.latest-result {
background-color: #fff;
border-radius: 5px;
padding: calc(1rem+2px);
margin-bottom: calc(1rem+2px);
overflow: hidden;
position: relative;
}
.entry-header {
position: relative;
overflow: hidden;
}
.tr-post .entry-header img {
width: 100%;
}
.entry-header:before {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.2);
top: 0;
left: 0;
opacity: 0;
}
.tr-post:hover .entry-header:before,
.small-post-list li:hover .entry-header:before {
opacity: 1;
z-index: 1;
-webkit-animation: fadeOutDown .9s both;
-moz-animation: fadeOutDown .9s both;
-o-animation: fadeOutDown .9s both;
animation: fadeOutDown .9s both;
}
.tr-post.post-header-absolute .entry-header:before,
.tr-watch-now .tr-post .entry-header:before,
.tr-watch-now .small-post-list .entry-header:before,
.video-post .tr-post .entry-header:before,
.tr-video-post .entry-header:before,
.detailspage .entry-header:before,
.tr-post.tr-video-post .entry-header:before {
display: none;
}
.main-wrapper.tr-page-top {
margin-top: 0;
}
.section-title h1 {
font-size: 16px;
margin: 0 0 30px;
text-transform: uppercase;
position: relative;
z-index: 1;
}
.section-title h1 span {
background-color: #f0f3f5;
padding-right: 15px;
}
.section-title h1 a {
color: #000;
}
.section-title h1 a:hover {
color: #fff;
}
.section-title h1 span:after {
position: absolute;
content: "";
top: 50%;
margin-top: -3px;
right: 0;
width: 100%;
height: 3px;
z-index: -1;
background-color: #e6e7e8;
}
.widget-title span {
font-size: 12px;
text-transform: uppercase;
margin: 0 0 15px;
font-weight: 700;
display: block;
}
.tr-before,
.tr-after {
position: relative;
}
.tr-before:before{
position: absolute;
content: "";
top: 0;
left: 20px;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #fff;
}
.tr-after:after {
position: absolute;
content: "";
bottom: 0;
left: 0;
width: 25px;
height: 1px;
z-index: 1;
background-color: #fb1d15;
}
.homepage-1 .section-title {
overflow: hidden;
margin-bottom: 30px;
background-color: #fff;
border-radius: 5px;
padding: 8px 15px 5px;
}
.homepage-1 .section-title h1 {
margin: 6px 0 0;
float: left;
font-size: 12px;
}
.homepage-1 .section-title .icon {
float: left;
font-size: 18px;
margin-right: 10px;
}
.tr-home-slider .post-content .continue-reading a,
.continue-reading a {
font-size: 12px;
color: #afb1b2;
text-transform: uppercase;
}
.continue-reading i {
font-size: 18px;
margin-left: 10px;
float: right;
margin-top: 3px;
}
.feed li {
float: left;
color: #d4d6d7;
}
.feed li a,
.item .post-content .feed li a {
color: #d4d6d7;
padding: 5px;
}
.item .post-content .feed li a:hover,
.feed li a:hover {
color: inherit;
}
.read-more {
margin-top: 25px;
overflow: hidden;
}
.margin-bottom-0 {
margin-bottom: 0 !important;
}
.tr-pixed-top {
position: absolute;
top: 30px;
width: 100%;
z-index: 9999;
}
.tr-padding-0 .col-sm-6,
.tr-padding-0 .col-sm-5,
.tr-padding-0 .col-md-6,
.tr-padding-0 .col-sm-5,
.tr-padding-0 .col-sm-7,
.tr-padding-0 .col-sm-12,
.tr-padding-0 .row {
padding: 0;
border-radius: 0;
margin: 0;
}
.catagory-list {
padding: 10px 0;
}
.catagory-list .title {
font-size: 12px;
color: #010101;
font-weight: 700;
text-transform: uppercase;
}
.catagory-list ul li {
line-height: 40px;
}
.catagory-list ul li a {
font-size: 14px;
color: #696969;
font-weight: 500;
text-transform: uppercase;
}
.catagory-list ul li i {
margin-right: 30px;
color: #010101;
}
.catagory-list ul li a:hover i,
.catagory-list ul li a:hover {
color: #fff;
}
.catagory-list .player {
width: 25px;
height: 25px;
border-radius: 100%;
overflow: hidden;
display: block;
float: left;
margin-top: 10px;
margin-right: 30px;
}
.tr-breadcrumb {
overflow: hidden;
margin-bottom: 30px;
background-color: #fff;
padding: 25px 30px;
border-radius: 5px;
}
.tr-breadcrumb .title h1 {
font-size: 36px;
color: #e81a1b;
margin: 0;
}
.tr-breadcrumb .breadcrumb {
margin-bottom: 0;
background-color: transparent;
}
.tr-breadcrumb .breadcrumb li,
.tr-breadcrumb .breadcrumb li a {
color: #afb1b2;
font-size: 14px;
}
.tr-breadcrumb .breadcrumb li a:hover {
color: #fff;
}
.post-padding {
padding: 30px 20px 25px;
}
.margin-bottom-30 {
margin-bottom: 30px;
}
.tr-box-shadow {
padding: 0;
-webkit-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-moz-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-ms-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
-o-box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.100);
}
.tr-box-shadow:hover {
box-shadow: none;
}
.homepage-3 {
background-color: #fff;
} | 0.338624 | 0.047162 |
@font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon.eot?fx3v66');
src:url('../fonts/icomoon.eot?#iefixfx3v66') format('embedded-opentype'),
url('../fonts/icomoon.woff?fx3v66') format('woff'),
url('../fonts/icomoon.ttf?fx3v66') format('truetype'),
url('../fonts/icomoon.svg?fx3v66#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
.icomoon{
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icomoon-icon-home:before {
content: "\e600";
}
.icomoon-icon-home2:before {
content: "\e601";
}
.icomoon-icon-home3:before {
content: "\e602";
}
.icomoon-icon-office:before {
content: "\e603";
}
.icomoon-icon-newspaper:before {
content: "\e604";
}
.icomoon-icon-pencil:before {
content: "\e605";
}
.icomoon-icon-pencil2:before {
content: "\e606";
}
.icomoon-icon-quill:before {
content: "\e607";
}
.icomoon-icon-pen:before {
content: "\e608";
}
.icomoon-icon-blog:before {
content: "\e609";
}
.icomoon-icon-droplet:before {
content: "\e60a";
}
.icomoon-icon-paint-format:before {
content: "\e60b";
}
.icomoon-icon-image:before {
content: "\e60c";
}
.icomoon-icon-image2:before {
content: "\e60d";
}
.icomoon-icon-images:before {
content: "\e60e";
}
.icomoon-icon-camera:before {
content: "\e60f";
}
.icomoon-icon-music:before {
content: "\e610";
}
.icomoon-icon-headphones:before {
content: "\e611";
}
.icomoon-icon-play:before {
content: "\e612";
}
.icomoon-icon-film:before {
content: "\e613";
}
.icomoon-icon-camera2:before {
content: "\e614";
}
.icomoon-icon-dice:before {
content: "\e615";
}
.icomoon-icon-pacman:before {
content: "\e616";
}
.icomoon-icon-spades:before {
content: "\e617";
}
.icomoon-icon-clubs:before {
content: "\e618";
}
.icomoon-icon-diamonds:before {
content: "\e619";
}
.icomoon-icon-pawn:before {
content: "\e61a";
}
.icomoon-icon-bullhorn:before {
content: "\e61b";
}
.icomoon-icon-connection:before {
content: "\e61c";
}
.icomoon-icon-podcast:before {
content: "\e61d";
}
.icomoon-icon-feed:before {
content: "\e61e";
}
.icomoon-icon-book:before {
content: "\e61f";
}
.icomoon-icon-books:before {
content: "\e620";
}
.icomoon-icon-library:before {
content: "\e621";
}
.icomoon-icon-file:before {
content: "\e622";
}
.icomoon-icon-profile:before {
content: "\e623";
}
.icomoon-icon-file2:before {
content: "\e624";
}
.icomoon-icon-file3:before {
content: "\e625";
}
.icomoon-icon-file4:before {
content: "\e626";
}
.icomoon-icon-copy:before {
content: "\e627";
}
.icomoon-icon-copy2:before {
content: "\e628";
}
.icomoon-icon-copy3:before {
content: "\e629";
}
.icomoon-icon-paste:before {
content: "\e62a";
}
.icomoon-icon-paste2:before {
content: "\e62b";
}
.icomoon-icon-paste3:before {
content: "\e62c";
}
.icomoon-icon-stack:before {
content: "\e62d";
}
.icomoon-icon-folder:before {
content: "\e62e";
}
.icomoon-icon-folder-open:before {
content: "\e62f";
}
.icomoon-icon-tag:before {
content: "\e630";
}
.icomoon-icon-tags:before {
content: "\e631";
}
.icomoon-icon-barcode:before {
content: "\e632";
}
.icomoon-icon-qrcode:before {
content: "\e633";
}
.icomoon-icon-ticket:before {
content: "\e634";
}
.icomoon-icon-cart:before {
content: "\e635";
}
.icomoon-icon-cart2:before {
content: "\e636";
}
.icomoon-icon-cart3:before {
content: "\e637";
}
.icomoon-icon-coin:before {
content: "\e638";
}
.icomoon-icon-credit:before {
content: "\e639";
}
.icomoon-icon-calculate:before {
content: "\e63a";
}
.icomoon-icon-support:before {
content: "\e63b";
}
.icomoon-icon-phone:before {
content: "\e63c";
}
.icomoon-icon-phone-hang-up:before {
content: "\e63d";
}
.icomoon-icon-address-book:before {
content: "\e63e";
}
.icomoon-icon-notebook:before {
content: "\e63f";
}
.icomoon-icon-envelope:before {
content: "\e640";
}
.icomoon-icon-pushpin:before {
content: "\e641";
}
.icomoon-icon-location:before {
content: "\e642";
}
.icomoon-icon-location2:before {
content: "\e643";
}
.icomoon-icon-compass:before {
content: "\e644";
}
.icomoon-icon-map:before {
content: "\e645";
}
.icomoon-icon-map2:before {
content: "\e646";
}
.icomoon-icon-history:before {
content: "\e647";
}
.icomoon-icon-clock:before {
content: "\e648";
}
.icomoon-icon-clock2:before {
content: "\e649";
}
.icomoon-icon-alarm:before {
content: "\e64a";
}
.icomoon-icon-alarm2:before {
content: "\e64b";
}
.icomoon-icon-bell:before {
content: "\e64c";
}
.icomoon-icon-stopwatch:before {
content: "\e64d";
}
.icomoon-icon-calendar:before {
content: "\e64e";
}
.icomoon-icon-calendar2:before {
content: "\e64f";
}
.icomoon-icon-print:before {
content: "\e650";
}
.icomoon-icon-keyboard:before {
content: "\e651";
}
.icomoon-icon-screen:before {
content: "\e652";
}
.icomoon-icon-laptop:before {
content: "\e653";
}
.icomoon-icon-mobile:before {
content: "\e654";
}
.icomoon-icon-mobile2:before {
content: "\e655";
}
.icomoon-icon-tablet:before {
content: "\e656";
}
.icomoon-icon-tv:before {
content: "\e657";
}
.icomoon-icon-cabinet:before {
content: "\e658";
}
.icomoon-icon-drawer:before {
content: "\e659";
}
.icomoon-icon-drawer2:before {
content: "\e65a";
}
.icomoon-icon-drawer3:before {
content: "\e65b";
}
.icomoon-icon-box-add:before {
content: "\e65c";
}
.icomoon-icon-box-remove:before {
content: "\e65d";
}
.icomoon-icon-download:before {
content: "\e65e";
}
.icomoon-icon-upload:before {
content: "\e65f";
}
.icomoon-icon-disk:before {
content: "\e660";
}
.icomoon-icon-storage:before {
content: "\e661";
}
.icomoon-icon-undo:before {
content: "\e662";
}
.icomoon-icon-redo:before {
content: "\e663";
}
.icomoon-icon-flip:before {
content: "\e664";
}
.icomoon-icon-flip2:before {
content: "\e665";
}
.icomoon-icon-undo2:before {
content: "\e666";
}
.icomoon-icon-redo2:before {
content: "\e667";
}
.icomoon-icon-forward:before {
content: "\e668";
}
.icomoon-icon-reply:before {
content: "\e669";
}
.icomoon-icon-bubble:before {
content: "\e66a";
}
.icomoon-icon-bubbles:before {
content: "\e66b";
}
.icomoon-icon-bubbles2:before {
content: "\e66c";
}
.icomoon-icon-bubble2:before {
content: "\e66d";
}
.icomoon-icon-bubbles3:before {
content: "\e66e";
}
.icomoon-icon-bubbles4:before {
content: "\e66f";
}
.icomoon-icon-user:before {
content: "\e670";
}
.icomoon-icon-users:before {
content: "\e671";
}
.icomoon-icon-user2:before {
content: "\e672";
}
.icomoon-icon-users2:before {
content: "\e673";
}
.icomoon-icon-user3:before {
content: "\e674";
}
.icomoon-icon-user4:before {
content: "\e675";
}
.icomoon-icon-quotes-left:before {
content: "\e676";
}
.icomoon-icon-busy:before {
content: "\e677";
}
.icomoon-icon-spinner:before {
content: "\e678";
}
.icomoon-icon-spinner2:before {
content: "\e679";
}
.icomoon-icon-spinner3:before {
content: "\e67a";
}
.icomoon-icon-spinner4:before {
content: "\e67b";
}
.icomoon-icon-spinner5:before {
content: "\e67c";
}
.icomoon-icon-spinner6:before {
content: "\e67d";
}
.icomoon-icon-binoculars:before {
content: "\e67e";
}
.icomoon-icon-search:before {
content: "\e67f";
}
.icomoon-icon-zoomin:before {
content: "\e680";
}
.icomoon-icon-zoomout:before {
content: "\e681";
}
.icomoon-icon-expand:before {
content: "\e682";
}
.icomoon-icon-contract:before {
content: "\e683";
}
.icomoon-icon-expand2:before {
content: "\e684";
}
.icomoon-icon-contract2:before {
content: "\e685";
}
.icomoon-icon-key:before {
content: "\e686";
}
.icomoon-icon-key2:before {
content: "\e687";
}
.icomoon-icon-lock:before {
content: "\e688";
}
.icomoon-icon-lock2:before {
content: "\e689";
}
.icomoon-icon-unlocked:before {
content: "\e68a";
}
.icomoon-icon-wrench:before {
content: "\e68b";
}
.icomoon-icon-settings:before {
content: "\e68c";
}
.icomoon-icon-equalizer:before {
content: "\e68d";
}
.icomoon-icon-cog:before {
content: "\e68e";
}
.icomoon-icon-cogs:before {
content: "\e68f";
}
.icomoon-icon-cog2:before {
content: "\e690";
}
.icomoon-icon-hammer:before {
content: "\e691";
}
.icomoon-icon-wand:before {
content: "\e692";
}
.icomoon-icon-aid:before {
content: "\e693";
}
.icomoon-icon-bug:before {
content: "\e694";
}
.icomoon-icon-pie:before {
content: "\e695";
}
.icomoon-icon-stats:before {
content: "\e696";
}
.icomoon-icon-bars:before {
content: "\e697";
}
.icomoon-icon-bars2:before {
content: "\e698";
}
.icomoon-icon-gift:before {
content: "\e699";
}
.icomoon-icon-trophy:before {
content: "\e69a";
}
.icomoon-icon-glass:before {
content: "\e69b";
}
.icomoon-icon-mug:before {
content: "\e69c";
}
.icomoon-icon-food:before {
content: "\e69d";
}
.icomoon-icon-leaf:before {
content: "\e69e";
}
.icomoon-icon-rocket:before {
content: "\e69f";
}
.icomoon-icon-meter:before {
content: "\e6a0";
}
.icomoon-icon-meter2:before {
content: "\e6a1";
}
.icomoon-icon-dashboard:before {
content: "\e6a2";
}
.icomoon-icon-hammer2:before {
content: "\e6a3";
}
.icomoon-icon-fire:before {
content: "\e6a4";
}
.icomoon-icon-lab:before {
content: "\e6a5";
}
.icomoon-icon-magnet:before {
content: "\e6a6";
}
.icomoon-icon-remove:before {
content: "\e6a7";
}
.icomoon-icon-remove2:before {
content: "\e6a8";
}
.icomoon-icon-briefcase:before {
content: "\e6a9";
}
.icomoon-icon-airplane:before {
content: "\e6aa";
}
.icomoon-icon-truck:before {
content: "\e6ab";
}
.icomoon-icon-road:before {
content: "\e6ac";
}
.icomoon-icon-accessibility:before {
content: "\e6ad";
}
.icomoon-icon-target:before {
content: "\e6ae";
}
.icomoon-icon-shield:before {
content: "\e6af";
}
.icomoon-icon-lightning:before {
content: "\e6b0";
}
.icomoon-icon-switch:before {
content: "\e6b1";
}
.icomoon-icon-powercord:before {
content: "\e6b2";
}
.icomoon-icon-signup:before {
content: "\e6b3";
}
.icomoon-icon-list:before {
content: "\e6b4";
}
.icomoon-icon-list2:before {
content: "\e6b5";
}
.icomoon-icon-numbered-list:before {
content: "\e6b6";
}
.icomoon-icon-menu:before {
content: "\e6b7";
}
.icomoon-icon-menu2:before {
content: "\e6b8";
}
.icomoon-icon-tree:before {
content: "\e6b9";
}
.icomoon-icon-cloud:before {
content: "\e6ba";
}
.icomoon-icon-cloud-download:before {
content: "\e6bb";
}
.icomoon-icon-cloud-upload:before {
content: "\e6bc";
}
.icomoon-icon-download2:before {
content: "\e6bd";
}
.icomoon-icon-upload2:before {
content: "\e6be";
}
.icomoon-icon-download3:before {
content: "\e6bf";
}
.icomoon-icon-upload3:before {
content: "\e6c0";
}
.icomoon-icon-globe:before {
content: "\e6c1";
}
.icomoon-icon-earth:before {
content: "\e6c2";
}
.icomoon-icon-link:before {
content: "\e6c3";
}
.icomoon-icon-flag:before {
content: "\e6c4";
}
.icomoon-icon-attachment:before {
content: "\e6c5";
}
.icomoon-icon-eye:before {
content: "\e6c6";
}
.icomoon-icon-eye-blocked:before {
content: "\e6c7";
}
.icomoon-icon-eye2:before {
content: "\e6c8";
}
.icomoon-icon-bookmark:before {
content: "\e6c9";
}
.icomoon-icon-bookmarks:before {
content: "\e6ca";
}
.icomoon-icon-brightness-medium:before {
content: "\e6cb";
}
.icomoon-icon-brightness-contrast:before {
content: "\e6cc";
}
.icomoon-icon-contrast:before {
content: "\e6cd";
}
.icomoon-icon-star:before {
content: "\e6ce";
}
.icomoon-icon-star2:before {
content: "\e6cf";
}
.icomoon-icon-star3:before {
content: "\e6d0";
}
.icomoon-icon-heart:before {
content: "\e6d1";
}
.icomoon-icon-heart2:before {
content: "\e6d2";
}
.icomoon-icon-heart-broken:before {
content: "\e6d3";
}
.icomoon-icon-thumbs-up:before {
content: "\e6d4";
}
.icomoon-icon-thumbs-up2:before {
content: "\e6d5";
}
.icomoon-icon-happy:before {
content: "\e6d6";
}
.icomoon-icon-happy2:before {
content: "\e6d7";
}
.icomoon-icon-smiley:before {
content: "\e6d8";
}
.icomoon-icon-smiley2:before {
content: "\e6d9";
}
.icomoon-icon-tongue:before {
content: "\e6da";
}
.icomoon-icon-tongue2:before {
content: "\e6db";
}
.icomoon-icon-sad:before {
content: "\e6dc";
}
.icomoon-icon-sad2:before {
content: "\e6dd";
}
.icomoon-icon-wink:before {
content: "\e6de";
}
.icomoon-icon-wink2:before {
content: "\e6df";
}
.icomoon-icon-grin:before {
content: "\e6e0";
}
.icomoon-icon-grin2:before {
content: "\e6e1";
}
.icomoon-icon-cool:before {
content: "\e6e2";
}
.icomoon-icon-cool2:before {
content: "\e6e3";
}
.icomoon-icon-angry:before {
content: "\e6e4";
}
.icomoon-icon-angry2:before {
content: "\e6e5";
}
.icomoon-icon-evil:before {
content: "\e6e6";
}
.icomoon-icon-evil2:before {
content: "\e6e7";
}
.icomoon-icon-shocked:before {
content: "\e6e8";
}
.icomoon-icon-shocked2:before {
content: "\e6e9";
}
.icomoon-icon-confused:before {
content: "\e6ea";
}
.icomoon-icon-confused2:before {
content: "\e6eb";
}
.icomoon-icon-neutral:before {
content: "\e6ec";
}
.icomoon-icon-neutral2:before {
content: "\e6ed";
}
.icomoon-icon-wondering:before {
content: "\e6ee";
}
.icomoon-icon-wondering2:before {
content: "\e6ef";
}
.icomoon-icon-point-up:before {
content: "\e6f0";
}
.icomoon-icon-point-right:before {
content: "\e6f1";
}
.icomoon-icon-point-down:before {
content: "\e6f2";
}
.icomoon-icon-point-left:before {
content: "\e6f3";
}
.icomoon-icon-warning:before {
content: "\e6f4";
}
.icomoon-icon-notification:before {
content: "\e6f5";
}
.icomoon-icon-question:before {
content: "\e6f6";
}
.icomoon-icon-info:before {
content: "\e6f7";
}
.icomoon-icon-info2:before {
content: "\e6f8";
}
.icomoon-icon-blocked:before {
content: "\e6f9";
}
.icomoon-icon-cancel-circle:before {
content: "\e6fa";
}
.icomoon-icon-checkmark-circle:before {
content: "\e6fb";
}
.icomoon-icon-spam:before {
content: "\e6fc";
}
.icomoon-icon-close:before {
content: "\e6fd";
}
.icomoon-icon-checkmark:before {
content: "\e6fe";
}
.icomoon-icon-checkmark2:before {
content: "\e6ff";
}
.icomoon-icon-spell-check:before {
content: "\e700";
}
.icomoon-icon-minus:before {
content: "\e701";
}
.icomoon-icon-plus:before {
content: "\e702";
}
.icomoon-icon-enter:before {
content: "\e703";
}
.icomoon-icon-exit:before {
content: "\e704";
}
.icomoon-icon-play2:before {
content: "\e705";
}
.icomoon-icon-pause:before {
content: "\e706";
}
.icomoon-icon-stop:before {
content: "\e707";
}
.icomoon-icon-backward:before {
content: "\e708";
}
.icomoon-icon-forward2:before {
content: "\e709";
}
.icomoon-icon-play3:before {
content: "\e70a";
}
.icomoon-icon-pause2:before {
content: "\e70b";
}
.icomoon-icon-stop2:before {
content: "\e70c";
}
.icomoon-icon-backward2:before {
content: "\e70d";
}
.icomoon-icon-forward3:before {
content: "\e70e";
}
.icomoon-icon-first:before {
content: "\e70f";
}
.icomoon-icon-last:before {
content: "\e710";
}
.icomoon-icon-previous:before {
content: "\e711";
}
.icomoon-icon-next:before {
content: "\e712";
}
.icomoon-icon-eject:before {
content: "\e713";
}
.icomoon-icon-volume-high:before {
content: "\e714";
}
.icomoon-icon-volume-medium:before {
content: "\e715";
}
.icomoon-icon-volume-low:before {
content: "\e716";
}
.icomoon-icon-volume-mute:before {
content: "\e717";
}
.icomoon-icon-volume-mute2:before {
content: "\e718";
}
.icomoon-icon-volume-increase:before {
content: "\e719";
}
.icomoon-icon-volume-decrease:before {
content: "\e71a";
}
.icomoon-icon-loop:before {
content: "\e71b";
}
.icomoon-icon-loop2:before {
content: "\e71c";
}
.icomoon-icon-loop3:before {
content: "\e71d";
}
.icomoon-icon-shuffle:before {
content: "\e71e";
}
.icomoon-icon-arrow-up-left:before {
content: "\e71f";
}
.icomoon-icon-arrow-up:before {
content: "\e720";
}
.icomoon-icon-arrow-up-right:before {
content: "\e721";
}
.icomoon-icon-arrow-right:before {
content: "\e722";
}
.icomoon-icon-arrow-down-right:before {
content: "\e723";
}
.icomoon-icon-arrow-down:before {
content: "\e724";
}
.icomoon-icon-arrow-down-left:before {
content: "\e725";
}
.icomoon-icon-arrow-left:before {
content: "\e726";
}
.icomoon-icon-arrow-up-left2:before {
content: "\e727";
}
.icomoon-icon-arrow-up2:before {
content: "\e728";
}
.icomoon-icon-arrow-up-right2:before {
content: "\e729";
}
.icomoon-icon-arrow-right2:before {
content: "\e72a";
}
.icomoon-icon-arrow-down-right2:before {
content: "\e72b";
}
.icomoon-icon-arrow-down2:before {
content: "\e72c";
}
.icomoon-icon-arrow-down-left2:before {
content: "\e72d";
}
.icomoon-icon-arrow-left2:before {
content: "\e72e";
}
.icomoon-icon-arrow-up-left3:before {
content: "\e72f";
}
.icomoon-icon-arrow-up3:before {
content: "\e730";
}
.icomoon-icon-arrow-up-right3:before {
content: "\e731";
}
.icomoon-icon-arrow-right3:before {
content: "\e732";
}
.icomoon-icon-arrow-down-right3:before {
content: "\e733";
}
.icomoon-icon-arrow-down3:before {
content: "\e734";
}
.icomoon-icon-arrow-down-left3:before {
content: "\e735";
}
.icomoon-icon-arrow-left3:before {
content: "\e736";
}
.icomoon-icon-tab:before {
content: "\e737";
}
.icomoon-icon-checkbox-checked:before {
content: "\e738";
}
.icomoon-icon-checkbox-unchecked:before {
content: "\e739";
}
.icomoon-icon-checkbox-partial:before {
content: "\e73a";
}
.icomoon-icon-radio-checked:before {
content: "\e73b";
}
.icomoon-icon-radio-unchecked:before {
content: "\e73c";
}
.icomoon-icon-crop:before {
content: "\e73d";
}
.icomoon-icon-scissors:before {
content: "\e73e";
}
.icomoon-icon-filter:before {
content: "\e73f";
}
.icomoon-icon-filter2:before {
content: "\e740";
}
.icomoon-icon-font:before {
content: "\e741";
}
.icomoon-icon-text-height:before {
content: "\e742";
}
.icomoon-icon-text-width:before {
content: "\e743";
}
.icomoon-icon-bold:before {
content: "\e744";
}
.icomoon-icon-underline:before {
content: "\e745";
}
.icomoon-icon-italic:before {
content: "\e746";
}
.icomoon-icon-strikethrough:before {
content: "\e747";
}
.icomoon-icon-omega:before {
content: "\e748";
}
.icomoon-icon-sigma:before {
content: "\e749";
}
.icomoon-icon-table:before {
content: "\e74a";
}
.icomoon-icon-table2:before {
content: "\e74b";
}
.icomoon-icon-insert-template:before {
content: "\e74c";
}
.icomoon-icon-pilcrow:before {
content: "\e74d";
}
.icomoon-icon-lefttoright:before {
content: "\e74e";
}
.icomoon-icon-righttoleft:before {
content: "\e74f";
}
.icomoon-icon-paragraph-left:before {
content: "\e750";
}
.icomoon-icon-paragraph-center:before {
content: "\e751";
}
.icomoon-icon-paragraph-right:before {
content: "\e752";
}
.icomoon-icon-paragraph-justify:before {
content: "\e753";
}
.icomoon-icon-paragraph-left2:before {
content: "\e754";
}
.icomoon-icon-paragraph-center2:before {
content: "\e755";
}
.icomoon-icon-paragraph-right2:before {
content: "\e756";
}
.icomoon-icon-paragraph-justify2:before {
content: "\e757";
}
.icomoon-icon-indent-increase:before {
content: "\e758";
}
.icomoon-icon-indent-decrease:before {
content: "\e759";
}
.icomoon-icon-newtab:before {
content: "\e75a";
}
.icomoon-icon-embed:before {
content: "\e75b";
}
.icomoon-icon-code:before {
content: "\e75c";
}
.icomoon-icon-console:before {
content: "\e75d";
}
.icomoon-icon-share:before {
content: "\e75e";
}
.icomoon-icon-mail:before {
content: "\e75f";
}
.icomoon-icon-mail2:before {
content: "\e760";
}
.icomoon-icon-mail3:before {
content: "\e761";
}
.icomoon-icon-mail4:before {
content: "\e762";
}
.icomoon-icon-google:before {
content: "\e763";
}
.icomoon-icon-googleplus:before {
content: "\e764";
}
.icomoon-icon-googleplus2:before {
content: "\e765";
}
.icomoon-icon-googleplus3:before {
content: "\e766";
}
.icomoon-icon-googleplus4:before {
content: "\e767";
}
.icomoon-icon-google-drive:before {
content: "\e768";
}
.icomoon-icon-facebook:before {
content: "\e769";
}
.icomoon-icon-facebook2:before {
content: "\e76a";
}
.icomoon-icon-facebook3:before {
content: "\e76b";
}
.icomoon-icon-instagram:before {
content: "\e76c";
}
.icomoon-icon-twitter:before {
content: "\e76d";
}
.icomoon-icon-twitter2:before {
content: "\e76e";
}
.icomoon-icon-twitter3:before {
content: "\e76f";
}
.icomoon-icon-feed2:before {
content: "\e770";
}
.icomoon-icon-feed3:before {
content: "\e771";
}
.icomoon-icon-feed4:before {
content: "\e772";
}
.icomoon-icon-youtube:before {
content: "\e773";
}
.icomoon-icon-youtube2:before {
content: "\e774";
}
.icomoon-icon-vimeo:before {
content: "\e775";
}
.icomoon-icon-vimeo2:before {
content: "\e776";
}
.icomoon-icon-vimeo3:before {
content: "\e777";
}
.icomoon-icon-lanyrd:before {
content: "\e778";
}
.icomoon-icon-flickr:before {
content: "\e779";
}
.icomoon-icon-flickr2:before {
content: "\e77a";
}
.icomoon-icon-flickr3:before {
content: "\e77b";
}
.icomoon-icon-flickr4:before {
content: "\e77c";
}
.icomoon-icon-picassa:before {
content: "\e77d";
}
.icomoon-icon-picassa2:before {
content: "\e77e";
}
.icomoon-icon-dribbble:before {
content: "\e77f";
}
.icomoon-icon-dribbble2:before {
content: "\e780";
}
.icomoon-icon-dribbble3:before {
content: "\e781";
}
.icomoon-icon-forrst:before {
content: "\e782";
}
.icomoon-icon-forrst2:before {
content: "\e783";
}
.icomoon-icon-deviantart:before {
content: "\e784";
}
.icomoon-icon-deviantart2:before {
content: "\e785";
}
.icomoon-icon-steam:before {
content: "\e786";
}
.icomoon-icon-steam2:before {
content: "\e787";
}
.icomoon-icon-github:before {
content: "\e788";
}
.icomoon-icon-github2:before {
content: "\e789";
}
.icomoon-icon-github3:before {
content: "\e78a";
}
.icomoon-icon-github4:before {
content: "\e78b";
}
.icomoon-icon-github5:before {
content: "\e78c";
}
.icomoon-icon-wordpress:before {
content: "\e78d";
}
.icomoon-icon-wordpress2:before {
content: "\e78e";
}
.icomoon-icon-joomla:before {
content: "\e78f";
}
.icomoon-icon-blogger:before {
content: "\e790";
}
.icomoon-icon-blogger2:before {
content: "\e791";
}
.icomoon-icon-tumblr:before {
content: "\e792";
}
.icomoon-icon-tumblr2:before {
content: "\e793";
}
.icomoon-icon-yahoo:before {
content: "\e794";
}
.icomoon-icon-tux:before {
content: "\e795";
}
.icomoon-icon-apple:before {
content: "\e796";
}
.icomoon-icon-finder:before {
content: "\e797";
}
.icomoon-icon-android:before {
content: "\e798";
}
.icomoon-icon-windows:before {
content: "\e799";
}
.icomoon-icon-windows8:before {
content: "\e79a";
}
.icomoon-icon-soundcloud:before {
content: "\e79b";
}
.icomoon-icon-soundcloud2:before {
content: "\e79c";
}
.icomoon-icon-skype:before {
content: "\e79d";
}
.icomoon-icon-reddit:before {
content: "\e79e";
}
.icomoon-icon-linkedin:before {
content: "\e79f";
}
.icomoon-icon-lastfm:before {
content: "\e7a0";
}
.icomoon-icon-lastfm2:before {
content: "\e7a1";
}
.icomoon-icon-delicious:before {
content: "\e7a2";
}
.icomoon-icon-stumbleupon:before {
content: "\e7a3";
}
.icomoon-icon-stumbleupon2:before {
content: "\e7a4";
}
.icomoon-icon-stackoverflow:before {
content: "\e7a5";
}
.icomoon-icon-pinterest:before {
content: "\e7a6";
}
.icomoon-icon-pinterest2:before {
content: "\e7a7";
}
.icomoon-icon-xing:before {
content: "\e7a8";
}
.icomoon-icon-xing2:before {
content: "\e7a9";
}
.icomoon-icon-flattr:before {
content: "\e7aa";
}
.icomoon-icon-foursquare:before {
content: "\e7ab";
}
.icomoon-icon-foursquare2:before {
content: "\e7ac";
}
.icomoon-icon-paypal:before {
content: "\e7ad";
}
.icomoon-icon-paypal2:before {
content: "\e7ae";
}
.icomoon-icon-paypal3:before {
content: "\e7af";
}
.icomoon-icon-yelp:before {
content: "\e7b0";
}
.icomoon-icon-libreoffice:before {
content: "\e7b1";
}
.icomoon-icon-file-pdf:before {
content: "\e7b2";
}
.icomoon-icon-file-openoffice:before {
content: "\e7b3";
}
.icomoon-icon-file-word:before {
content: "\e7b4";
}
.icomoon-icon-file-excel:before {
content: "\e7b5";
}
.icomoon-icon-file-zip:before {
content: "\e7b6";
}
.icomoon-icon-file-powerpoint:before {
content: "\e7b7";
}
.icomoon-icon-file-xml:before {
content: "\e7b8";
}
.icomoon-icon-file-css:before {
content: "\e7b9";
}
.icomoon-icon-html5:before {
content: "\e7ba";
}
.icomoon-icon-html52:before {
content: "\e7bb";
}
.icomoon-icon-css3:before {
content: "\e7bc";
}
.icomoon-icon-chrome:before {
content: "\e7bd";
}
.icomoon-icon-firefox:before {
content: "\e7be";
}
.icomoon-icon-IE:before {
content: "\e7bf";
}
.icomoon-icon-opera:before {
content: "\e7c0";
}
.icomoon-icon-safari:before {
content: "\e7c1";
}
.icomoon-icon-IcoMoon:before {
content: "\e7c2";
}
.icomoon-icon-azoom-arrow-down:before {
content: "\e800";
}
.icomoon-icon-list3:before {
content: "\e7c3";
}
.icomoon-icon-arrow-left4:before {
content: "\e7c4";
}
.icomoon-icon-arrow-down4:before {
content: "\e7c5";
}
.icomoon-icon-arrow-up4:before {
content: "\e7c6";
}
.icomoon-icon-arrow-right4:before {
content: "\e7c7";
}
.icomoon-icon-arrow-left5:before {
content: "\e7c8";
}
.icomoon-icon-arrow-down5:before {
content: "\e7c9";
}
.icomoon-icon-arrow-up5:before {
content: "\e7ca";
}
.icomoon-icon-arrow-right5:before {
content: "\e7cb";
}
.icomoon-icon-arrow-left6:before {
content: "\e7cc";
}
.icomoon-icon-arrow-down6:before {
content: "\e7cd";
}
.icomoon-icon-arrow-up6:before {
content: "\e7ce";
}
.icomoon-icon-uniE7CF:before {
content: "\e7cf";
}
.icomoon-icon-heart3:before {
content: "\e7d0";
}
.icomoon-icon-cloud2:before {
content: "\e7d1";
}
.icomoon-icon-star4:before {
content: "\e7d2";
}
.icomoon-icon-tv2:before {
content: "\e7d3";
}
.icomoon-icon-sound:before {
content: "\e7d4";
}
.icomoon-icon-video:before {
content: "\e7d5";
}
.icomoon-icon-trash:before {
content: "\e7d6";
}
.icomoon-icon-user5:before {
content: "\e7d7";
}
.icomoon-icon-key3:before {
content: "\e7d8";
}
.icomoon-icon-search2:before {
content: "\e7d9";
}
.icomoon-icon-settings2:before {
content: "\e7da";
}
.icomoon-icon-camera3:before {
content: "\e7db";
}
.icomoon-icon-tag2:before {
content: "\e7dc";
}
.icomoon-icon-lock3:before {
content: "\e7dd";
}
.icomoon-icon-bulb:before {
content: "\e7de";
}
.icomoon-icon-pen2:before {
content: "\e7df";
}
.icomoon-icon-diamond:before {
content: "\e7e0";
}
.icomoon-icon-display:before {
content: "\e7e1";
}
.icomoon-icon-location3:before {
content: "\e7e2";
}
.icomoon-icon-eye3:before {
content: "\e7e3";
}
.icomoon-icon-bubble3:before {
content: "\e7e4";
}
.icomoon-icon-stack2:before {
content: "\e7e5";
}
.icomoon-icon-cup:before {
content: "\e7e6";
}
.icomoon-icon-phone2:before {
content: "\e7e7";
}
.icomoon-icon-news:before {
content: "\e7e8";
}
.icomoon-icon-mail5:before {
content: "\e7e9";
}
.icomoon-icon-like:before {
content: "\e7ea";
}
.icomoon-icon-photo:before {
content: "\e7eb";
}
.icomoon-icon-note:before {
content: "\e7ec";
}
.icomoon-icon-clock3:before {
content: "\e7ed";
}
.icomoon-icon-paperplane:before {
content: "\e7ee";
}
.icomoon-icon-params:before {
content: "\e7ef";
}
.icomoon-icon-banknote:before {
content: "\e7f0";
}
.icomoon-icon-data:before {
content: "\e7f1";
}
.icomoon-icon-music2:before {
content: "\e7f2";
}
.icomoon-icon-megaphone:before {
content: "\e7f3";
}
.icomoon-icon-study:before {
content: "\e7f4";
}
.icomoon-icon-lab2:before {
content: "\e7f5";
}
.icomoon-icon-food2:before {
content: "\e7f6";
}
.icomoon-icon-t-shirt:before {
content: "\e7f7";
}
.icomoon-icon-fire2:before {
content: "\e7f8";
}
.icomoon-icon-clip:before {
content: "\e7f9";
}
.icomoon-icon-shop:before {
content: "\e7fa";
}
.icomoon-icon-calendar3:before {
content: "\e7fb";
}
.icomoon-icon-wallet:before {
content: "\e7fc";
}
.icomoon-icon-vynil:before {
content: "\e7fd";
}
.icomoon-icon-truck2:before {
content: "\e7fe";
}
.icomoon-icon-world:before {
content: "\e7ff";
}
.icomoon-icon-30:before {
content: "\e02d";
}
.icomoon-icon-45:before {
content: "\e02e";
}
.icomoon-icon-601:before {
content: "\e02f";
}
.icomoon-icon-a1:before {
content: "\e030";
}
.icomoon-icon-abacus:before {
content: "\e033";
}
.icomoon-icon-academic:before {
content: "\e034";
}
.icomoon-icon-adn1:before {
content: "\e035";
}
.icomoon-icon-alphabet1:before {
content: "\e037";
}
.icomoon-icon-amount:before {
content: "\e039";
}
.icomoon-icon-avi1:before {
content: "\e03d";
}
.icomoon-icon-bag:before {
content: "\e041";
}
.icomoon-icon-big52:before {
content: "\e042";
}
.icomoon-icon-big55:before {
content: "\e043";
}
.icomoon-icon-big56:before {
content: "\e044";
}
.icomoon-icon-chemical:before {
content: "\e05c";
}
.icomoon-icon-chemistry:before {
content: "\e05d";
}
.icomoon-icon-cinema2:before {
content: "\e05e";
}
.icomoon-icon-clock4:before {
content: "\e060";
}
.icomoon-icon-clock5:before {
content: "\e061";
}
.icomoon-icon-competition:before {
content: "\e062";
}
.icomoon-icon-computer12:before {
content: "\e063";
}
.icomoon-icon-correct2:before {
content: "\e064";
}
.icomoon-icon-desktop:before {
content: "\e068";
}
.icomoon-icon-dotplot:before {
content: "\e06c";
}
.icomoon-icon-download4:before {
content: "\e06d";
}
.icomoon-icon-download8:before {
content: "\e06e";
}
.icomoon-icon-education:before {
content: "\e076";
}
.icomoon-icon-fifteen:before {
content: "\e079";
}
.icomoon-icon-file32:before {
content: "\e07a";
}
.icomoon-icon-flag4:before {
content: "\e07e";
}
.icomoon-icon-football1:before {
content: "\e07f";
}
.icomoon-icon-glasses:before {
content: "\e084";
}
.icomoon-icon-graph:before {
content: "\e085";
}
.icomoon-icon-guitar:before {
content: "\e086";
}
.icomoon-icon-hand:before {
content: "\e087";
}
.icomoon-icon-insignia:before {
content: "\e08f";
}
.icomoon-icon-mathematical:before {
content: "\e09c";
}
.icomoon-icon-meeting:before {
content: "\e09f";
}
.icomoon-icon-molecules1:before {
content: "\e0a1";
}
.icomoon-icon-online:before {
content: "\e0ac";
}
.icomoon-icon-physical:before {
content: "\e0b6";
}
.icomoon-icon-physics:before {
content: "\e0b7";
}
.icomoon-icon-picture5:before {
content: "\e0b8";
}
.icomoon-icon-pie3:before {
content: "\e0b9";
}
.icomoon-icon-placard:before {
content: "\e0bb";
}
.icomoon-icon-play6:before {
content: "\e0bd";
}
.icomoon-icon-play7:before {
content: "\e0be";
}
.icomoon-icon-quarter:before {
content: "\e0c2";
}
.icomoon-icon-research:before {
content: "\e0c3";
}
.icomoon-icon-schedule:before {
content: "\e0c6";
}
.icomoon-icon-school1:before {
content: "\e0c7";
}
.icomoon-icon-school4:before {
content: "\e0c8";
}
.icomoon-icon-science1:before {
content: "\e0cc";
}
.icomoon-icon-science2:before {
content: "\e0cd";
}
.icomoon-icon-science:before {
content: "\e0ce";
}
.icomoon-icon-set1:before {
content: "\e0cf";
}
.icomoon-icon-shake:before {
content: "\e0d0";
}
.icomoon-icon-shelf:before {
content: "\e0d1";
}
.icomoon-icon-shopping7:before {
content: "\e0d2";
}
.icomoon-icon-small54:before {
content: "\e0d5";
}
.icomoon-icon-smartphone2:before {
content: "\e0d6";
}
.icomoon-icon-smartphone:before {
content: "\e0d7";
}
.icomoon-icon-tablet2:before {
content: "\e0dd";
}
.icomoon-icon-tactil1:before {
content: "\e0de";
}
.icomoon-icon-talking:before {
content: "\e0df";
}
.icomoon-icon-teacher:before {
content: "\e0e0";
}
.icomoon-icon-teach:before {
content: "\e0e1";
}
.icomoon-icon-telescope:before {
content: "\e0e2";
}
.icomoon-icon-time2:before {
content: "\e0e5";
}
.icomoon-icon-university2:before {
content: "\e0e8";
}
.icomoon-icon-university:before {
content: "\e0e9";
}
.icomoon-icon-wall3:before {
content: "\e0ee";
}
.icomoon-icon-window8:before {
content: "\e0f1";
}
.icomoon-icon-working1:before {
content: "\e0f3";
}
.icomoon-icon-2440:before {
content: "\e16e";
}
.icomoon-icon-air6:before {
content: "\e171";
}
.icomoon-icon-airplane68:before {
content: "\e174";
}
.icomoon-icon-black331:before {
content: "\e177";
}
.icomoon-icon-call36:before {
content: "\e17c";
}
.icomoon-icon-call37:before {
content: "\e17d";
}
.icomoon-icon-clipboard52:before {
content: "\e17f";
}
.icomoon-icon-delivery21:before {
content: "\e18c";
}
.icomoon-icon-delivery23:before {
content: "\e18e";
}
.icomoon-icon-delivery25:before {
content: "\e190";
}
.icomoon-icon-delivery26:before {
content: "\e191";
}
.icomoon-icon-delivery29:before {
content: "\e194";
}
.icomoon-icon-delivery30:before {
content: "\e195";
}
.icomoon-icon-delivery39:before {
content: "\e19e";
}
.icomoon-icon-international11:before {
content: "\e1a3";
}
.icomoon-icon-international12:before {
content: "\e1a4";
}
.icomoon-icon-international14:before {
content: "\e1a6";
}
.icomoon-icon-logistics2:before {
content: "\e1ab";
}
.icomoon-icon-logistics3:before {
content: "\e1ac";
}
.icomoon-icon-logistics4:before {
content: "\e1ad";
}
.icomoon-icon-ocean3:before {
content: "\e1b1";
}
.icomoon-icon-package13:before {
content: "\e1b5";
}
.icomoon-icon-phone322:before {
content: "\e1bc";
}
.icomoon-icon-placeholder8:before {
content: "\e1be";
}
.icomoon-icon-triangular42:before {
content: "\e1c9";
}
.icomoon-icon-verification5:before {
content: "\e1cb";
}
.icomoon-icon-woman93:before {
content: "\e1cf";
}
.icomoon-icon-shopping109:before {
content: "\e1d2";
}
.icomoon-icon-shopping110:before {
content: "\e1d3";
}
.icomoon-icon-shopping111:before {
content: "\e1d4";
}
.icomoon-icon-shopping113:before {
content: "\e1d5";
}
.icomoon-icon-shopping114:before {
content: "\e1d6";
}
.icomoon-icon-finger2:before {
content: "\e1e7";
}
.icomoon-icon-finger5:before {
content: "\e1e9";
}
.icomoon-icon-finger:before {
content: "\e1ed";
}
.icomoon-icon-hand8:before {
content: "\e1f5";
}
.icomoon-icon-mobiletuxedo2:before {
content: "\e1f8";
}
.icomoon-icon-ring2:before {
content: "\e1fc";
}
.icomoon-icon-two33:before {
content: "\e201";
}
.icomoon-icon-collapse3:before {
content: "\e000";
}
.icomoon-icon-down44:before {
content: "\e001";
}
.icomoon-icon-down45:before {
content: "\e002";
}
.icomoon-icon-expand22:before {
content: "\e003";
}
.icomoon-icon-left126:before {
content: "\e004";
}
.icomoon-icon-left127:before {
content: "\e005";
}
.icomoon-icon-left128:before {
content: "\e006";
}
.icomoon-icon-left129:before {
content: "\e007";
}
.icomoon-icon-next15:before {
content: "\e008";
}
.icomoon-icon-previous11:before {
content: "\e009";
}
.icomoon-icon-right103:before {
content: "\e00a";
}
.icomoon-icon-right104:before {
content: "\e00b";
}
.icomoon-icon-right105:before {
content: "\e00c";
}
.icomoon-icon-right106:before {
content: "\e00d";
}
.icomoon-icon-right107:before {
content: "\e00e";
}
.icomoon-icon-thin35:before {
content: "\e00f";
}
.icomoon-icon-thin36:before {
content: "\e010";
}
.icomoon-icon-up76:before {
content: "\e011";
}
.icomoon-icon-up77:before {
content: "\e012";
}
.icomoon-icon-up78:before {
content: "\e013";
}
.icomoon-icon-fa-credit-card:before {
content: "\f09d";
}
.icomoon-icon-fa-money:before {
content: "\f0d6";
}
.icomoon-icon-uniF1B4:before {
content: "\f1b4";
}
.icomoon-icon-uniF1B5:before {
content: "\f1b5";
}
.icomoon-icon-fa-paypal:before {
content: "\f1ed";
}
.icomoon-icon-fa-google-wallet:before {
content: "\f1ee";
}
.icomoon-icon-fa-cc-visa:before {
content: "\f1f0";
}
.icomoon-icon-fa-cc-mastercard:before {
content: "\f1f1";
}
.icomoon-icon-fa-cc-discover:before {
content: "\f1f2";
}
.icomoon-icon-fa-cc-amex:before {
content: "\f1f3";
}
.icomoon-icon-fa-cc-paypal:before {
content: "\f1f4";
}
.icomoon-icon-fa-cc-stripe:before {
content: "\f1f5";
} | web/azoomtheme/icons/css/icomoon.css | @font-face {
font-family: 'icomoon';
src:url('../fonts/icomoon.eot?fx3v66');
src:url('../fonts/icomoon.eot?#iefixfx3v66') format('embedded-opentype'),
url('../fonts/icomoon.woff?fx3v66') format('woff'),
url('../fonts/icomoon.ttf?fx3v66') format('truetype'),
url('../fonts/icomoon.svg?fx3v66#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
.icomoon{
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icomoon-icon-home:before {
content: "\e600";
}
.icomoon-icon-home2:before {
content: "\e601";
}
.icomoon-icon-home3:before {
content: "\e602";
}
.icomoon-icon-office:before {
content: "\e603";
}
.icomoon-icon-newspaper:before {
content: "\e604";
}
.icomoon-icon-pencil:before {
content: "\e605";
}
.icomoon-icon-pencil2:before {
content: "\e606";
}
.icomoon-icon-quill:before {
content: "\e607";
}
.icomoon-icon-pen:before {
content: "\e608";
}
.icomoon-icon-blog:before {
content: "\e609";
}
.icomoon-icon-droplet:before {
content: "\e60a";
}
.icomoon-icon-paint-format:before {
content: "\e60b";
}
.icomoon-icon-image:before {
content: "\e60c";
}
.icomoon-icon-image2:before {
content: "\e60d";
}
.icomoon-icon-images:before {
content: "\e60e";
}
.icomoon-icon-camera:before {
content: "\e60f";
}
.icomoon-icon-music:before {
content: "\e610";
}
.icomoon-icon-headphones:before {
content: "\e611";
}
.icomoon-icon-play:before {
content: "\e612";
}
.icomoon-icon-film:before {
content: "\e613";
}
.icomoon-icon-camera2:before {
content: "\e614";
}
.icomoon-icon-dice:before {
content: "\e615";
}
.icomoon-icon-pacman:before {
content: "\e616";
}
.icomoon-icon-spades:before {
content: "\e617";
}
.icomoon-icon-clubs:before {
content: "\e618";
}
.icomoon-icon-diamonds:before {
content: "\e619";
}
.icomoon-icon-pawn:before {
content: "\e61a";
}
.icomoon-icon-bullhorn:before {
content: "\e61b";
}
.icomoon-icon-connection:before {
content: "\e61c";
}
.icomoon-icon-podcast:before {
content: "\e61d";
}
.icomoon-icon-feed:before {
content: "\e61e";
}
.icomoon-icon-book:before {
content: "\e61f";
}
.icomoon-icon-books:before {
content: "\e620";
}
.icomoon-icon-library:before {
content: "\e621";
}
.icomoon-icon-file:before {
content: "\e622";
}
.icomoon-icon-profile:before {
content: "\e623";
}
.icomoon-icon-file2:before {
content: "\e624";
}
.icomoon-icon-file3:before {
content: "\e625";
}
.icomoon-icon-file4:before {
content: "\e626";
}
.icomoon-icon-copy:before {
content: "\e627";
}
.icomoon-icon-copy2:before {
content: "\e628";
}
.icomoon-icon-copy3:before {
content: "\e629";
}
.icomoon-icon-paste:before {
content: "\e62a";
}
.icomoon-icon-paste2:before {
content: "\e62b";
}
.icomoon-icon-paste3:before {
content: "\e62c";
}
.icomoon-icon-stack:before {
content: "\e62d";
}
.icomoon-icon-folder:before {
content: "\e62e";
}
.icomoon-icon-folder-open:before {
content: "\e62f";
}
.icomoon-icon-tag:before {
content: "\e630";
}
.icomoon-icon-tags:before {
content: "\e631";
}
.icomoon-icon-barcode:before {
content: "\e632";
}
.icomoon-icon-qrcode:before {
content: "\e633";
}
.icomoon-icon-ticket:before {
content: "\e634";
}
.icomoon-icon-cart:before {
content: "\e635";
}
.icomoon-icon-cart2:before {
content: "\e636";
}
.icomoon-icon-cart3:before {
content: "\e637";
}
.icomoon-icon-coin:before {
content: "\e638";
}
.icomoon-icon-credit:before {
content: "\e639";
}
.icomoon-icon-calculate:before {
content: "\e63a";
}
.icomoon-icon-support:before {
content: "\e63b";
}
.icomoon-icon-phone:before {
content: "\e63c";
}
.icomoon-icon-phone-hang-up:before {
content: "\e63d";
}
.icomoon-icon-address-book:before {
content: "\e63e";
}
.icomoon-icon-notebook:before {
content: "\e63f";
}
.icomoon-icon-envelope:before {
content: "\e640";
}
.icomoon-icon-pushpin:before {
content: "\e641";
}
.icomoon-icon-location:before {
content: "\e642";
}
.icomoon-icon-location2:before {
content: "\e643";
}
.icomoon-icon-compass:before {
content: "\e644";
}
.icomoon-icon-map:before {
content: "\e645";
}
.icomoon-icon-map2:before {
content: "\e646";
}
.icomoon-icon-history:before {
content: "\e647";
}
.icomoon-icon-clock:before {
content: "\e648";
}
.icomoon-icon-clock2:before {
content: "\e649";
}
.icomoon-icon-alarm:before {
content: "\e64a";
}
.icomoon-icon-alarm2:before {
content: "\e64b";
}
.icomoon-icon-bell:before {
content: "\e64c";
}
.icomoon-icon-stopwatch:before {
content: "\e64d";
}
.icomoon-icon-calendar:before {
content: "\e64e";
}
.icomoon-icon-calendar2:before {
content: "\e64f";
}
.icomoon-icon-print:before {
content: "\e650";
}
.icomoon-icon-keyboard:before {
content: "\e651";
}
.icomoon-icon-screen:before {
content: "\e652";
}
.icomoon-icon-laptop:before {
content: "\e653";
}
.icomoon-icon-mobile:before {
content: "\e654";
}
.icomoon-icon-mobile2:before {
content: "\e655";
}
.icomoon-icon-tablet:before {
content: "\e656";
}
.icomoon-icon-tv:before {
content: "\e657";
}
.icomoon-icon-cabinet:before {
content: "\e658";
}
.icomoon-icon-drawer:before {
content: "\e659";
}
.icomoon-icon-drawer2:before {
content: "\e65a";
}
.icomoon-icon-drawer3:before {
content: "\e65b";
}
.icomoon-icon-box-add:before {
content: "\e65c";
}
.icomoon-icon-box-remove:before {
content: "\e65d";
}
.icomoon-icon-download:before {
content: "\e65e";
}
.icomoon-icon-upload:before {
content: "\e65f";
}
.icomoon-icon-disk:before {
content: "\e660";
}
.icomoon-icon-storage:before {
content: "\e661";
}
.icomoon-icon-undo:before {
content: "\e662";
}
.icomoon-icon-redo:before {
content: "\e663";
}
.icomoon-icon-flip:before {
content: "\e664";
}
.icomoon-icon-flip2:before {
content: "\e665";
}
.icomoon-icon-undo2:before {
content: "\e666";
}
.icomoon-icon-redo2:before {
content: "\e667";
}
.icomoon-icon-forward:before {
content: "\e668";
}
.icomoon-icon-reply:before {
content: "\e669";
}
.icomoon-icon-bubble:before {
content: "\e66a";
}
.icomoon-icon-bubbles:before {
content: "\e66b";
}
.icomoon-icon-bubbles2:before {
content: "\e66c";
}
.icomoon-icon-bubble2:before {
content: "\e66d";
}
.icomoon-icon-bubbles3:before {
content: "\e66e";
}
.icomoon-icon-bubbles4:before {
content: "\e66f";
}
.icomoon-icon-user:before {
content: "\e670";
}
.icomoon-icon-users:before {
content: "\e671";
}
.icomoon-icon-user2:before {
content: "\e672";
}
.icomoon-icon-users2:before {
content: "\e673";
}
.icomoon-icon-user3:before {
content: "\e674";
}
.icomoon-icon-user4:before {
content: "\e675";
}
.icomoon-icon-quotes-left:before {
content: "\e676";
}
.icomoon-icon-busy:before {
content: "\e677";
}
.icomoon-icon-spinner:before {
content: "\e678";
}
.icomoon-icon-spinner2:before {
content: "\e679";
}
.icomoon-icon-spinner3:before {
content: "\e67a";
}
.icomoon-icon-spinner4:before {
content: "\e67b";
}
.icomoon-icon-spinner5:before {
content: "\e67c";
}
.icomoon-icon-spinner6:before {
content: "\e67d";
}
.icomoon-icon-binoculars:before {
content: "\e67e";
}
.icomoon-icon-search:before {
content: "\e67f";
}
.icomoon-icon-zoomin:before {
content: "\e680";
}
.icomoon-icon-zoomout:before {
content: "\e681";
}
.icomoon-icon-expand:before {
content: "\e682";
}
.icomoon-icon-contract:before {
content: "\e683";
}
.icomoon-icon-expand2:before {
content: "\e684";
}
.icomoon-icon-contract2:before {
content: "\e685";
}
.icomoon-icon-key:before {
content: "\e686";
}
.icomoon-icon-key2:before {
content: "\e687";
}
.icomoon-icon-lock:before {
content: "\e688";
}
.icomoon-icon-lock2:before {
content: "\e689";
}
.icomoon-icon-unlocked:before {
content: "\e68a";
}
.icomoon-icon-wrench:before {
content: "\e68b";
}
.icomoon-icon-settings:before {
content: "\e68c";
}
.icomoon-icon-equalizer:before {
content: "\e68d";
}
.icomoon-icon-cog:before {
content: "\e68e";
}
.icomoon-icon-cogs:before {
content: "\e68f";
}
.icomoon-icon-cog2:before {
content: "\e690";
}
.icomoon-icon-hammer:before {
content: "\e691";
}
.icomoon-icon-wand:before {
content: "\e692";
}
.icomoon-icon-aid:before {
content: "\e693";
}
.icomoon-icon-bug:before {
content: "\e694";
}
.icomoon-icon-pie:before {
content: "\e695";
}
.icomoon-icon-stats:before {
content: "\e696";
}
.icomoon-icon-bars:before {
content: "\e697";
}
.icomoon-icon-bars2:before {
content: "\e698";
}
.icomoon-icon-gift:before {
content: "\e699";
}
.icomoon-icon-trophy:before {
content: "\e69a";
}
.icomoon-icon-glass:before {
content: "\e69b";
}
.icomoon-icon-mug:before {
content: "\e69c";
}
.icomoon-icon-food:before {
content: "\e69d";
}
.icomoon-icon-leaf:before {
content: "\e69e";
}
.icomoon-icon-rocket:before {
content: "\e69f";
}
.icomoon-icon-meter:before {
content: "\e6a0";
}
.icomoon-icon-meter2:before {
content: "\e6a1";
}
.icomoon-icon-dashboard:before {
content: "\e6a2";
}
.icomoon-icon-hammer2:before {
content: "\e6a3";
}
.icomoon-icon-fire:before {
content: "\e6a4";
}
.icomoon-icon-lab:before {
content: "\e6a5";
}
.icomoon-icon-magnet:before {
content: "\e6a6";
}
.icomoon-icon-remove:before {
content: "\e6a7";
}
.icomoon-icon-remove2:before {
content: "\e6a8";
}
.icomoon-icon-briefcase:before {
content: "\e6a9";
}
.icomoon-icon-airplane:before {
content: "\e6aa";
}
.icomoon-icon-truck:before {
content: "\e6ab";
}
.icomoon-icon-road:before {
content: "\e6ac";
}
.icomoon-icon-accessibility:before {
content: "\e6ad";
}
.icomoon-icon-target:before {
content: "\e6ae";
}
.icomoon-icon-shield:before {
content: "\e6af";
}
.icomoon-icon-lightning:before {
content: "\e6b0";
}
.icomoon-icon-switch:before {
content: "\e6b1";
}
.icomoon-icon-powercord:before {
content: "\e6b2";
}
.icomoon-icon-signup:before {
content: "\e6b3";
}
.icomoon-icon-list:before {
content: "\e6b4";
}
.icomoon-icon-list2:before {
content: "\e6b5";
}
.icomoon-icon-numbered-list:before {
content: "\e6b6";
}
.icomoon-icon-menu:before {
content: "\e6b7";
}
.icomoon-icon-menu2:before {
content: "\e6b8";
}
.icomoon-icon-tree:before {
content: "\e6b9";
}
.icomoon-icon-cloud:before {
content: "\e6ba";
}
.icomoon-icon-cloud-download:before {
content: "\e6bb";
}
.icomoon-icon-cloud-upload:before {
content: "\e6bc";
}
.icomoon-icon-download2:before {
content: "\e6bd";
}
.icomoon-icon-upload2:before {
content: "\e6be";
}
.icomoon-icon-download3:before {
content: "\e6bf";
}
.icomoon-icon-upload3:before {
content: "\e6c0";
}
.icomoon-icon-globe:before {
content: "\e6c1";
}
.icomoon-icon-earth:before {
content: "\e6c2";
}
.icomoon-icon-link:before {
content: "\e6c3";
}
.icomoon-icon-flag:before {
content: "\e6c4";
}
.icomoon-icon-attachment:before {
content: "\e6c5";
}
.icomoon-icon-eye:before {
content: "\e6c6";
}
.icomoon-icon-eye-blocked:before {
content: "\e6c7";
}
.icomoon-icon-eye2:before {
content: "\e6c8";
}
.icomoon-icon-bookmark:before {
content: "\e6c9";
}
.icomoon-icon-bookmarks:before {
content: "\e6ca";
}
.icomoon-icon-brightness-medium:before {
content: "\e6cb";
}
.icomoon-icon-brightness-contrast:before {
content: "\e6cc";
}
.icomoon-icon-contrast:before {
content: "\e6cd";
}
.icomoon-icon-star:before {
content: "\e6ce";
}
.icomoon-icon-star2:before {
content: "\e6cf";
}
.icomoon-icon-star3:before {
content: "\e6d0";
}
.icomoon-icon-heart:before {
content: "\e6d1";
}
.icomoon-icon-heart2:before {
content: "\e6d2";
}
.icomoon-icon-heart-broken:before {
content: "\e6d3";
}
.icomoon-icon-thumbs-up:before {
content: "\e6d4";
}
.icomoon-icon-thumbs-up2:before {
content: "\e6d5";
}
.icomoon-icon-happy:before {
content: "\e6d6";
}
.icomoon-icon-happy2:before {
content: "\e6d7";
}
.icomoon-icon-smiley:before {
content: "\e6d8";
}
.icomoon-icon-smiley2:before {
content: "\e6d9";
}
.icomoon-icon-tongue:before {
content: "\e6da";
}
.icomoon-icon-tongue2:before {
content: "\e6db";
}
.icomoon-icon-sad:before {
content: "\e6dc";
}
.icomoon-icon-sad2:before {
content: "\e6dd";
}
.icomoon-icon-wink:before {
content: "\e6de";
}
.icomoon-icon-wink2:before {
content: "\e6df";
}
.icomoon-icon-grin:before {
content: "\e6e0";
}
.icomoon-icon-grin2:before {
content: "\e6e1";
}
.icomoon-icon-cool:before {
content: "\e6e2";
}
.icomoon-icon-cool2:before {
content: "\e6e3";
}
.icomoon-icon-angry:before {
content: "\e6e4";
}
.icomoon-icon-angry2:before {
content: "\e6e5";
}
.icomoon-icon-evil:before {
content: "\e6e6";
}
.icomoon-icon-evil2:before {
content: "\e6e7";
}
.icomoon-icon-shocked:before {
content: "\e6e8";
}
.icomoon-icon-shocked2:before {
content: "\e6e9";
}
.icomoon-icon-confused:before {
content: "\e6ea";
}
.icomoon-icon-confused2:before {
content: "\e6eb";
}
.icomoon-icon-neutral:before {
content: "\e6ec";
}
.icomoon-icon-neutral2:before {
content: "\e6ed";
}
.icomoon-icon-wondering:before {
content: "\e6ee";
}
.icomoon-icon-wondering2:before {
content: "\e6ef";
}
.icomoon-icon-point-up:before {
content: "\e6f0";
}
.icomoon-icon-point-right:before {
content: "\e6f1";
}
.icomoon-icon-point-down:before {
content: "\e6f2";
}
.icomoon-icon-point-left:before {
content: "\e6f3";
}
.icomoon-icon-warning:before {
content: "\e6f4";
}
.icomoon-icon-notification:before {
content: "\e6f5";
}
.icomoon-icon-question:before {
content: "\e6f6";
}
.icomoon-icon-info:before {
content: "\e6f7";
}
.icomoon-icon-info2:before {
content: "\e6f8";
}
.icomoon-icon-blocked:before {
content: "\e6f9";
}
.icomoon-icon-cancel-circle:before {
content: "\e6fa";
}
.icomoon-icon-checkmark-circle:before {
content: "\e6fb";
}
.icomoon-icon-spam:before {
content: "\e6fc";
}
.icomoon-icon-close:before {
content: "\e6fd";
}
.icomoon-icon-checkmark:before {
content: "\e6fe";
}
.icomoon-icon-checkmark2:before {
content: "\e6ff";
}
.icomoon-icon-spell-check:before {
content: "\e700";
}
.icomoon-icon-minus:before {
content: "\e701";
}
.icomoon-icon-plus:before {
content: "\e702";
}
.icomoon-icon-enter:before {
content: "\e703";
}
.icomoon-icon-exit:before {
content: "\e704";
}
.icomoon-icon-play2:before {
content: "\e705";
}
.icomoon-icon-pause:before {
content: "\e706";
}
.icomoon-icon-stop:before {
content: "\e707";
}
.icomoon-icon-backward:before {
content: "\e708";
}
.icomoon-icon-forward2:before {
content: "\e709";
}
.icomoon-icon-play3:before {
content: "\e70a";
}
.icomoon-icon-pause2:before {
content: "\e70b";
}
.icomoon-icon-stop2:before {
content: "\e70c";
}
.icomoon-icon-backward2:before {
content: "\e70d";
}
.icomoon-icon-forward3:before {
content: "\e70e";
}
.icomoon-icon-first:before {
content: "\e70f";
}
.icomoon-icon-last:before {
content: "\e710";
}
.icomoon-icon-previous:before {
content: "\e711";
}
.icomoon-icon-next:before {
content: "\e712";
}
.icomoon-icon-eject:before {
content: "\e713";
}
.icomoon-icon-volume-high:before {
content: "\e714";
}
.icomoon-icon-volume-medium:before {
content: "\e715";
}
.icomoon-icon-volume-low:before {
content: "\e716";
}
.icomoon-icon-volume-mute:before {
content: "\e717";
}
.icomoon-icon-volume-mute2:before {
content: "\e718";
}
.icomoon-icon-volume-increase:before {
content: "\e719";
}
.icomoon-icon-volume-decrease:before {
content: "\e71a";
}
.icomoon-icon-loop:before {
content: "\e71b";
}
.icomoon-icon-loop2:before {
content: "\e71c";
}
.icomoon-icon-loop3:before {
content: "\e71d";
}
.icomoon-icon-shuffle:before {
content: "\e71e";
}
.icomoon-icon-arrow-up-left:before {
content: "\e71f";
}
.icomoon-icon-arrow-up:before {
content: "\e720";
}
.icomoon-icon-arrow-up-right:before {
content: "\e721";
}
.icomoon-icon-arrow-right:before {
content: "\e722";
}
.icomoon-icon-arrow-down-right:before {
content: "\e723";
}
.icomoon-icon-arrow-down:before {
content: "\e724";
}
.icomoon-icon-arrow-down-left:before {
content: "\e725";
}
.icomoon-icon-arrow-left:before {
content: "\e726";
}
.icomoon-icon-arrow-up-left2:before {
content: "\e727";
}
.icomoon-icon-arrow-up2:before {
content: "\e728";
}
.icomoon-icon-arrow-up-right2:before {
content: "\e729";
}
.icomoon-icon-arrow-right2:before {
content: "\e72a";
}
.icomoon-icon-arrow-down-right2:before {
content: "\e72b";
}
.icomoon-icon-arrow-down2:before {
content: "\e72c";
}
.icomoon-icon-arrow-down-left2:before {
content: "\e72d";
}
.icomoon-icon-arrow-left2:before {
content: "\e72e";
}
.icomoon-icon-arrow-up-left3:before {
content: "\e72f";
}
.icomoon-icon-arrow-up3:before {
content: "\e730";
}
.icomoon-icon-arrow-up-right3:before {
content: "\e731";
}
.icomoon-icon-arrow-right3:before {
content: "\e732";
}
.icomoon-icon-arrow-down-right3:before {
content: "\e733";
}
.icomoon-icon-arrow-down3:before {
content: "\e734";
}
.icomoon-icon-arrow-down-left3:before {
content: "\e735";
}
.icomoon-icon-arrow-left3:before {
content: "\e736";
}
.icomoon-icon-tab:before {
content: "\e737";
}
.icomoon-icon-checkbox-checked:before {
content: "\e738";
}
.icomoon-icon-checkbox-unchecked:before {
content: "\e739";
}
.icomoon-icon-checkbox-partial:before {
content: "\e73a";
}
.icomoon-icon-radio-checked:before {
content: "\e73b";
}
.icomoon-icon-radio-unchecked:before {
content: "\e73c";
}
.icomoon-icon-crop:before {
content: "\e73d";
}
.icomoon-icon-scissors:before {
content: "\e73e";
}
.icomoon-icon-filter:before {
content: "\e73f";
}
.icomoon-icon-filter2:before {
content: "\e740";
}
.icomoon-icon-font:before {
content: "\e741";
}
.icomoon-icon-text-height:before {
content: "\e742";
}
.icomoon-icon-text-width:before {
content: "\e743";
}
.icomoon-icon-bold:before {
content: "\e744";
}
.icomoon-icon-underline:before {
content: "\e745";
}
.icomoon-icon-italic:before {
content: "\e746";
}
.icomoon-icon-strikethrough:before {
content: "\e747";
}
.icomoon-icon-omega:before {
content: "\e748";
}
.icomoon-icon-sigma:before {
content: "\e749";
}
.icomoon-icon-table:before {
content: "\e74a";
}
.icomoon-icon-table2:before {
content: "\e74b";
}
.icomoon-icon-insert-template:before {
content: "\e74c";
}
.icomoon-icon-pilcrow:before {
content: "\e74d";
}
.icomoon-icon-lefttoright:before {
content: "\e74e";
}
.icomoon-icon-righttoleft:before {
content: "\e74f";
}
.icomoon-icon-paragraph-left:before {
content: "\e750";
}
.icomoon-icon-paragraph-center:before {
content: "\e751";
}
.icomoon-icon-paragraph-right:before {
content: "\e752";
}
.icomoon-icon-paragraph-justify:before {
content: "\e753";
}
.icomoon-icon-paragraph-left2:before {
content: "\e754";
}
.icomoon-icon-paragraph-center2:before {
content: "\e755";
}
.icomoon-icon-paragraph-right2:before {
content: "\e756";
}
.icomoon-icon-paragraph-justify2:before {
content: "\e757";
}
.icomoon-icon-indent-increase:before {
content: "\e758";
}
.icomoon-icon-indent-decrease:before {
content: "\e759";
}
.icomoon-icon-newtab:before {
content: "\e75a";
}
.icomoon-icon-embed:before {
content: "\e75b";
}
.icomoon-icon-code:before {
content: "\e75c";
}
.icomoon-icon-console:before {
content: "\e75d";
}
.icomoon-icon-share:before {
content: "\e75e";
}
.icomoon-icon-mail:before {
content: "\e75f";
}
.icomoon-icon-mail2:before {
content: "\e760";
}
.icomoon-icon-mail3:before {
content: "\e761";
}
.icomoon-icon-mail4:before {
content: "\e762";
}
.icomoon-icon-google:before {
content: "\e763";
}
.icomoon-icon-googleplus:before {
content: "\e764";
}
.icomoon-icon-googleplus2:before {
content: "\e765";
}
.icomoon-icon-googleplus3:before {
content: "\e766";
}
.icomoon-icon-googleplus4:before {
content: "\e767";
}
.icomoon-icon-google-drive:before {
content: "\e768";
}
.icomoon-icon-facebook:before {
content: "\e769";
}
.icomoon-icon-facebook2:before {
content: "\e76a";
}
.icomoon-icon-facebook3:before {
content: "\e76b";
}
.icomoon-icon-instagram:before {
content: "\e76c";
}
.icomoon-icon-twitter:before {
content: "\e76d";
}
.icomoon-icon-twitter2:before {
content: "\e76e";
}
.icomoon-icon-twitter3:before {
content: "\e76f";
}
.icomoon-icon-feed2:before {
content: "\e770";
}
.icomoon-icon-feed3:before {
content: "\e771";
}
.icomoon-icon-feed4:before {
content: "\e772";
}
.icomoon-icon-youtube:before {
content: "\e773";
}
.icomoon-icon-youtube2:before {
content: "\e774";
}
.icomoon-icon-vimeo:before {
content: "\e775";
}
.icomoon-icon-vimeo2:before {
content: "\e776";
}
.icomoon-icon-vimeo3:before {
content: "\e777";
}
.icomoon-icon-lanyrd:before {
content: "\e778";
}
.icomoon-icon-flickr:before {
content: "\e779";
}
.icomoon-icon-flickr2:before {
content: "\e77a";
}
.icomoon-icon-flickr3:before {
content: "\e77b";
}
.icomoon-icon-flickr4:before {
content: "\e77c";
}
.icomoon-icon-picassa:before {
content: "\e77d";
}
.icomoon-icon-picassa2:before {
content: "\e77e";
}
.icomoon-icon-dribbble:before {
content: "\e77f";
}
.icomoon-icon-dribbble2:before {
content: "\e780";
}
.icomoon-icon-dribbble3:before {
content: "\e781";
}
.icomoon-icon-forrst:before {
content: "\e782";
}
.icomoon-icon-forrst2:before {
content: "\e783";
}
.icomoon-icon-deviantart:before {
content: "\e784";
}
.icomoon-icon-deviantart2:before {
content: "\e785";
}
.icomoon-icon-steam:before {
content: "\e786";
}
.icomoon-icon-steam2:before {
content: "\e787";
}
.icomoon-icon-github:before {
content: "\e788";
}
.icomoon-icon-github2:before {
content: "\e789";
}
.icomoon-icon-github3:before {
content: "\e78a";
}
.icomoon-icon-github4:before {
content: "\e78b";
}
.icomoon-icon-github5:before {
content: "\e78c";
}
.icomoon-icon-wordpress:before {
content: "\e78d";
}
.icomoon-icon-wordpress2:before {
content: "\e78e";
}
.icomoon-icon-joomla:before {
content: "\e78f";
}
.icomoon-icon-blogger:before {
content: "\e790";
}
.icomoon-icon-blogger2:before {
content: "\e791";
}
.icomoon-icon-tumblr:before {
content: "\e792";
}
.icomoon-icon-tumblr2:before {
content: "\e793";
}
.icomoon-icon-yahoo:before {
content: "\e794";
}
.icomoon-icon-tux:before {
content: "\e795";
}
.icomoon-icon-apple:before {
content: "\e796";
}
.icomoon-icon-finder:before {
content: "\e797";
}
.icomoon-icon-android:before {
content: "\e798";
}
.icomoon-icon-windows:before {
content: "\e799";
}
.icomoon-icon-windows8:before {
content: "\e79a";
}
.icomoon-icon-soundcloud:before {
content: "\e79b";
}
.icomoon-icon-soundcloud2:before {
content: "\e79c";
}
.icomoon-icon-skype:before {
content: "\e79d";
}
.icomoon-icon-reddit:before {
content: "\e79e";
}
.icomoon-icon-linkedin:before {
content: "\e79f";
}
.icomoon-icon-lastfm:before {
content: "\e7a0";
}
.icomoon-icon-lastfm2:before {
content: "\e7a1";
}
.icomoon-icon-delicious:before {
content: "\e7a2";
}
.icomoon-icon-stumbleupon:before {
content: "\e7a3";
}
.icomoon-icon-stumbleupon2:before {
content: "\e7a4";
}
.icomoon-icon-stackoverflow:before {
content: "\e7a5";
}
.icomoon-icon-pinterest:before {
content: "\e7a6";
}
.icomoon-icon-pinterest2:before {
content: "\e7a7";
}
.icomoon-icon-xing:before {
content: "\e7a8";
}
.icomoon-icon-xing2:before {
content: "\e7a9";
}
.icomoon-icon-flattr:before {
content: "\e7aa";
}
.icomoon-icon-foursquare:before {
content: "\e7ab";
}
.icomoon-icon-foursquare2:before {
content: "\e7ac";
}
.icomoon-icon-paypal:before {
content: "\e7ad";
}
.icomoon-icon-paypal2:before {
content: "\e7ae";
}
.icomoon-icon-paypal3:before {
content: "\e7af";
}
.icomoon-icon-yelp:before {
content: "\e7b0";
}
.icomoon-icon-libreoffice:before {
content: "\e7b1";
}
.icomoon-icon-file-pdf:before {
content: "\e7b2";
}
.icomoon-icon-file-openoffice:before {
content: "\e7b3";
}
.icomoon-icon-file-word:before {
content: "\e7b4";
}
.icomoon-icon-file-excel:before {
content: "\e7b5";
}
.icomoon-icon-file-zip:before {
content: "\e7b6";
}
.icomoon-icon-file-powerpoint:before {
content: "\e7b7";
}
.icomoon-icon-file-xml:before {
content: "\e7b8";
}
.icomoon-icon-file-css:before {
content: "\e7b9";
}
.icomoon-icon-html5:before {
content: "\e7ba";
}
.icomoon-icon-html52:before {
content: "\e7bb";
}
.icomoon-icon-css3:before {
content: "\e7bc";
}
.icomoon-icon-chrome:before {
content: "\e7bd";
}
.icomoon-icon-firefox:before {
content: "\e7be";
}
.icomoon-icon-IE:before {
content: "\e7bf";
}
.icomoon-icon-opera:before {
content: "\e7c0";
}
.icomoon-icon-safari:before {
content: "\e7c1";
}
.icomoon-icon-IcoMoon:before {
content: "\e7c2";
}
.icomoon-icon-azoom-arrow-down:before {
content: "\e800";
}
.icomoon-icon-list3:before {
content: "\e7c3";
}
.icomoon-icon-arrow-left4:before {
content: "\e7c4";
}
.icomoon-icon-arrow-down4:before {
content: "\e7c5";
}
.icomoon-icon-arrow-up4:before {
content: "\e7c6";
}
.icomoon-icon-arrow-right4:before {
content: "\e7c7";
}
.icomoon-icon-arrow-left5:before {
content: "\e7c8";
}
.icomoon-icon-arrow-down5:before {
content: "\e7c9";
}
.icomoon-icon-arrow-up5:before {
content: "\e7ca";
}
.icomoon-icon-arrow-right5:before {
content: "\e7cb";
}
.icomoon-icon-arrow-left6:before {
content: "\e7cc";
}
.icomoon-icon-arrow-down6:before {
content: "\e7cd";
}
.icomoon-icon-arrow-up6:before {
content: "\e7ce";
}
.icomoon-icon-uniE7CF:before {
content: "\e7cf";
}
.icomoon-icon-heart3:before {
content: "\e7d0";
}
.icomoon-icon-cloud2:before {
content: "\e7d1";
}
.icomoon-icon-star4:before {
content: "\e7d2";
}
.icomoon-icon-tv2:before {
content: "\e7d3";
}
.icomoon-icon-sound:before {
content: "\e7d4";
}
.icomoon-icon-video:before {
content: "\e7d5";
}
.icomoon-icon-trash:before {
content: "\e7d6";
}
.icomoon-icon-user5:before {
content: "\e7d7";
}
.icomoon-icon-key3:before {
content: "\e7d8";
}
.icomoon-icon-search2:before {
content: "\e7d9";
}
.icomoon-icon-settings2:before {
content: "\e7da";
}
.icomoon-icon-camera3:before {
content: "\e7db";
}
.icomoon-icon-tag2:before {
content: "\e7dc";
}
.icomoon-icon-lock3:before {
content: "\e7dd";
}
.icomoon-icon-bulb:before {
content: "\e7de";
}
.icomoon-icon-pen2:before {
content: "\e7df";
}
.icomoon-icon-diamond:before {
content: "\e7e0";
}
.icomoon-icon-display:before {
content: "\e7e1";
}
.icomoon-icon-location3:before {
content: "\e7e2";
}
.icomoon-icon-eye3:before {
content: "\e7e3";
}
.icomoon-icon-bubble3:before {
content: "\e7e4";
}
.icomoon-icon-stack2:before {
content: "\e7e5";
}
.icomoon-icon-cup:before {
content: "\e7e6";
}
.icomoon-icon-phone2:before {
content: "\e7e7";
}
.icomoon-icon-news:before {
content: "\e7e8";
}
.icomoon-icon-mail5:before {
content: "\e7e9";
}
.icomoon-icon-like:before {
content: "\e7ea";
}
.icomoon-icon-photo:before {
content: "\e7eb";
}
.icomoon-icon-note:before {
content: "\e7ec";
}
.icomoon-icon-clock3:before {
content: "\e7ed";
}
.icomoon-icon-paperplane:before {
content: "\e7ee";
}
.icomoon-icon-params:before {
content: "\e7ef";
}
.icomoon-icon-banknote:before {
content: "\e7f0";
}
.icomoon-icon-data:before {
content: "\e7f1";
}
.icomoon-icon-music2:before {
content: "\e7f2";
}
.icomoon-icon-megaphone:before {
content: "\e7f3";
}
.icomoon-icon-study:before {
content: "\e7f4";
}
.icomoon-icon-lab2:before {
content: "\e7f5";
}
.icomoon-icon-food2:before {
content: "\e7f6";
}
.icomoon-icon-t-shirt:before {
content: "\e7f7";
}
.icomoon-icon-fire2:before {
content: "\e7f8";
}
.icomoon-icon-clip:before {
content: "\e7f9";
}
.icomoon-icon-shop:before {
content: "\e7fa";
}
.icomoon-icon-calendar3:before {
content: "\e7fb";
}
.icomoon-icon-wallet:before {
content: "\e7fc";
}
.icomoon-icon-vynil:before {
content: "\e7fd";
}
.icomoon-icon-truck2:before {
content: "\e7fe";
}
.icomoon-icon-world:before {
content: "\e7ff";
}
.icomoon-icon-30:before {
content: "\e02d";
}
.icomoon-icon-45:before {
content: "\e02e";
}
.icomoon-icon-601:before {
content: "\e02f";
}
.icomoon-icon-a1:before {
content: "\e030";
}
.icomoon-icon-abacus:before {
content: "\e033";
}
.icomoon-icon-academic:before {
content: "\e034";
}
.icomoon-icon-adn1:before {
content: "\e035";
}
.icomoon-icon-alphabet1:before {
content: "\e037";
}
.icomoon-icon-amount:before {
content: "\e039";
}
.icomoon-icon-avi1:before {
content: "\e03d";
}
.icomoon-icon-bag:before {
content: "\e041";
}
.icomoon-icon-big52:before {
content: "\e042";
}
.icomoon-icon-big55:before {
content: "\e043";
}
.icomoon-icon-big56:before {
content: "\e044";
}
.icomoon-icon-chemical:before {
content: "\e05c";
}
.icomoon-icon-chemistry:before {
content: "\e05d";
}
.icomoon-icon-cinema2:before {
content: "\e05e";
}
.icomoon-icon-clock4:before {
content: "\e060";
}
.icomoon-icon-clock5:before {
content: "\e061";
}
.icomoon-icon-competition:before {
content: "\e062";
}
.icomoon-icon-computer12:before {
content: "\e063";
}
.icomoon-icon-correct2:before {
content: "\e064";
}
.icomoon-icon-desktop:before {
content: "\e068";
}
.icomoon-icon-dotplot:before {
content: "\e06c";
}
.icomoon-icon-download4:before {
content: "\e06d";
}
.icomoon-icon-download8:before {
content: "\e06e";
}
.icomoon-icon-education:before {
content: "\e076";
}
.icomoon-icon-fifteen:before {
content: "\e079";
}
.icomoon-icon-file32:before {
content: "\e07a";
}
.icomoon-icon-flag4:before {
content: "\e07e";
}
.icomoon-icon-football1:before {
content: "\e07f";
}
.icomoon-icon-glasses:before {
content: "\e084";
}
.icomoon-icon-graph:before {
content: "\e085";
}
.icomoon-icon-guitar:before {
content: "\e086";
}
.icomoon-icon-hand:before {
content: "\e087";
}
.icomoon-icon-insignia:before {
content: "\e08f";
}
.icomoon-icon-mathematical:before {
content: "\e09c";
}
.icomoon-icon-meeting:before {
content: "\e09f";
}
.icomoon-icon-molecules1:before {
content: "\e0a1";
}
.icomoon-icon-online:before {
content: "\e0ac";
}
.icomoon-icon-physical:before {
content: "\e0b6";
}
.icomoon-icon-physics:before {
content: "\e0b7";
}
.icomoon-icon-picture5:before {
content: "\e0b8";
}
.icomoon-icon-pie3:before {
content: "\e0b9";
}
.icomoon-icon-placard:before {
content: "\e0bb";
}
.icomoon-icon-play6:before {
content: "\e0bd";
}
.icomoon-icon-play7:before {
content: "\e0be";
}
.icomoon-icon-quarter:before {
content: "\e0c2";
}
.icomoon-icon-research:before {
content: "\e0c3";
}
.icomoon-icon-schedule:before {
content: "\e0c6";
}
.icomoon-icon-school1:before {
content: "\e0c7";
}
.icomoon-icon-school4:before {
content: "\e0c8";
}
.icomoon-icon-science1:before {
content: "\e0cc";
}
.icomoon-icon-science2:before {
content: "\e0cd";
}
.icomoon-icon-science:before {
content: "\e0ce";
}
.icomoon-icon-set1:before {
content: "\e0cf";
}
.icomoon-icon-shake:before {
content: "\e0d0";
}
.icomoon-icon-shelf:before {
content: "\e0d1";
}
.icomoon-icon-shopping7:before {
content: "\e0d2";
}
.icomoon-icon-small54:before {
content: "\e0d5";
}
.icomoon-icon-smartphone2:before {
content: "\e0d6";
}
.icomoon-icon-smartphone:before {
content: "\e0d7";
}
.icomoon-icon-tablet2:before {
content: "\e0dd";
}
.icomoon-icon-tactil1:before {
content: "\e0de";
}
.icomoon-icon-talking:before {
content: "\e0df";
}
.icomoon-icon-teacher:before {
content: "\e0e0";
}
.icomoon-icon-teach:before {
content: "\e0e1";
}
.icomoon-icon-telescope:before {
content: "\e0e2";
}
.icomoon-icon-time2:before {
content: "\e0e5";
}
.icomoon-icon-university2:before {
content: "\e0e8";
}
.icomoon-icon-university:before {
content: "\e0e9";
}
.icomoon-icon-wall3:before {
content: "\e0ee";
}
.icomoon-icon-window8:before {
content: "\e0f1";
}
.icomoon-icon-working1:before {
content: "\e0f3";
}
.icomoon-icon-2440:before {
content: "\e16e";
}
.icomoon-icon-air6:before {
content: "\e171";
}
.icomoon-icon-airplane68:before {
content: "\e174";
}
.icomoon-icon-black331:before {
content: "\e177";
}
.icomoon-icon-call36:before {
content: "\e17c";
}
.icomoon-icon-call37:before {
content: "\e17d";
}
.icomoon-icon-clipboard52:before {
content: "\e17f";
}
.icomoon-icon-delivery21:before {
content: "\e18c";
}
.icomoon-icon-delivery23:before {
content: "\e18e";
}
.icomoon-icon-delivery25:before {
content: "\e190";
}
.icomoon-icon-delivery26:before {
content: "\e191";
}
.icomoon-icon-delivery29:before {
content: "\e194";
}
.icomoon-icon-delivery30:before {
content: "\e195";
}
.icomoon-icon-delivery39:before {
content: "\e19e";
}
.icomoon-icon-international11:before {
content: "\e1a3";
}
.icomoon-icon-international12:before {
content: "\e1a4";
}
.icomoon-icon-international14:before {
content: "\e1a6";
}
.icomoon-icon-logistics2:before {
content: "\e1ab";
}
.icomoon-icon-logistics3:before {
content: "\e1ac";
}
.icomoon-icon-logistics4:before {
content: "\e1ad";
}
.icomoon-icon-ocean3:before {
content: "\e1b1";
}
.icomoon-icon-package13:before {
content: "\e1b5";
}
.icomoon-icon-phone322:before {
content: "\e1bc";
}
.icomoon-icon-placeholder8:before {
content: "\e1be";
}
.icomoon-icon-triangular42:before {
content: "\e1c9";
}
.icomoon-icon-verification5:before {
content: "\e1cb";
}
.icomoon-icon-woman93:before {
content: "\e1cf";
}
.icomoon-icon-shopping109:before {
content: "\e1d2";
}
.icomoon-icon-shopping110:before {
content: "\e1d3";
}
.icomoon-icon-shopping111:before {
content: "\e1d4";
}
.icomoon-icon-shopping113:before {
content: "\e1d5";
}
.icomoon-icon-shopping114:before {
content: "\e1d6";
}
.icomoon-icon-finger2:before {
content: "\e1e7";
}
.icomoon-icon-finger5:before {
content: "\e1e9";
}
.icomoon-icon-finger:before {
content: "\e1ed";
}
.icomoon-icon-hand8:before {
content: "\e1f5";
}
.icomoon-icon-mobiletuxedo2:before {
content: "\e1f8";
}
.icomoon-icon-ring2:before {
content: "\e1fc";
}
.icomoon-icon-two33:before {
content: "\e201";
}
.icomoon-icon-collapse3:before {
content: "\e000";
}
.icomoon-icon-down44:before {
content: "\e001";
}
.icomoon-icon-down45:before {
content: "\e002";
}
.icomoon-icon-expand22:before {
content: "\e003";
}
.icomoon-icon-left126:before {
content: "\e004";
}
.icomoon-icon-left127:before {
content: "\e005";
}
.icomoon-icon-left128:before {
content: "\e006";
}
.icomoon-icon-left129:before {
content: "\e007";
}
.icomoon-icon-next15:before {
content: "\e008";
}
.icomoon-icon-previous11:before {
content: "\e009";
}
.icomoon-icon-right103:before {
content: "\e00a";
}
.icomoon-icon-right104:before {
content: "\e00b";
}
.icomoon-icon-right105:before {
content: "\e00c";
}
.icomoon-icon-right106:before {
content: "\e00d";
}
.icomoon-icon-right107:before {
content: "\e00e";
}
.icomoon-icon-thin35:before {
content: "\e00f";
}
.icomoon-icon-thin36:before {
content: "\e010";
}
.icomoon-icon-up76:before {
content: "\e011";
}
.icomoon-icon-up77:before {
content: "\e012";
}
.icomoon-icon-up78:before {
content: "\e013";
}
.icomoon-icon-fa-credit-card:before {
content: "\f09d";
}
.icomoon-icon-fa-money:before {
content: "\f0d6";
}
.icomoon-icon-uniF1B4:before {
content: "\f1b4";
}
.icomoon-icon-uniF1B5:before {
content: "\f1b5";
}
.icomoon-icon-fa-paypal:before {
content: "\f1ed";
}
.icomoon-icon-fa-google-wallet:before {
content: "\f1ee";
}
.icomoon-icon-fa-cc-visa:before {
content: "\f1f0";
}
.icomoon-icon-fa-cc-mastercard:before {
content: "\f1f1";
}
.icomoon-icon-fa-cc-discover:before {
content: "\f1f2";
}
.icomoon-icon-fa-cc-amex:before {
content: "\f1f3";
}
.icomoon-icon-fa-cc-paypal:before {
content: "\f1f4";
}
.icomoon-icon-fa-cc-stripe:before {
content: "\f1f5";
} | 0.215598 | 0.091018 |
.nav {
display: flex;
justify-content: center;
align-items: center;
}
.nav__content {
display: inline-block;
}
.nav__menu {
display: none;
margin: 15px 0;
}
.nav__menu-items {
}
.nav__menu-item {
text-transform: uppercase;
letter-spacing: 0;
}
.nav__link .letter {
letter-spacing: 2px;
}
.nav__link {
padding: 12px;
color: rgba(255,255,255,.8);
font-size: 14px;
}
.nav__link:hover {
color: rgba(255,255,255,1);
}
.hero {
height: 80vh;
}
.main-content {
padding: 100px 30px;
text-align: left;
padding-left: 15px;
}
.project__card, .project__background,.project__details {
border-radius: 4px;
}
.project__card {
text-align: right;
margin: 3vh auto;
width: 90%;
}
.project__cta {
background: rgba(255,255,255,0.15);
background-color: #39af84;
text-align: center;
}
.project__link {
color: #fff !important ;
text-shadow: #888 0px 1px 5px;
font-size: 14px !important;
}
.project__details {
display: flex;
flex-direction: column;
justify-content: center;
position: relative ;
text-align: left;
padding: 45px;
width: 90%;
margin: 30px auto;
background: rgba(255,255,255,.9);
}
}
.hero {
height: 85vh;
}
.project__background {
position: relative;
top: 0;
min-height: 600px;
height: 50vh;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom left;
}
@media (min-height: 768px) and (max-width: 999px) {
.project__background {
height: 65vh;
}
}
@media (max-width: 999px) {
.main-content {
padding: 100px 0;
}
.project__details {
padding: 30px 15px;
}
}
@media (min-width: 1000px) and (max-width: 1800px) {
.project__background {
display: flex;
}
}
@media (min-width: 1000px) {
.nav {
justify-content: space-between;
}
.nav__menu {
display: flex;
}
.project__card {
margin: 0 auto 15vh;
}
.project__details {
border-radius: 0;
width: 30%;
margin: 0 0 0 auto;
}
}
@media (min-width: 1200px) {
.nav__link {
padding: 15px;
font-size: 16px;
}
.project__background {
background-position: bottom left
}
.project__details {
border-radius: 4px;
align-self: center;
box-shadow: rgba(0,0,0,.15) 0px 0px 15px;
right: 2.5%;
width: 30%;
}
}
@media (min-width: 1800px) {
.project__card {
width: 75%;
}
.project__details {
position: absolute;
width: 25%;
top: unset;
bottom: 60px;
padding: 30px;
}
.project__background {
min-height: 75vh;
}
.project__description {
font-size: 18px;
}
}
@media (min-width: 2200px) {
.project__background {
background-size: 1600px;
}
}
// Testimonials
.section__snapshot{
margin: 10vh auto;
}
.section__snapshot .main-content__lead-paragraph {
font-size: 36px;
}
.testimonial__quote {
font-size: 16px;
line-height: 1.75;
letter-spacing: 1px;
}
.testimonial__author-name,
.testimonial__author-role {
padding: 0;
}
.testimonial__author-name {
margin: 1em 0 0;
}
.testimonial__author-role {
margin: 0 0 .5em ;
font-size: 14px;
line-height: 1.5;
font-weight: 500;
color: #39af84;
letter-spacing: 1px;
}
.testimonial .skill__icon {
float: left;
margin: 1.1em 1em 4em 0;
}
@media (min-width: 768px) {
.testimonial:last-child {
width: 66% !important;
}
}
.copyright {
font-size: 18px;
line-height: 1.5;
} | src/css/new.css | .nav {
display: flex;
justify-content: center;
align-items: center;
}
.nav__content {
display: inline-block;
}
.nav__menu {
display: none;
margin: 15px 0;
}
.nav__menu-items {
}
.nav__menu-item {
text-transform: uppercase;
letter-spacing: 0;
}
.nav__link .letter {
letter-spacing: 2px;
}
.nav__link {
padding: 12px;
color: rgba(255,255,255,.8);
font-size: 14px;
}
.nav__link:hover {
color: rgba(255,255,255,1);
}
.hero {
height: 80vh;
}
.main-content {
padding: 100px 30px;
text-align: left;
padding-left: 15px;
}
.project__card, .project__background,.project__details {
border-radius: 4px;
}
.project__card {
text-align: right;
margin: 3vh auto;
width: 90%;
}
.project__cta {
background: rgba(255,255,255,0.15);
background-color: #39af84;
text-align: center;
}
.project__link {
color: #fff !important ;
text-shadow: #888 0px 1px 5px;
font-size: 14px !important;
}
.project__details {
display: flex;
flex-direction: column;
justify-content: center;
position: relative ;
text-align: left;
padding: 45px;
width: 90%;
margin: 30px auto;
background: rgba(255,255,255,.9);
}
}
.hero {
height: 85vh;
}
.project__background {
position: relative;
top: 0;
min-height: 600px;
height: 50vh;
background-size: contain;
background-repeat: no-repeat;
background-position: bottom left;
}
@media (min-height: 768px) and (max-width: 999px) {
.project__background {
height: 65vh;
}
}
@media (max-width: 999px) {
.main-content {
padding: 100px 0;
}
.project__details {
padding: 30px 15px;
}
}
@media (min-width: 1000px) and (max-width: 1800px) {
.project__background {
display: flex;
}
}
@media (min-width: 1000px) {
.nav {
justify-content: space-between;
}
.nav__menu {
display: flex;
}
.project__card {
margin: 0 auto 15vh;
}
.project__details {
border-radius: 0;
width: 30%;
margin: 0 0 0 auto;
}
}
@media (min-width: 1200px) {
.nav__link {
padding: 15px;
font-size: 16px;
}
.project__background {
background-position: bottom left
}
.project__details {
border-radius: 4px;
align-self: center;
box-shadow: rgba(0,0,0,.15) 0px 0px 15px;
right: 2.5%;
width: 30%;
}
}
@media (min-width: 1800px) {
.project__card {
width: 75%;
}
.project__details {
position: absolute;
width: 25%;
top: unset;
bottom: 60px;
padding: 30px;
}
.project__background {
min-height: 75vh;
}
.project__description {
font-size: 18px;
}
}
@media (min-width: 2200px) {
.project__background {
background-size: 1600px;
}
}
// Testimonials
.section__snapshot{
margin: 10vh auto;
}
.section__snapshot .main-content__lead-paragraph {
font-size: 36px;
}
.testimonial__quote {
font-size: 16px;
line-height: 1.75;
letter-spacing: 1px;
}
.testimonial__author-name,
.testimonial__author-role {
padding: 0;
}
.testimonial__author-name {
margin: 1em 0 0;
}
.testimonial__author-role {
margin: 0 0 .5em ;
font-size: 14px;
line-height: 1.5;
font-weight: 500;
color: #39af84;
letter-spacing: 1px;
}
.testimonial .skill__icon {
float: left;
margin: 1.1em 1em 4em 0;
}
@media (min-width: 768px) {
.testimonial:last-child {
width: 66% !important;
}
}
.copyright {
font-size: 18px;
line-height: 1.5;
} | 0.450118 | 0.082217 |
.progressWrapper {
width: 100%;
overflow: hidden;
}
.progressContainer {
margin: 5px;
padding: 1px;
border: solid 1px #E8E8E8;
background-color: #F7F7F7;
overflow: hidden;
}
/* Message */
.message {
margin: 1em 0;
padding: 10px 20px;
border: solid 1px #FFDD99;
background-color: #FFFFCC;
overflow: hidden;
}
/* Error */
.swfupload_red {
border: solid 1px #B50000;
background-color: #FFEBEB;
}
/* Current */
.swfupload_green {
border: solid 1px #DDF0DD;
background-color: #EBFFEB;
}
/* Complete */
.swfupload_blue {
border: solid 1px #CEE2F2;
background-color: #F0F5FF;
}
.progressName {
display: inline;
font-size: 8pt;
font-weight: 700;
color: #555;
line-height: 14px;
height: 14px;
text-align: left;
white-space: nowrap;
overflow: hidden;
}
.progressBarInProgress,
.progressBarComplete,
.progressBarError {
font-size: 0;
width: 0%;
height: 2px;
background-color: blue;
margin-top: 2px;
}
.progressBarComplete {
width: 100%;
background-color: green;
visibility: hidden;
}
.progressBarError {
width: 100%;
background-color: red;
visibility: hidden;
}
.progressBarStatus {
font-size: 8pt;
font-weight: 700;
margin-left: 5px;
display: inline;
margin-top: 2px;
font-family: Arial;
text-align: left;
white-space: nowrap;
line-height: normal;
}
a.progressCancel {
font-size: 0;
display: block;
height: 14px;
width: 14px;
background-image: url(../images/cancelbutton.gif);
background-repeat: no-repeat;
background-position: -14px 0px;
float: right;
}
a.progressCancel:hover {
background-position: 0px 0px;
}
/* -- SWFUpload Object Styles ------------------------------- */
.swfupload {
vertical-align: top;
}
#divFileProgressContainer {
height: 30px;
}
#divButtonContainer {
float: left;
background: url(../images/btn.gif) no-repeat;
line-height; normal;
padding: 5px 0px 2px 2px; width: 86px; height : 28px;
} | data/resource/swfupload/css/default.css | .progressWrapper {
width: 100%;
overflow: hidden;
}
.progressContainer {
margin: 5px;
padding: 1px;
border: solid 1px #E8E8E8;
background-color: #F7F7F7;
overflow: hidden;
}
/* Message */
.message {
margin: 1em 0;
padding: 10px 20px;
border: solid 1px #FFDD99;
background-color: #FFFFCC;
overflow: hidden;
}
/* Error */
.swfupload_red {
border: solid 1px #B50000;
background-color: #FFEBEB;
}
/* Current */
.swfupload_green {
border: solid 1px #DDF0DD;
background-color: #EBFFEB;
}
/* Complete */
.swfupload_blue {
border: solid 1px #CEE2F2;
background-color: #F0F5FF;
}
.progressName {
display: inline;
font-size: 8pt;
font-weight: 700;
color: #555;
line-height: 14px;
height: 14px;
text-align: left;
white-space: nowrap;
overflow: hidden;
}
.progressBarInProgress,
.progressBarComplete,
.progressBarError {
font-size: 0;
width: 0%;
height: 2px;
background-color: blue;
margin-top: 2px;
}
.progressBarComplete {
width: 100%;
background-color: green;
visibility: hidden;
}
.progressBarError {
width: 100%;
background-color: red;
visibility: hidden;
}
.progressBarStatus {
font-size: 8pt;
font-weight: 700;
margin-left: 5px;
display: inline;
margin-top: 2px;
font-family: Arial;
text-align: left;
white-space: nowrap;
line-height: normal;
}
a.progressCancel {
font-size: 0;
display: block;
height: 14px;
width: 14px;
background-image: url(../images/cancelbutton.gif);
background-repeat: no-repeat;
background-position: -14px 0px;
float: right;
}
a.progressCancel:hover {
background-position: 0px 0px;
}
/* -- SWFUpload Object Styles ------------------------------- */
.swfupload {
vertical-align: top;
}
#divFileProgressContainer {
height: 30px;
}
#divButtonContainer {
float: left;
background: url(../images/btn.gif) no-repeat;
line-height; normal;
padding: 5px 0px 2px 2px; width: 86px; height : 28px;
} | 0.350755 | 0.074399 |
body { background: url(../img/main-bg.jpg); }
header { height: 172px; color: white; padding: 0; }
header .fa-searchengin, header .fa-github { font-size: 30px; }
header .col-lg-12 { padding-left:0; padding-right:0; }
.social-link { font-size: 20px; color:white; }
footer { box-shadow: 10px 5px 10px 0px; padding:15px; }
footer .col-lg-12 p { margin:0 auto; }
footer .profile-img { width: 50px; height: 50px; margin-left: 0px; }
/* contents */
/* .row { margin-right: 0; } */
/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.card-img-top { min-height:200px; }
}
/* IE6,7,9,10 */
@media screen and (min-width: 640px), screen\9 {
.card-img-top { min-height:200px; }
}
/* pagination Start */
.pagination-wrapper { text-align: center; width: 100%; }
.pagination { display: inline-block; margin: 0 0 2rem; background-color: #D6DDE1; }
.pagination a,.pagination span {
border-radius: 3px;
float: left;
height: 36px;
line-height: 36px;
width: 30px;
}
a.pagination-step,span.pagination-step {
padding: 0 10px;
width: auto;
}
.pagination-first,.pagination-last,.pagination-more { display: none; }
.pagination .active { background: #ddd; color: #fff; }
@media (min-width: 38em) {
.pagination-first,.pagination-last,.pagination-more { display: block; }
a.pagination-step,span.pagination-step { padding: 0 15px; width: auto; }
}
/* pagination End */
/* Post Nav */
.pagination .shorten { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 200px; }
/*Menu Start*/
#back-to-top { display: none; } /* 위로가기 버튼 */
.navbar { padding-top:10px; padding-bottom:0px; }
.dropdown-menu{padding:0;margin:0;border:0 solid transition;border:0 solid rgba(0,0,0,.15);border-radius:0;
-webkit-box-shadow:none;box-shadow:none;}
.navbar .nav-item.dropdown > .dropdown-menu{margin-top:0px;}
.navbar .dropdown ul li a {color:#fff;text-transform:capitalize;padding:12px 15px;display: block;}
.navbar li a:hover,.navbar li a:focus ,.navbar-default .navbar-nav>.show>a, .navbar-default .navbar-nav>.show>a:focus, .navbar-default .navbar-nav>.show>a:hover{
color: #fff;background: #4CAF50;outline: 0;}
.navbar .active > a,.navbar .active > a:focus,.navbar .active > a:hover {background: #4CAF50;}
/*==========Sub Menu=v==========*/
.navbar .collapse ul > li:hover > a{background: #4CAF50;}
.navbar .collapse ul ul > li:hover > a, .navbar-default .navbar-nav .show .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .show .dropdown-menu > li > a:hover{
background: #4CAF50;}
.navbar .collapse ul ul ul > li:hover > a{background: #4CAF50;}
.navbar .collapse ul ul, .navbar .collapse ul ul.dropdown-menu{background:#1565C0;}
.navbar .collapse ul ul ul, .navbar .collapse ul ul ul.dropdown-menu{background:#1E88E5}
.navbar .collapse ul ul ul ul, .navbar .collapse ul ul ul ul.dropdown-menu{background:#64B5F6}
/******************************Drop-down menu work on hover**********************************/
.navbar-nav .show .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 35px}
.navbar-nav .show .dropdown-menu .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 45px}
/*menu-반응형 PC용*/
@media only screen and (min-width: 767px) {
.navbar-expand-md .navbar-nav .nav-link { padding-left: 0.75rem; padding-right: 0.7rem; }
#back-to-top {
width: 80px;
height: 35px;
padding: 8px;
border-radius: 10px;
position: fixed;
right: 10%;
top: 50%;
/* bottom: 20px; */
background-color: #333;
font-size: 12px; font-weight:bold;
color: #fff;
text-align: center;
text-decoration: none;
cursor:pointer;
/* background-image: url(top.png);*/
background-position-x:center;
background-position-y:40px;
background-repeat:no-repeat;
}
}
/* 메일폼 */
.honeypot-field, .color { display: none; }
#message { width:100%; } | assets/css/user.css | body { background: url(../img/main-bg.jpg); }
header { height: 172px; color: white; padding: 0; }
header .fa-searchengin, header .fa-github { font-size: 30px; }
header .col-lg-12 { padding-left:0; padding-right:0; }
.social-link { font-size: 20px; color:white; }
footer { box-shadow: 10px 5px 10px 0px; padding:15px; }
footer .col-lg-12 p { margin:0 auto; }
footer .profile-img { width: 50px; height: 50px; margin-left: 0px; }
/* contents */
/* .row { margin-right: 0; } */
/* IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.card-img-top { min-height:200px; }
}
/* IE6,7,9,10 */
@media screen and (min-width: 640px), screen\9 {
.card-img-top { min-height:200px; }
}
/* pagination Start */
.pagination-wrapper { text-align: center; width: 100%; }
.pagination { display: inline-block; margin: 0 0 2rem; background-color: #D6DDE1; }
.pagination a,.pagination span {
border-radius: 3px;
float: left;
height: 36px;
line-height: 36px;
width: 30px;
}
a.pagination-step,span.pagination-step {
padding: 0 10px;
width: auto;
}
.pagination-first,.pagination-last,.pagination-more { display: none; }
.pagination .active { background: #ddd; color: #fff; }
@media (min-width: 38em) {
.pagination-first,.pagination-last,.pagination-more { display: block; }
a.pagination-step,span.pagination-step { padding: 0 15px; width: auto; }
}
/* pagination End */
/* Post Nav */
.pagination .shorten { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; width: 200px; }
/*Menu Start*/
#back-to-top { display: none; } /* 위로가기 버튼 */
.navbar { padding-top:10px; padding-bottom:0px; }
.dropdown-menu{padding:0;margin:0;border:0 solid transition;border:0 solid rgba(0,0,0,.15);border-radius:0;
-webkit-box-shadow:none;box-shadow:none;}
.navbar .nav-item.dropdown > .dropdown-menu{margin-top:0px;}
.navbar .dropdown ul li a {color:#fff;text-transform:capitalize;padding:12px 15px;display: block;}
.navbar li a:hover,.navbar li a:focus ,.navbar-default .navbar-nav>.show>a, .navbar-default .navbar-nav>.show>a:focus, .navbar-default .navbar-nav>.show>a:hover{
color: #fff;background: #4CAF50;outline: 0;}
.navbar .active > a,.navbar .active > a:focus,.navbar .active > a:hover {background: #4CAF50;}
/*==========Sub Menu=v==========*/
.navbar .collapse ul > li:hover > a{background: #4CAF50;}
.navbar .collapse ul ul > li:hover > a, .navbar-default .navbar-nav .show .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .show .dropdown-menu > li > a:hover{
background: #4CAF50;}
.navbar .collapse ul ul ul > li:hover > a{background: #4CAF50;}
.navbar .collapse ul ul, .navbar .collapse ul ul.dropdown-menu{background:#1565C0;}
.navbar .collapse ul ul ul, .navbar .collapse ul ul ul.dropdown-menu{background:#1E88E5}
.navbar .collapse ul ul ul ul, .navbar .collapse ul ul ul ul.dropdown-menu{background:#64B5F6}
/******************************Drop-down menu work on hover**********************************/
.navbar-nav .show .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 35px}
.navbar-nav .show .dropdown-menu .dropdown-menu .dropdown-menu > li > a{padding:16px 15px 16px 45px}
/*menu-반응형 PC용*/
@media only screen and (min-width: 767px) {
.navbar-expand-md .navbar-nav .nav-link { padding-left: 0.75rem; padding-right: 0.7rem; }
#back-to-top {
width: 80px;
height: 35px;
padding: 8px;
border-radius: 10px;
position: fixed;
right: 10%;
top: 50%;
/* bottom: 20px; */
background-color: #333;
font-size: 12px; font-weight:bold;
color: #fff;
text-align: center;
text-decoration: none;
cursor:pointer;
/* background-image: url(top.png);*/
background-position-x:center;
background-position-y:40px;
background-repeat:no-repeat;
}
}
/* 메일폼 */
.honeypot-field, .color { display: none; }
#message { width:100%; } | 0.313315 | 0.087447 |
body { background-color:#e7ebee; }
html, body { height:100%; }
.body_hidden {height:100%; min-height:100%; overflow:hidden !important; touch-action:none;}
#wrap { position:relative; width:100%; height:100%; }
.wrapper { width:100%; height:100%; overflow:auto; }
.wrapper.scrollbar-dynamic { max-height:none; }
.font-NotoKR { font-family: 'Noto Sans KR'; }
/* lnb */
#lnb { position:absolute; left:0; right:auto; width:330px; background-color:#252d3a; min-height:100%; }
#lnb .bg { position:fixed; background-color:#252d3a; width:330px; height:100vh; top:0; right:0; left:0; bottom:0; }
#lnb .topbox { position:relative; height:359px; z-index:999; }
#lnb .topbox .info { position:absolute; top:50%; transform:translateY(-50%); text-align:center; width:100%; }
#lnb .topbox .info .thumb span { padding:10px; border:1px solid rgba(255,255,255,0.1); border-radius:100px; display:inline-block; }
#lnb .topbox .info .thumb span > img { border:1px solid rgba(0,0,0,0.05); border-radius:100px; }
#lnb .topbox .info .txt_1 { margin:13px 0 0 0; color:#fff;font-size:20px; font-weight:200;}
#lnb .topbox .info .txt_2 { position:relative; margin:17px 0 0 0; cursor:pointer; display:inline-block; }
#lnb .topbox .info .txt_2 span { position:relative; color:#fff;font-size:14px; line-height:12px; height:32px; font-weight:200; border:1px solid #515761; border-radius:30px; padding:8px 36px 0 29px; display:inline-block; }
#lnb .topbox .info .txt_2 span:after{ content:''; display:block; width:9px; height:9px; border-radius:50px; background-color:#06a9b7; position:absolute; left:11px; top:10px; }
#lnb .topbox .info .txt_2 span:before{ content:''; display:block; width:6px; height:9px; background:url(../img/contents/icon_arr.png) center center no-repeat; position:absolute; right:8px; top:11px; }
#lnb .topbox .info .txt_2 .infobox { display:none; position:absolute; left:50%; top:43px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#lnb .topbox .info .txt_2 .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#lnb .topbox .info .txt_2 .infobox .box { padding:20px 20px 21px 24px; min-width:136px; text-align:left; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li { margin:8px 0 2px 0; color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li:first-child { margin:0; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > a { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > a { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul { padding:0 0 0 12px; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul > li { margin:8px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .leftmenu { position:relative; border-top:1px solid #fff; z-index:99; }
#lnb .leftmenu:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
#lnb .leftmenu ul.nav li { background-color:#fff; }
#lnb .leftmenu ul.nav li a { position:relative; color:#5e636c; padding:24px 0;font-size:16px; font-weight:200; display:block; }
#lnb .leftmenu ul.nav li a.active { color:#fff; background-color:#252d3a; }
#lnb .leftmenu ul.nav li:nth-child(1) a { padding-left:77px; width:177px; }
#lnb .leftmenu ul.nav li:nth-child(1) a:before { content:''; display:block; width:16px; height:16px; background:url(../img/contents/icon_mo.png) left top no-repeat; position:absolute; left:48px; top:25px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active { color:#fff; background-color:#252d3a; border-radius:0 20px 0 0; padding-left:77px; width:187px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active:before { background:url(../img/contents/icon_mo.png) left bottom no-repeat; }
#lnb .leftmenu ul.nav li:nth-child(2) a { padding-left:49px; width:143px; }
#lnb .leftmenu ul.nav li:nth-child(2) a:before { content:''; display:block; width:15px; height:16px; background:url(../img/contents/icon_ms.png) left top no-repeat; position:absolute; left:24px; top:25px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active { color:#fff; background-color:#252d3a; border-radius:20px 0 0 0; padding-left:59px; width:153px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active:before { background:url(../img/contents/icon_ms.png) left bottom no-repeat; left:34px; }
#lnb .leftmenu ul.menu { border-top:1px solid #4c535e; }
#lnb .leftmenu ul.menu > li { position:relative; border-bottom:1px solid #4c535e; }
#lnb .leftmenu ul.menu > li > a { display:block;padding:21px 0 0 114px; height:57px; color:#fff;font-size:20px; line-height:20px; font-weight:300; background-color:#252d3a;}
#lnb .leftmenu ul.menu > li > ul { display:none; }
#lnb .leftmenu ul.menu > li.active > ul { display:block; }
#lnb .leftmenu ul.menu > li > ul > li { border-top:2px solid #252d3a; }
#lnb .leftmenu ul.menu > li > ul > li:first-child { border-top:none; }
#lnb .leftmenu ul.menu > li > ul > li > a { position:relative; display:block; padding:20px 0 0 138px; height:58px; color:#fff;font-size:18px; line-height:18px; font-weight:300; background-color:#1d232c; }
#lnb .leftmenu ul.menu > li > ul > li > a:after { content:''; display:block; width:6px; height:6px; border-radius:50px; background-color:#fff; position:absolute; left:116px; top:26px; }
#lnb .leftmenu ul.menu > li > ul > li.on > a { background-color:#06a9b7; }
#lnb .leftmenu ul.menu > li > ul > li.on > a:before { content:''; display:block; width:8px; height:13px; background:url(../img/contents/icon_m_arr.png) center center no-repeat; position:absolute; right:35px; top:23px; }
#lnb .leftmenu ul.menu > li::before { content:''; display:block; position:absolute; }
#lnb #Operation ul.menu > li:nth-child(1):before { width:17px; height:16px; background:url(../img/contents/icon_menu1_1.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Operation ul.menu > li:nth-child(2):before { width:19px; height:22px; background:url(../img/contents/icon_menu1_2.png)center center no-repeat; position:absolute; left:77px; top:17px; }
#lnb #Operation ul.menu > li:nth-child(3):before { width:19px; height:17px; background:url(../img/contents/icon_menu1_3.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Operation ul.menu > li:nth-child(4):before { width:18px; height:22px; background:url(../img/contents/icon_menu1_4.png)center center no-repeat; position:absolute; left:77px; top:19px; }
#lnb #Operation ul.menu > li:nth-child(5):before { width:17px; height:15px; background:url(../img/contents/icon_menu1_5.png)center center no-repeat; position:absolute; left:77px; top:22px; }
#lnb #Setting ul.menu > li:nth-child(1):before { width:18px; height:19px; background:url(../img/contents/icon_menu2_1.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Setting ul.menu > li:nth-child(2):before { width:21px; height:18px; background:url(../img/contents/icon_menu2_2.png)center center no-repeat; position:absolute; left:76px; top:20px; }
#lnb #Setting ul.menu > li:nth-child(3):before { width:23px; height:21px; background:url(../img/contents/icon_menu2_3.png)center center no-repeat; position:absolute; left:74px; top:19px; }
#lnb #Setting ul.menu > li:nth-child(4):before { width:20px; height:20px; background:url(../img/contents/icon_menu2_4.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb .bottom { display:none; position:relative; width:100%; z-index:99999; }
#lnb .bottom .topmenu { position:relative; padding:10px 30px 5px 0; border-top:1px solid #06a9b7; }
#lnb .bottom .topmenu > ul { text-align:center; }
#lnb .bottom .topmenu > ul > li { position:relative; display:inline-block; margin:0 0 0 22px; color:#5e636c;font-size:12px; line-height:12px; text-align:center; vertical-align:bottom; }
#lnb .bottom .topmenu > ul > li > a { position:relative; display:block;}
#lnb .bottom .topmenu > ul > li:first-child { margin:0 -8px -10px 0; width:50px; text-align:center; }
#lnb .bottom .topmenu > ul > li > a img { vertical-align:middle; display:inline-block; }
#lnb .bottom .topmenu > ul > li > span { position:absolute; right:-8px; top:-7px; padding:3px 6px; background-color:#fc1656; font-size:10px; line-height:10px; color:#fff;font-weight:500; border-radius:20px;}
#lnb .bottom .topmenu .infobox { display:none; position:absolute; left:50%; bottom:36px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#lnb .bottom .topmenu .infobox:after { content:''; display:block; position:absolute; bottom:-7px; left:50%; transform:translateX(-50%); border-top:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#lnb .bottom .topmenu .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; }
#lnb .bottom .topmenu .infobox .box.box_txt { padding:12px 12px; min-width:auto; white-space:nowrap; color:#fff; font-size:13px; }
#lnb .bottom .topmenu .infobox .box p { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .bottom .topmenu .infobox .box > ul > li { margin:5px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .bottom .topmenu .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
@media screen and (max-width:1024px){
#lnb { position:fixed; right:-350px; top:0; bottom:0; left:auto; z-index:99999; transition:all 0.4s ease-in-out; overflow-y:auto; height:100%; box-shadow:5px 0 8px 5px #252d3a; }
#lnb .bg { display:none; }
#lnb.on .bg { display:block; background:rgba(255,255,255,.01); width:100%; height:100%; }
#lnb .m_box { min-height:100%; clear:both; margin-bottom:-50px; }
#lnb .leftmenu { padding:0 0 70px 0; }
#lnb .bottom { display:block; }
}
@media screen and (max-width:768px){
}
#btn_menu { display:none; position:absolute; right:30px; top:50%; width:30px; z-index:999; margin-top:-10px; }
#btn_menu:before,
#btn_menu:after,
#btn_menu span { content:''; display:block; height:1px; background:#000; }
#btn_menu span { width:auto; margin:10px 0 10px 8px; }
#m_close { display:none; position:absolute; right:15px; top:25px; z-index:999999; width:30px; height:30px; -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); }
#m_close:before { content:''; display:block; width:100%; height:1px; margin:15px 0; background:#a89704; }
#m_close:after { content:''; display:block; position:absolute; left:0; right:0; top:0; bottom:0; width:1px; margin:0 auto; background:#a89704; }
#contents { position:relative; margin-left:330px; height:100%; }
#contents .header { position:relative; height:79px; border-bottom:1px solid #ccd0d4; z-index:9; }
#contents .header .logo { padding:14px 0 0 48px; }
#contents .header .logo img { display:block; }
#contents .header .topmenu { position:absolute; right:45px; top:31px; }
#contents .header .topmenu > ul > li { position:relative; float:left; margin:0 0 0 42px; color:#5e636c;font-size:14px; line-height:14px; }
#contents .header .topmenu > ul > li > a { position:relative; display:block; }
#contents .header .topmenu > ul > li > a img { vertical-align:middle; }
#contents .header .topmenu > ul > li span { position:absolute; right:-8px; top:-7px; padding:3px 6px; background-color:#fc1656; font-size:10px; line-height:10px; color:#fff;font-weight:500; border-radius:20px;}
#contents .header .topmenu .logout { margin-top:-1px; }
#contents .header .topmenu .logout img { margin:0 8px 0 0; }
#contents .header .topmenu .notice { margin:0 0 0 36px; }
#contents .header .topmenu .email { margin:0 0 0 38px; }
#contents .header .topmenu .setting { margin:0 0 0 39px; }
#contents .header .topmenu .infobox { display:none; position:absolute; left:50%; top:36px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#contents .header .topmenu .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#contents .header .topmenu .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; }
#contents .header .topmenu .infobox .box.box_txt { padding:12px 15px; min-width:auto; white-space:nowrap; color:#fff; font-size:14px; }
#contents .header .topmenu .infobox .box p { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#contents .header .topmenu .infobox .box > ul > li { margin:8px 0 2px 0; color:#fff; font-size:14px; line-height:14px; font-weight:100; }
#contents .header .topmenu .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
@media screen and (max-width:1200px){
#contents .header .topmenu { right:35px; }
#contents .header .topmenu > ul > li { margin:0 0 0 30px; }
#contents .header .topmenu .notice { margin:0 0 0 30px; }
#contents .header .topmenu .email { margin:0 0 0 30px; }
#contents .header .topmenu .setting { margin:0 0 0 30px; }
#contents .header .logo { padding:14px 0 0 35px; }
}
@media screen and (max-width:1024px){
#btn_menu { display:block; }
#m_close { display:block; }
#contents { margin-left:0; }
#contents .header { position:fixed; top:0; left:0; right:0; width:100%; background-color:#e7ebee; z-index:999; }
#contents .header .topmenu { display:none; }
#lnb .leftmenu ul.nav li:nth-child(1) a { padding-left:60px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(1) a:before { left:35px; top:19px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active { padding-left:60px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a { padding-left:70px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a:before { left:45px; top:19px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active { padding-left:70px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active:before { left:45px; top:19px; }
}
@media screen and (max-width:768px){
#contents .header .topmenu { right:25px; }
#contents .header .topmenu > ul > li { margin:0 0 0 25px; }
#contents .header .topmenu .notice { margin:0 0 0 25px; }
#contents .header .topmenu .email { margin:0 0 0 25px; }
#contents .header .topmenu .setting { margin:0 0 0 25px; }
#contents .header .logo { padding:14px 0 0 25px; }
}
@media screen and (max-width:640px){
#contents .header .topmenu { right:20px; }
#contents .header .logo { padding:14px 0 0 20px; }
#lnb .topbox { height:200px; }
#lnb .topbox .info .thumb span { padding:5px; }
#lnb .topbox .info .thumb span > img { width:76px; height:76px; }
#lnb .topbox .info .txt_1 { margin:8px 0 0 0; font-size:16px; }
#lnb .topbox .info .txt_2 { margin:10px 0 0 0; }
#lnb .leftmenu ul.nav li a { padding:18px 0;font-size:16px; }
#lnb .leftmenu ul.menu > li > a { display:block;padding:14px 0 0 84px; height:48px; font-size:17px; line-height:17px; }
#lnb .leftmenu ul.menu > li > ul > li:first-child { border-top:none; }
#lnb .leftmenu ul.menu > li > ul > li > a { padding:12px 0 0 100px; height:46px; font-size:15px; line-height:15px; }
#lnb .leftmenu ul.menu > li > ul > li > a:after { left:85px; top:18px; }
#lnb .leftmenu ul.menu > li > ul > li.on > a:before { right:25px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(1):before { left:54px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(2):before { left:54px; top:13px; }
#lnb #Operation ul.menu > li:nth-child(3):before { left:54px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(4):before { left:54px; top:13px; }
#lnb #Operation ul.menu > li:nth-child(5):before { left:54px; top:15px; }
#lnb #Setting ul.menu > li:nth-child(1):before { left:54px; top:16px; }
#lnb #Setting ul.menu > li:nth-child(2):before { left:53px; top:16px; }
#lnb #Setting ul.menu > li:nth-child(3):before { left:51px; top:15px; }
#lnb #Setting ul.menu > li:nth-child(4):before { left:54px; top:16px; }
}
/* container */
#container { min-height:100%; clear:both; margin-bottom:-78px; }
#container .contbox { padding:32px 45px 140px 45px; min-height:750px; }
@media screen and (max-width:1200px){
#container .contbox { padding:28px 35px 120px 35px; }
}
@media screen and (max-width:1024px){
#container .contbox { padding:100px 35px 120px 35px; }
}
@media screen and (max-width:768px){
#container .contbox { padding:90px 25px 120px 25px; }
}
@media screen and (max-width:640px){
#container .contbox { padding:88px 20px 120px 20px; }
}
/* color */
.color_b { color:#06a9b7; }
.color_y { color:#ffc800; }
.color_r { color:#fc1656; }
.color_g { color:#5e636c; }
.bgbox_b { background-color:#06a9b7; }
.bgbox_y { background-color:#ffc800; }
.bgbox_r { background-color:#fc1656; }
.bgbox_g { background-color:#5e636c; }
/* select */
.nice-select { background-color:#fff; border-radius:5px; border:none; background-color:#e7ebee; box-sizing:border-box; cursor:pointer; display:inline-block; vertical-align:middle; color:#5e636c; font-weight:300; font-size:15px; height:38px; line-height:38px; outline:none; padding:0 28px 0 15px; position:relative; text-align:left !important; -webkit-transition:all 0.2s ease-in-out; transition:all 0.2s ease-in-out; white-space:nowrap; }
.nice-select .current { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; width:100%; }
.nice-select.white { border:1px solid #e1e1e1; background-color:#fff; }
.nice-select.pline { border:1px dashed #ccc; }
.nice-select:active, .nice-select.open,
.nice-select:focus { border:none; }
.nice-select.white:active,
.nice-select.white.open,
.nice-select.white:focus { border:1px solid #e1e1e1; }
.nice-select.pline:active,
.nice-select.pline.open,
.nice-select.pline:focus { border:1px dashed #ccc; }
.nice-select:after { content:''; display:block; pointer-events:none; width:10px; height:9px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; position:absolute; right:12px; top:50%; transform:translateY(-50%) rotate(0deg); transition:all 0.15s ease-in-out; }
.nice-select.open:after { transform:rotate(-180deg); margin-top:-5px; }
.nice-select.open .list { opacity:1; pointer-events:auto; transform:scale(1) translateY(0); }
.nice-select.disabled:after { border-color:#cccccc; }
.nice-select .list { text-align:left; background-color:#fff; border-radius:5px; width:100%; border:1px solid #e1e1e1; box-sizing:border-box; margin:0; padding:0; color:#5e636c; font-weight:300; font-size:15px; opacity:0; overflow:hidden; pointer-events:none; position:absolute; top:100%; left:0; transform-origin:50% 0; transform:scale(0.8) translateY(0); transition:all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; z-index:9; }
.nice-select .list:hover .option:not(:hover) { background-color:transparent !important; }
.nice-select .option { cursor:pointer; color:#5e636c; font-weight:300; font-size:15px; width:100%; line-height:38px; min-height:38px; outline:none; margin:0 !important; padding:0 14px !important; text-align:left !important; transition:all 0.2s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus { background-color:#f6f6f6; }
.nice-select .option.selected { font-weight:400; }
.nice-select .option.disabled { background-color:transparent; color:#999; cursor:default; }
.no-csspointerevents .nice-select .list { display:none; }
.no-csspointerevents .nice-select.open .list { display:block; }
#footer { position:relative; border-top:1px solid #d8dde1; text-align:center; height:77px; }
#footer .txt { color:#5e636c;font-size:14px; line-height:14px; font-weight:200; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); }
#footer .btn_top { position:absolute; right:34px; top:50%; transform:translateY(-50%); }
#footer .btn_top a { position:relative; display:block; width:46px; height:46px; border-radius:100px; background-color:#5e636c; }
#footer .btn_top a:before { content:''; display:block; width:11px; height:20px; background:url(../img/contents/btn_top.png) center center no-repeat; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);}
#footer .btn_top a span { overflow:hidden; text-indent:-9999em; display:block; } | cb-webtool/src/webmoa/css/common.css |
body { background-color:#e7ebee; }
html, body { height:100%; }
.body_hidden {height:100%; min-height:100%; overflow:hidden !important; touch-action:none;}
#wrap { position:relative; width:100%; height:100%; }
.wrapper { width:100%; height:100%; overflow:auto; }
.wrapper.scrollbar-dynamic { max-height:none; }
.font-NotoKR { font-family: 'Noto Sans KR'; }
/* lnb */
#lnb { position:absolute; left:0; right:auto; width:330px; background-color:#252d3a; min-height:100%; }
#lnb .bg { position:fixed; background-color:#252d3a; width:330px; height:100vh; top:0; right:0; left:0; bottom:0; }
#lnb .topbox { position:relative; height:359px; z-index:999; }
#lnb .topbox .info { position:absolute; top:50%; transform:translateY(-50%); text-align:center; width:100%; }
#lnb .topbox .info .thumb span { padding:10px; border:1px solid rgba(255,255,255,0.1); border-radius:100px; display:inline-block; }
#lnb .topbox .info .thumb span > img { border:1px solid rgba(0,0,0,0.05); border-radius:100px; }
#lnb .topbox .info .txt_1 { margin:13px 0 0 0; color:#fff;font-size:20px; font-weight:200;}
#lnb .topbox .info .txt_2 { position:relative; margin:17px 0 0 0; cursor:pointer; display:inline-block; }
#lnb .topbox .info .txt_2 span { position:relative; color:#fff;font-size:14px; line-height:12px; height:32px; font-weight:200; border:1px solid #515761; border-radius:30px; padding:8px 36px 0 29px; display:inline-block; }
#lnb .topbox .info .txt_2 span:after{ content:''; display:block; width:9px; height:9px; border-radius:50px; background-color:#06a9b7; position:absolute; left:11px; top:10px; }
#lnb .topbox .info .txt_2 span:before{ content:''; display:block; width:6px; height:9px; background:url(../img/contents/icon_arr.png) center center no-repeat; position:absolute; right:8px; top:11px; }
#lnb .topbox .info .txt_2 .infobox { display:none; position:absolute; left:50%; top:43px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#lnb .topbox .info .txt_2 .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#lnb .topbox .info .txt_2 .infobox .box { padding:20px 20px 21px 24px; min-width:136px; text-align:left; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li { margin:8px 0 2px 0; color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li:first-child { margin:0; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > a { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > a { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul { padding:0 0 0 12px; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul > li { margin:8px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .topbox .info .txt_2 .infobox .box > ul > li > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .leftmenu { position:relative; border-top:1px solid #fff; z-index:99; }
#lnb .leftmenu:after {content:""; display:block; visibility:hidden; clear:both; height:0; }
#lnb .leftmenu ul.nav li { background-color:#fff; }
#lnb .leftmenu ul.nav li a { position:relative; color:#5e636c; padding:24px 0;font-size:16px; font-weight:200; display:block; }
#lnb .leftmenu ul.nav li a.active { color:#fff; background-color:#252d3a; }
#lnb .leftmenu ul.nav li:nth-child(1) a { padding-left:77px; width:177px; }
#lnb .leftmenu ul.nav li:nth-child(1) a:before { content:''; display:block; width:16px; height:16px; background:url(../img/contents/icon_mo.png) left top no-repeat; position:absolute; left:48px; top:25px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active { color:#fff; background-color:#252d3a; border-radius:0 20px 0 0; padding-left:77px; width:187px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active:before { background:url(../img/contents/icon_mo.png) left bottom no-repeat; }
#lnb .leftmenu ul.nav li:nth-child(2) a { padding-left:49px; width:143px; }
#lnb .leftmenu ul.nav li:nth-child(2) a:before { content:''; display:block; width:15px; height:16px; background:url(../img/contents/icon_ms.png) left top no-repeat; position:absolute; left:24px; top:25px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active { color:#fff; background-color:#252d3a; border-radius:20px 0 0 0; padding-left:59px; width:153px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active:before { background:url(../img/contents/icon_ms.png) left bottom no-repeat; left:34px; }
#lnb .leftmenu ul.menu { border-top:1px solid #4c535e; }
#lnb .leftmenu ul.menu > li { position:relative; border-bottom:1px solid #4c535e; }
#lnb .leftmenu ul.menu > li > a { display:block;padding:21px 0 0 114px; height:57px; color:#fff;font-size:20px; line-height:20px; font-weight:300; background-color:#252d3a;}
#lnb .leftmenu ul.menu > li > ul { display:none; }
#lnb .leftmenu ul.menu > li.active > ul { display:block; }
#lnb .leftmenu ul.menu > li > ul > li { border-top:2px solid #252d3a; }
#lnb .leftmenu ul.menu > li > ul > li:first-child { border-top:none; }
#lnb .leftmenu ul.menu > li > ul > li > a { position:relative; display:block; padding:20px 0 0 138px; height:58px; color:#fff;font-size:18px; line-height:18px; font-weight:300; background-color:#1d232c; }
#lnb .leftmenu ul.menu > li > ul > li > a:after { content:''; display:block; width:6px; height:6px; border-radius:50px; background-color:#fff; position:absolute; left:116px; top:26px; }
#lnb .leftmenu ul.menu > li > ul > li.on > a { background-color:#06a9b7; }
#lnb .leftmenu ul.menu > li > ul > li.on > a:before { content:''; display:block; width:8px; height:13px; background:url(../img/contents/icon_m_arr.png) center center no-repeat; position:absolute; right:35px; top:23px; }
#lnb .leftmenu ul.menu > li::before { content:''; display:block; position:absolute; }
#lnb #Operation ul.menu > li:nth-child(1):before { width:17px; height:16px; background:url(../img/contents/icon_menu1_1.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Operation ul.menu > li:nth-child(2):before { width:19px; height:22px; background:url(../img/contents/icon_menu1_2.png)center center no-repeat; position:absolute; left:77px; top:17px; }
#lnb #Operation ul.menu > li:nth-child(3):before { width:19px; height:17px; background:url(../img/contents/icon_menu1_3.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Operation ul.menu > li:nth-child(4):before { width:18px; height:22px; background:url(../img/contents/icon_menu1_4.png)center center no-repeat; position:absolute; left:77px; top:19px; }
#lnb #Operation ul.menu > li:nth-child(5):before { width:17px; height:15px; background:url(../img/contents/icon_menu1_5.png)center center no-repeat; position:absolute; left:77px; top:22px; }
#lnb #Setting ul.menu > li:nth-child(1):before { width:18px; height:19px; background:url(../img/contents/icon_menu2_1.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb #Setting ul.menu > li:nth-child(2):before { width:21px; height:18px; background:url(../img/contents/icon_menu2_2.png)center center no-repeat; position:absolute; left:76px; top:20px; }
#lnb #Setting ul.menu > li:nth-child(3):before { width:23px; height:21px; background:url(../img/contents/icon_menu2_3.png)center center no-repeat; position:absolute; left:74px; top:19px; }
#lnb #Setting ul.menu > li:nth-child(4):before { width:20px; height:20px; background:url(../img/contents/icon_menu2_4.png)center center no-repeat; position:absolute; left:77px; top:20px; }
#lnb .bottom { display:none; position:relative; width:100%; z-index:99999; }
#lnb .bottom .topmenu { position:relative; padding:10px 30px 5px 0; border-top:1px solid #06a9b7; }
#lnb .bottom .topmenu > ul { text-align:center; }
#lnb .bottom .topmenu > ul > li { position:relative; display:inline-block; margin:0 0 0 22px; color:#5e636c;font-size:12px; line-height:12px; text-align:center; vertical-align:bottom; }
#lnb .bottom .topmenu > ul > li > a { position:relative; display:block;}
#lnb .bottom .topmenu > ul > li:first-child { margin:0 -8px -10px 0; width:50px; text-align:center; }
#lnb .bottom .topmenu > ul > li > a img { vertical-align:middle; display:inline-block; }
#lnb .bottom .topmenu > ul > li > span { position:absolute; right:-8px; top:-7px; padding:3px 6px; background-color:#fc1656; font-size:10px; line-height:10px; color:#fff;font-weight:500; border-radius:20px;}
#lnb .bottom .topmenu .infobox { display:none; position:absolute; left:50%; bottom:36px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#lnb .bottom .topmenu .infobox:after { content:''; display:block; position:absolute; bottom:-7px; left:50%; transform:translateX(-50%); border-top:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#lnb .bottom .topmenu .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; }
#lnb .bottom .topmenu .infobox .box.box_txt { padding:12px 12px; min-width:auto; white-space:nowrap; color:#fff; font-size:13px; }
#lnb .bottom .topmenu .infobox .box p { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#lnb .bottom .topmenu .infobox .box > ul > li { margin:5px 0 0 0; color:#fff;font-size:14px; line-height:14px; font-weight:100; }
#lnb .bottom .topmenu .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
@media screen and (max-width:1024px){
#lnb { position:fixed; right:-350px; top:0; bottom:0; left:auto; z-index:99999; transition:all 0.4s ease-in-out; overflow-y:auto; height:100%; box-shadow:5px 0 8px 5px #252d3a; }
#lnb .bg { display:none; }
#lnb.on .bg { display:block; background:rgba(255,255,255,.01); width:100%; height:100%; }
#lnb .m_box { min-height:100%; clear:both; margin-bottom:-50px; }
#lnb .leftmenu { padding:0 0 70px 0; }
#lnb .bottom { display:block; }
}
@media screen and (max-width:768px){
}
#btn_menu { display:none; position:absolute; right:30px; top:50%; width:30px; z-index:999; margin-top:-10px; }
#btn_menu:before,
#btn_menu:after,
#btn_menu span { content:''; display:block; height:1px; background:#000; }
#btn_menu span { width:auto; margin:10px 0 10px 8px; }
#m_close { display:none; position:absolute; right:15px; top:25px; z-index:999999; width:30px; height:30px; -webkit-transform:rotate(45deg); -ms-transform:rotate(45deg); transform:rotate(45deg); }
#m_close:before { content:''; display:block; width:100%; height:1px; margin:15px 0; background:#a89704; }
#m_close:after { content:''; display:block; position:absolute; left:0; right:0; top:0; bottom:0; width:1px; margin:0 auto; background:#a89704; }
#contents { position:relative; margin-left:330px; height:100%; }
#contents .header { position:relative; height:79px; border-bottom:1px solid #ccd0d4; z-index:9; }
#contents .header .logo { padding:14px 0 0 48px; }
#contents .header .logo img { display:block; }
#contents .header .topmenu { position:absolute; right:45px; top:31px; }
#contents .header .topmenu > ul > li { position:relative; float:left; margin:0 0 0 42px; color:#5e636c;font-size:14px; line-height:14px; }
#contents .header .topmenu > ul > li > a { position:relative; display:block; }
#contents .header .topmenu > ul > li > a img { vertical-align:middle; }
#contents .header .topmenu > ul > li span { position:absolute; right:-8px; top:-7px; padding:3px 6px; background-color:#fc1656; font-size:10px; line-height:10px; color:#fff;font-weight:500; border-radius:20px;}
#contents .header .topmenu .logout { margin-top:-1px; }
#contents .header .topmenu .logout img { margin:0 8px 0 0; }
#contents .header .topmenu .notice { margin:0 0 0 36px; }
#contents .header .topmenu .email { margin:0 0 0 38px; }
#contents .header .topmenu .setting { margin:0 0 0 39px; }
#contents .header .topmenu .infobox { display:none; position:absolute; left:50%; top:36px; transform:translateX(-50%); background-color:#5e636c; border-radius:8px; }
#contents .header .topmenu .infobox:after { content:''; display:block; position:absolute; top:-7px; left:50%; transform:translateX(-50%); border-bottom:7px solid #5e636c; border-right:6px solid transparent; border-left:6px solid transparent; }
#contents .header .topmenu .infobox .box { padding:20px 24px 21px 24px; min-width:156px; text-align:left; }
#contents .header .topmenu .infobox .box.box_txt { padding:12px 15px; min-width:auto; white-space:nowrap; color:#fff; font-size:14px; }
#contents .header .topmenu .infobox .box p { color:#06a9b7;font-size:14px; line-height:14px; font-weight:400; }
#contents .header .topmenu .infobox .box > ul > li { margin:8px 0 2px 0; color:#fff; font-size:14px; line-height:14px; font-weight:100; }
#contents .header .topmenu .infobox .box > ul > li > a { color:#fff;font-size:14px; line-height:14px; font-weight:100; }
@media screen and (max-width:1200px){
#contents .header .topmenu { right:35px; }
#contents .header .topmenu > ul > li { margin:0 0 0 30px; }
#contents .header .topmenu .notice { margin:0 0 0 30px; }
#contents .header .topmenu .email { margin:0 0 0 30px; }
#contents .header .topmenu .setting { margin:0 0 0 30px; }
#contents .header .logo { padding:14px 0 0 35px; }
}
@media screen and (max-width:1024px){
#btn_menu { display:block; }
#m_close { display:block; }
#contents { margin-left:0; }
#contents .header { position:fixed; top:0; left:0; right:0; width:100%; background-color:#e7ebee; z-index:999; }
#contents .header .topmenu { display:none; }
#lnb .leftmenu ul.nav li:nth-child(1) a { padding-left:60px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(1) a:before { left:35px; top:19px; }
#lnb .leftmenu ul.nav li:nth-child(1) a.active { padding-left:60px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a { padding-left:70px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a:before { left:45px; top:19px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active { padding-left:70px; width:165px; }
#lnb .leftmenu ul.nav li:nth-child(2) a.active:before { left:45px; top:19px; }
}
@media screen and (max-width:768px){
#contents .header .topmenu { right:25px; }
#contents .header .topmenu > ul > li { margin:0 0 0 25px; }
#contents .header .topmenu .notice { margin:0 0 0 25px; }
#contents .header .topmenu .email { margin:0 0 0 25px; }
#contents .header .topmenu .setting { margin:0 0 0 25px; }
#contents .header .logo { padding:14px 0 0 25px; }
}
@media screen and (max-width:640px){
#contents .header .topmenu { right:20px; }
#contents .header .logo { padding:14px 0 0 20px; }
#lnb .topbox { height:200px; }
#lnb .topbox .info .thumb span { padding:5px; }
#lnb .topbox .info .thumb span > img { width:76px; height:76px; }
#lnb .topbox .info .txt_1 { margin:8px 0 0 0; font-size:16px; }
#lnb .topbox .info .txt_2 { margin:10px 0 0 0; }
#lnb .leftmenu ul.nav li a { padding:18px 0;font-size:16px; }
#lnb .leftmenu ul.menu > li > a { display:block;padding:14px 0 0 84px; height:48px; font-size:17px; line-height:17px; }
#lnb .leftmenu ul.menu > li > ul > li:first-child { border-top:none; }
#lnb .leftmenu ul.menu > li > ul > li > a { padding:12px 0 0 100px; height:46px; font-size:15px; line-height:15px; }
#lnb .leftmenu ul.menu > li > ul > li > a:after { left:85px; top:18px; }
#lnb .leftmenu ul.menu > li > ul > li.on > a:before { right:25px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(1):before { left:54px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(2):before { left:54px; top:13px; }
#lnb #Operation ul.menu > li:nth-child(3):before { left:54px; top:16px; }
#lnb #Operation ul.menu > li:nth-child(4):before { left:54px; top:13px; }
#lnb #Operation ul.menu > li:nth-child(5):before { left:54px; top:15px; }
#lnb #Setting ul.menu > li:nth-child(1):before { left:54px; top:16px; }
#lnb #Setting ul.menu > li:nth-child(2):before { left:53px; top:16px; }
#lnb #Setting ul.menu > li:nth-child(3):before { left:51px; top:15px; }
#lnb #Setting ul.menu > li:nth-child(4):before { left:54px; top:16px; }
}
/* container */
#container { min-height:100%; clear:both; margin-bottom:-78px; }
#container .contbox { padding:32px 45px 140px 45px; min-height:750px; }
@media screen and (max-width:1200px){
#container .contbox { padding:28px 35px 120px 35px; }
}
@media screen and (max-width:1024px){
#container .contbox { padding:100px 35px 120px 35px; }
}
@media screen and (max-width:768px){
#container .contbox { padding:90px 25px 120px 25px; }
}
@media screen and (max-width:640px){
#container .contbox { padding:88px 20px 120px 20px; }
}
/* color */
.color_b { color:#06a9b7; }
.color_y { color:#ffc800; }
.color_r { color:#fc1656; }
.color_g { color:#5e636c; }
.bgbox_b { background-color:#06a9b7; }
.bgbox_y { background-color:#ffc800; }
.bgbox_r { background-color:#fc1656; }
.bgbox_g { background-color:#5e636c; }
/* select */
.nice-select { background-color:#fff; border-radius:5px; border:none; background-color:#e7ebee; box-sizing:border-box; cursor:pointer; display:inline-block; vertical-align:middle; color:#5e636c; font-weight:300; font-size:15px; height:38px; line-height:38px; outline:none; padding:0 28px 0 15px; position:relative; text-align:left !important; -webkit-transition:all 0.2s ease-in-out; transition:all 0.2s ease-in-out; white-space:nowrap; }
.nice-select .current { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; display:block; width:100%; }
.nice-select.white { border:1px solid #e1e1e1; background-color:#fff; }
.nice-select.pline { border:1px dashed #ccc; }
.nice-select:active, .nice-select.open,
.nice-select:focus { border:none; }
.nice-select.white:active,
.nice-select.white.open,
.nice-select.white:focus { border:1px solid #e1e1e1; }
.nice-select.pline:active,
.nice-select.pline.open,
.nice-select.pline:focus { border:1px dashed #ccc; }
.nice-select:after { content:''; display:block; pointer-events:none; width:10px; height:9px; background:url(../img/contents/icon_down_sel.png) center center no-repeat; position:absolute; right:12px; top:50%; transform:translateY(-50%) rotate(0deg); transition:all 0.15s ease-in-out; }
.nice-select.open:after { transform:rotate(-180deg); margin-top:-5px; }
.nice-select.open .list { opacity:1; pointer-events:auto; transform:scale(1) translateY(0); }
.nice-select.disabled:after { border-color:#cccccc; }
.nice-select .list { text-align:left; background-color:#fff; border-radius:5px; width:100%; border:1px solid #e1e1e1; box-sizing:border-box; margin:0; padding:0; color:#5e636c; font-weight:300; font-size:15px; opacity:0; overflow:hidden; pointer-events:none; position:absolute; top:100%; left:0; transform-origin:50% 0; transform:scale(0.8) translateY(0); transition:all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out; z-index:9; }
.nice-select .list:hover .option:not(:hover) { background-color:transparent !important; }
.nice-select .option { cursor:pointer; color:#5e636c; font-weight:300; font-size:15px; width:100%; line-height:38px; min-height:38px; outline:none; margin:0 !important; padding:0 14px !important; text-align:left !important; transition:all 0.2s; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus { background-color:#f6f6f6; }
.nice-select .option.selected { font-weight:400; }
.nice-select .option.disabled { background-color:transparent; color:#999; cursor:default; }
.no-csspointerevents .nice-select .list { display:none; }
.no-csspointerevents .nice-select.open .list { display:block; }
#footer { position:relative; border-top:1px solid #d8dde1; text-align:center; height:77px; }
#footer .txt { color:#5e636c;font-size:14px; line-height:14px; font-weight:200; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); }
#footer .btn_top { position:absolute; right:34px; top:50%; transform:translateY(-50%); }
#footer .btn_top a { position:relative; display:block; width:46px; height:46px; border-radius:100px; background-color:#5e636c; }
#footer .btn_top a:before { content:''; display:block; width:11px; height:20px; background:url(../img/contents/btn_top.png) center center no-repeat; position:absolute; left:50%; top:50%; transform:translate(-50%, -50%);}
#footer .btn_top a span { overflow:hidden; text-indent:-9999em; display:block; } | 0.298491 | 0.070528 |
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 100;
src: url('./files/noto-sans-malayalam-malayalam-100-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-100-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-200-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 200;
src: url('./files/noto-sans-malayalam-malayalam-200-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-200-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-300-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 300;
src: url('./files/noto-sans-malayalam-malayalam-300-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-300-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-400-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 400;
src: url('./files/noto-sans-malayalam-malayalam-400-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-400-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-500-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 500;
src: url('./files/noto-sans-malayalam-malayalam-500-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-500-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-600-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 600;
src: url('./files/noto-sans-malayalam-malayalam-600-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-600-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-700-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 700;
src: url('./files/noto-sans-malayalam-malayalam-700-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-700-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-800-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 800;
src: url('./files/noto-sans-malayalam-malayalam-800-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-800-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-900-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 900;
src: url('./files/noto-sans-malayalam-malayalam-900-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-900-normal.woff') format('woff');
} | packages/noto-sans-malayalam/malayalam.css | @font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 100;
src: url('./files/noto-sans-malayalam-malayalam-100-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-100-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-200-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 200;
src: url('./files/noto-sans-malayalam-malayalam-200-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-200-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-300-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 300;
src: url('./files/noto-sans-malayalam-malayalam-300-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-300-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-400-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 400;
src: url('./files/noto-sans-malayalam-malayalam-400-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-400-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-500-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 500;
src: url('./files/noto-sans-malayalam-malayalam-500-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-500-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-600-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 600;
src: url('./files/noto-sans-malayalam-malayalam-600-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-600-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-700-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 700;
src: url('./files/noto-sans-malayalam-malayalam-700-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-700-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-800-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 800;
src: url('./files/noto-sans-malayalam-malayalam-800-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-800-normal.woff') format('woff');
}
/* noto-sans-malayalam-malayalam-900-normal*/
@font-face {
font-family: 'Noto Sans Malayalam';
font-style: normal;
font-display: swap;
font-weight: 900;
src: url('./files/noto-sans-malayalam-malayalam-900-normal.woff2') format('woff2'), url('./files/noto-sans-malayalam-malayalam-900-normal.woff') format('woff');
} | 0.192691 | 0.040163 |
* From CSS3-Rainbow-Dividers on Github :)
*/
@-moz-keyframes rainbowanim {
from { background-position:top left; }
to {background-position:top right; }
}
@-webkit-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-o-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-ms-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-khtml-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
.catchadream{
background-image:-webkit-linear-gradient( left, red, orange, yellow, green,
blue, indigo, violet, indigo, blue,
green, yellow, orange, red );
background-image:-moz-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-o-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-ms-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-khtml-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
-moz-animation:rainbowanim 3.5s forwards linear infinite;
-webkit-animation:rainbowanim 2.5s forwards linear infinite;
-o-animation:rainbowanim 2.5s forwards linear infinite;
-khtml-animation:rainbowanim 2.5s forwards linear infinite;
-ms-animation:rainbowanim 2.5s forwards linear infinite;
-lynx-animation:rainbowanim 2.5s forwards linear infinite;
animation:rainbowanim 2.5s forwards linear infinite;
background-size:50% auto;
height: 20px;
padding: 12px;
} | src/style/rainbows.css | * From CSS3-Rainbow-Dividers on Github :)
*/
@-moz-keyframes rainbowanim {
from { background-position:top left; }
to {background-position:top right; }
}
@-webkit-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-o-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-ms-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@-khtml-keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
@keyframes rainbowanim {
from { background-position:top left; }
to { background-position:top right; }
}
.catchadream{
background-image:-webkit-linear-gradient( left, red, orange, yellow, green,
blue, indigo, violet, indigo, blue,
green, yellow, orange, red );
background-image:-moz-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-o-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-ms-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:-khtml-linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
background-image:linear-gradient( left, red, orange, yellow, green,
blue,indigo, violet, indigo, blue,
green, yellow, orange,red );
-moz-animation:rainbowanim 3.5s forwards linear infinite;
-webkit-animation:rainbowanim 2.5s forwards linear infinite;
-o-animation:rainbowanim 2.5s forwards linear infinite;
-khtml-animation:rainbowanim 2.5s forwards linear infinite;
-ms-animation:rainbowanim 2.5s forwards linear infinite;
-lynx-animation:rainbowanim 2.5s forwards linear infinite;
animation:rainbowanim 2.5s forwards linear infinite;
background-size:50% auto;
height: 20px;
padding: 12px;
} | 0.535827 | 0.130258 |
html{
scroll-behavior: smooth;
}
/*Global Body styling replaced colors and font with desired theme*/
body{
background-color: #232323;
color: #EEEEEE;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
}
/*Gives a background to header*/
header{
background: #191919;
width: 100%;
}
/*The next two define default footer style*/
footer{
background-color:darkorange;
font-size: .60em;
margin-top: 15em;
font-style:italic;
font-size: 8pt;
text-align: center;
padding-top:2em;
padding-bottom: 2em;
width:100%;
bottom:0;
left:0;
margin-left: 0em;
margin-right:0em;
padding-left: 0em;
padding-right: 0em;
}
footer div{
font-size: 2em;
text-align: left;
padding-left: 2vw;
width: 100%
}
/*Adds some letter spacing to the nav bar*/
nav{
letter-spacing: .11em;
}
/*Sets specific rules for nav anchor elements*/
nav a{
font-size: 1.8vw;
color: white;
}
/*Defines nav layout, add or remove grid columns to add or remove elements from header*/
nav ul{
display: grid;
grid-template-columns: auto auto auto auto auto;
margin-top: 1%;
margin-bottom: 1%;
place-items: center;
font-size: 1em;
}
nav li{
margin: 0;
}
/*Begin default base styling*/
/*h1 has slightly specific style, it's meant to be used as the header. it has slight right padding and slight bottom top padding*/
h1{
color: darkorange;
font-weight: lighter;
text-align: left;
padding-bottom: .1em;
padding-top: .1em;
letter-spacing: .11em;
padding-left: .25em;
}
h2{
font-weight: lighter;
color: darkorange;
}
h3{
font-weight: lighter;
text-decoration: underline;
}
h4{
font-weight: lighter;
}
a{
text-decoration: none;
color: darkorange;
}
p{
color: darkgrey;
}
ul{
padding-left: 8em;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
padding-left: 0em;
}
/*This and next element define table*/
table {
text-align:center;
width:60%;
margin-bottom:2em;
border-collapse:collapse;
border:1px darkorange;
margin-left:auto;
margin-right:auto;
}
th,tr,td{
padding:3px;
border:1px solid darkorange;
text-align:center;
}
caption{
margin:1em;
font-weight:bold;
font-size:120%;
}
img{
max-width: 100%;
height: auto;
}
/*Global Styling IDs*/
/*wrapper: Main content should be id'd as wrapper (between header and footer)*/
#wrapper{
width: 80%;
margin-top: 8vw;
margin-bottom: 12vw;
padding-left: 10%;
padding-right: 10%;
padding-bottom: 5em;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
/*background-color: #232323;*/
}
/*nav: Should be used for the nav bar styling*/
#nav{
width: 80%;
padding-left: 10%;
padding-right: 10%;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
position: fixed;
z-index:1000;
top: 0;
background-color: #252525;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*articleview: For putting article style text into a more readable format, places a box surrounding the element*/
#articleview{
width: 60%;
margin-left: 18%;
margin-right: 18%;
padding-left: 2%;
padding-right: 2%;
padding-top: 0.1%;
padding-bottom: 5%;
font-size: 1.2em;
background-color: #282828;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*articleText: used for the text that appears inside an article*/
#articleText{
width:95%;
padding-left:2.5%;
padding-right:2.5%;
border-top: 2px solid grey;
}
/*articleview p: makes article text whiter to increase contrast*/
#articleview p{
color: #E1E1E1;
}
/*articleHeader: used if you want the article title to be slightly wider than the body*/
#articleHeader {
width: 100%;
}
/*rssembed: styling for embedded RSS, mostly defunct*/
#rssembed{
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
white-space: pre-line;
}
/*landingpageimage: used for having an banner image*/
#landingpageimage{
width: 100%;
height: auto;
}
/*leftImage: used for placing two image next to each other using divs*/
#leftImage{
float: left;
width: 99.6%;
height: auto;
}
/*rightImage: used for placing two image next to each other using divs*/
#rightImage{
float: right;
width: 99.6%;
height: auto;
}
#form{
float: left;
display: block;
width: 80%;
padding-left: 5em;
padding-top: 1em;
margin:1em;
padding-bottom:1em;
}
/*navlink: apply to all elements that should have an onhover effect*/
.navlink{
padding: 1em;
}
.navlink:hover{
background-color: darkorange;
}
/*Meant for defining authors in articleview elements*/
.author{
margin-left: 1em;
}
/*An example class for applying a pointer variant*/
.frisbee{
cursor: url("../images/frisbeesmall.png") 50 50, pointer;
}
/*used for applying a hard page break, essentially a strong <br> tag*/
.break{
padding-top: 20%;
padding-bottom: 20%;
width: 100%;
}
/*For thumbnail images*/
.thumbnail{
height: 10%;
width: 10%;
float: left;
}
/*For images that should float left with wrapping text*/
.genimg{
float: left;
padding-right: 3em;
}
.image{
width: 49.5%;
height: 49.5%;
margin: .1%;
}
/*Blurs on hover*/
.overlayGroup:hover .background{
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
transition: .3s;
}
.overlayGroupBanner:hover .background{
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
transition: .3s;
}
.overlayGroup{
position: relative;
width: 50%;
height: 50%;
padding: 0;
margin: 0%;
margin-bottom: 5px;
float: left;
}
.overlayGroupBanner{
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
float: left;
}
.overlaytext{
font-family: Helvetica;
font-weight: lighter;
font-variant: small-caps;
color: white;
font-size: 3em;
position: absolute;
top: 40%;
left: 50%;
text-align: center;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/*What should be placed on the overlay tag*/
.imageoverlay{
position: absolute;
height: 100%;
width: 100%;
opacity: 0%;
transition: .3s;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.overlayGroup:hover .imageoverlay{
opacity: 1;
}
.overlayGroupBanner:hover .imageoverlay{
opacity: 1;
}
/*The tag that has replaced the ID imageRight*/
.imageright{
width: 40%;
height: 40%;
float: right;
padding-left: 1em;
padding-top: 1em;
padding-bottom: 1em;
}
/*The tag that has replaced the now defunct ID imageLeft*/
.imageleft{
width: 40%;
height: 40%;
float: left;
padding-right: 2%;
padding-top: 1em;
padding-bottom: 1em;
}
/*Text right and left, inspired by image right/left*/
.textright{
width:58%;
float: right;
}
.testleft{
width:60%;
}
/*An implementation of the clearfix hack*/
.clearfix:after{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/*taskbar image style, customize based on width/height of taskimage*/
.taskimage{
height: 60px;
width: auto;
float: left;
padding-bottom: 0;
padding-top: 0;
}
/*Forces image to be the max possible size*/
.fullimage{
width: 100%;
}
/*Small use case class used to add a headline outside of articleview*/
.headline{
color: white;
}
/*Used for file downloads if desired*/
.downloadlink{
color: forestgreen;
}
/*Most defunct tag for adding embed content*/
.embedDiv{
padding-top: 5%;
}
/*Prototype styling for adding card styling*/
.card{
float: left;
width: 20%;
height: 20em;
margin-top: 5em;
margin-bottom: 5em;
margin-left: 6.5%;
margin-right: 6.5%;
border: 1px solid #454545;
color: white;
display: block;
}
.cardImage{
display:block;
position: relative;
width: 100%;
height: 80%;
margin-bottom: 0em;
padding-bottom: 0em;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.cardImageFront .cardImageBack{
position: absolute;
width: 100%;
height: 80%;
backface-visibility: hidden;
}
.cardImageFront{
background: #bbb;
color: black;
}
.cardImageBack{
background: dodgerblue;
color: white;
transform: rotateY(180deg);
}
.card:hover .cardImage{
transform: rotateY(180deg);
}
.cardText{
display: block;
text-align: center;
color: white;
font-size: 15pt;
position: relative;
width: 100%;
height: 20%;
background: #282828;
padding-top: 0em;
padding-bottom: 0em;
margin: 0em;
}
/*Begin styling for desktop only*/
@media screen and (min-width: 600px){
.custombody {
padding-left: 2em;
line-height: 150%;
}
.inlinetitle h3{
display: inline-block;
padding-right: 0.5em;
}
/*For adding boxshadows around content*/
.container1 {
background: #252525;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: auto;
padding: 10px;
display: flex;
align-items: center;
transition: 1s;
}
.container1:hover{
background: #282828;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(1, 0, 0, 5.19);
}
.left1 {
width: 30%;
float: left;
}
.right1 {
margin-left: 1%;
width: 70%;
}
.container2 {
margin: auto;
padding: 1em;
display: flex;
align-items: center;
}
.left2 {
margin-right: 1%;
width: 70%;
}
.right2 {
width: 30%;
float: right;
}
.anchor {
display: block;
position: relative;
top: -5vw;
visibility: hidden;
}
#nav, nav{
height: 110px;
}
#wrapper{
margin-top: 130px;
}
.navlink{
margin-top: 10px;
padding-top: 20px;
padding-bottom: 20px;
}
.taskimage, .taskimage img{
margin-top: 5px;
height: 80px;
}
nav ul{
margin: 0;
}
}
/*Mobile styling, pushes content to use fullscreen*/
@media screen and (max-width: 600px){
nav ul{
width: 100%;
grid-template-columns: 100%;
justify-content: initial;
text-align: left;
gap: 8px;
}
nav ul li{
width: 100%;
padding-left: 0vw;
padding-top: 10px;
padding-bottom: 10px;
height: 30px;
}
li{
list-style: none;
margin-left: 5%;
}
h3{
margin-left: 2%;
}
.image,.imageleft,.imageright,.genimg,.left1,.left2,.right1,.right2{
display: block;
height: 95%;
width: 95%;
margin-left: auto;
margin-right: auto;
padding-right: 0em;
padding-left: 0em;
float: none;
padding-top: .5em;
padding-bottom: .5em;
}
.taskimage{
position: absolute;
padding-top: 0px;
padding-bottom: 0px;
width: 60px;
float: none;
display: grid;
margin-left: 1em;
margin-top: -16px;
}
.navlink{
width: 100%;
padding-left: 10%;
width: 100%;
padding-top: 5px;
padding-bottom: 15px;
height: 30px;
font-size: 20px;
text-align: left;
}
.navlink:hover{
background-color: orange;
}
#wrapper{
margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
width: 100%;
}
#articleview{
width: 100%;
padding-left: 0%;
padding-right: 0%;
margin-left: 0%;
margin-right: 0%;
}
#articleHeader{
width: 95%;
padding-left: 2.5%;
padding-right: 2.5%;
}
#nav{
padding-left: 0%;
padding-right: 0%;
width: 100%;
padding-bottom: 0em;
overflow: hidden;
position: fixed;
height: 60px;
}
.overlayGroup{
width: 100%;
}
.imageoverlay{
opacity: 1;
}
.overlaytext{
top:30%;
}
#landingpageimage, #rightImage, #leftImage{
width: 100%;
}
ul{
padding-left: 0;
margin-left: 0;
}
.headline{
color: white;
}
p,h1,h2 .downloadlink, .standinglink{
padding-left: 2vw;
padding-right: 2vw;
}
h1{
padding-top: 10px;
padding-bottom: 10px;
}
header{
margin-top: 60px;
}
.textright, .container1, .clearfix, .author{
float: none;
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
.custombody {
padding-left: 0.5em;
}
.inlinetitle h3{
display: inline-block;
padding-right: 0.5em;
}
} | css/jatasStyle.css | html{
scroll-behavior: smooth;
}
/*Global Body styling replaced colors and font with desired theme*/
body{
background-color: #232323;
color: #EEEEEE;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
}
/*Gives a background to header*/
header{
background: #191919;
width: 100%;
}
/*The next two define default footer style*/
footer{
background-color:darkorange;
font-size: .60em;
margin-top: 15em;
font-style:italic;
font-size: 8pt;
text-align: center;
padding-top:2em;
padding-bottom: 2em;
width:100%;
bottom:0;
left:0;
margin-left: 0em;
margin-right:0em;
padding-left: 0em;
padding-right: 0em;
}
footer div{
font-size: 2em;
text-align: left;
padding-left: 2vw;
width: 100%
}
/*Adds some letter spacing to the nav bar*/
nav{
letter-spacing: .11em;
}
/*Sets specific rules for nav anchor elements*/
nav a{
font-size: 1.8vw;
color: white;
}
/*Defines nav layout, add or remove grid columns to add or remove elements from header*/
nav ul{
display: grid;
grid-template-columns: auto auto auto auto auto;
margin-top: 1%;
margin-bottom: 1%;
place-items: center;
font-size: 1em;
}
nav li{
margin: 0;
}
/*Begin default base styling*/
/*h1 has slightly specific style, it's meant to be used as the header. it has slight right padding and slight bottom top padding*/
h1{
color: darkorange;
font-weight: lighter;
text-align: left;
padding-bottom: .1em;
padding-top: .1em;
letter-spacing: .11em;
padding-left: .25em;
}
h2{
font-weight: lighter;
color: darkorange;
}
h3{
font-weight: lighter;
text-decoration: underline;
}
h4{
font-weight: lighter;
}
a{
text-decoration: none;
color: darkorange;
}
p{
color: darkgrey;
}
ul{
padding-left: 8em;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
padding-left: 0em;
}
/*This and next element define table*/
table {
text-align:center;
width:60%;
margin-bottom:2em;
border-collapse:collapse;
border:1px darkorange;
margin-left:auto;
margin-right:auto;
}
th,tr,td{
padding:3px;
border:1px solid darkorange;
text-align:center;
}
caption{
margin:1em;
font-weight:bold;
font-size:120%;
}
img{
max-width: 100%;
height: auto;
}
/*Global Styling IDs*/
/*wrapper: Main content should be id'd as wrapper (between header and footer)*/
#wrapper{
width: 80%;
margin-top: 8vw;
margin-bottom: 12vw;
padding-left: 10%;
padding-right: 10%;
padding-bottom: 5em;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
/*background-color: #232323;*/
}
/*nav: Should be used for the nav bar styling*/
#nav{
width: 80%;
padding-left: 10%;
padding-right: 10%;
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
position: fixed;
z-index:1000;
top: 0;
background-color: #252525;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*articleview: For putting article style text into a more readable format, places a box surrounding the element*/
#articleview{
width: 60%;
margin-left: 18%;
margin-right: 18%;
padding-left: 2%;
padding-right: 2%;
padding-top: 0.1%;
padding-bottom: 5%;
font-size: 1.2em;
background-color: #282828;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/*articleText: used for the text that appears inside an article*/
#articleText{
width:95%;
padding-left:2.5%;
padding-right:2.5%;
border-top: 2px solid grey;
}
/*articleview p: makes article text whiter to increase contrast*/
#articleview p{
color: #E1E1E1;
}
/*articleHeader: used if you want the article title to be slightly wider than the body*/
#articleHeader {
width: 100%;
}
/*rssembed: styling for embedded RSS, mostly defunct*/
#rssembed{
font-family: Arial, Helvetica, sans-serif;
font-weight: lighter;
white-space: pre-line;
}
/*landingpageimage: used for having an banner image*/
#landingpageimage{
width: 100%;
height: auto;
}
/*leftImage: used for placing two image next to each other using divs*/
#leftImage{
float: left;
width: 99.6%;
height: auto;
}
/*rightImage: used for placing two image next to each other using divs*/
#rightImage{
float: right;
width: 99.6%;
height: auto;
}
#form{
float: left;
display: block;
width: 80%;
padding-left: 5em;
padding-top: 1em;
margin:1em;
padding-bottom:1em;
}
/*navlink: apply to all elements that should have an onhover effect*/
.navlink{
padding: 1em;
}
.navlink:hover{
background-color: darkorange;
}
/*Meant for defining authors in articleview elements*/
.author{
margin-left: 1em;
}
/*An example class for applying a pointer variant*/
.frisbee{
cursor: url("../images/frisbeesmall.png") 50 50, pointer;
}
/*used for applying a hard page break, essentially a strong <br> tag*/
.break{
padding-top: 20%;
padding-bottom: 20%;
width: 100%;
}
/*For thumbnail images*/
.thumbnail{
height: 10%;
width: 10%;
float: left;
}
/*For images that should float left with wrapping text*/
.genimg{
float: left;
padding-right: 3em;
}
.image{
width: 49.5%;
height: 49.5%;
margin: .1%;
}
/*Blurs on hover*/
.overlayGroup:hover .background{
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
transition: .3s;
}
.overlayGroupBanner:hover .background{
filter: blur(5px);
-webkit-filter: blur(5px);
-moz-filter: blur(5px);
-o-filter: blur(5px);
-ms-filter: blur(5px);
transition: .3s;
}
.overlayGroup{
position: relative;
width: 50%;
height: 50%;
padding: 0;
margin: 0%;
margin-bottom: 5px;
float: left;
}
.overlayGroupBanner{
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
float: left;
}
.overlaytext{
font-family: Helvetica;
font-weight: lighter;
font-variant: small-caps;
color: white;
font-size: 3em;
position: absolute;
top: 40%;
left: 50%;
text-align: center;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
/*What should be placed on the overlay tag*/
.imageoverlay{
position: absolute;
height: 100%;
width: 100%;
opacity: 0%;
transition: .3s;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.overlayGroup:hover .imageoverlay{
opacity: 1;
}
.overlayGroupBanner:hover .imageoverlay{
opacity: 1;
}
/*The tag that has replaced the ID imageRight*/
.imageright{
width: 40%;
height: 40%;
float: right;
padding-left: 1em;
padding-top: 1em;
padding-bottom: 1em;
}
/*The tag that has replaced the now defunct ID imageLeft*/
.imageleft{
width: 40%;
height: 40%;
float: left;
padding-right: 2%;
padding-top: 1em;
padding-bottom: 1em;
}
/*Text right and left, inspired by image right/left*/
.textright{
width:58%;
float: right;
}
.testleft{
width:60%;
}
/*An implementation of the clearfix hack*/
.clearfix:after{
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/*taskbar image style, customize based on width/height of taskimage*/
.taskimage{
height: 60px;
width: auto;
float: left;
padding-bottom: 0;
padding-top: 0;
}
/*Forces image to be the max possible size*/
.fullimage{
width: 100%;
}
/*Small use case class used to add a headline outside of articleview*/
.headline{
color: white;
}
/*Used for file downloads if desired*/
.downloadlink{
color: forestgreen;
}
/*Most defunct tag for adding embed content*/
.embedDiv{
padding-top: 5%;
}
/*Prototype styling for adding card styling*/
.card{
float: left;
width: 20%;
height: 20em;
margin-top: 5em;
margin-bottom: 5em;
margin-left: 6.5%;
margin-right: 6.5%;
border: 1px solid #454545;
color: white;
display: block;
}
.cardImage{
display:block;
position: relative;
width: 100%;
height: 80%;
margin-bottom: 0em;
padding-bottom: 0em;
transition: transform 0.8s;
transform-style: preserve-3d;
}
.cardImageFront .cardImageBack{
position: absolute;
width: 100%;
height: 80%;
backface-visibility: hidden;
}
.cardImageFront{
background: #bbb;
color: black;
}
.cardImageBack{
background: dodgerblue;
color: white;
transform: rotateY(180deg);
}
.card:hover .cardImage{
transform: rotateY(180deg);
}
.cardText{
display: block;
text-align: center;
color: white;
font-size: 15pt;
position: relative;
width: 100%;
height: 20%;
background: #282828;
padding-top: 0em;
padding-bottom: 0em;
margin: 0em;
}
/*Begin styling for desktop only*/
@media screen and (min-width: 600px){
.custombody {
padding-left: 2em;
line-height: 150%;
}
.inlinetitle h3{
display: inline-block;
padding-right: 0.5em;
}
/*For adding boxshadows around content*/
.container1 {
background: #252525;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: auto;
padding: 10px;
display: flex;
align-items: center;
transition: 1s;
}
.container1:hover{
background: #282828;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(1, 0, 0, 5.19);
}
.left1 {
width: 30%;
float: left;
}
.right1 {
margin-left: 1%;
width: 70%;
}
.container2 {
margin: auto;
padding: 1em;
display: flex;
align-items: center;
}
.left2 {
margin-right: 1%;
width: 70%;
}
.right2 {
width: 30%;
float: right;
}
.anchor {
display: block;
position: relative;
top: -5vw;
visibility: hidden;
}
#nav, nav{
height: 110px;
}
#wrapper{
margin-top: 130px;
}
.navlink{
margin-top: 10px;
padding-top: 20px;
padding-bottom: 20px;
}
.taskimage, .taskimage img{
margin-top: 5px;
height: 80px;
}
nav ul{
margin: 0;
}
}
/*Mobile styling, pushes content to use fullscreen*/
@media screen and (max-width: 600px){
nav ul{
width: 100%;
grid-template-columns: 100%;
justify-content: initial;
text-align: left;
gap: 8px;
}
nav ul li{
width: 100%;
padding-left: 0vw;
padding-top: 10px;
padding-bottom: 10px;
height: 30px;
}
li{
list-style: none;
margin-left: 5%;
}
h3{
margin-left: 2%;
}
.image,.imageleft,.imageright,.genimg,.left1,.left2,.right1,.right2{
display: block;
height: 95%;
width: 95%;
margin-left: auto;
margin-right: auto;
padding-right: 0em;
padding-left: 0em;
float: none;
padding-top: .5em;
padding-bottom: .5em;
}
.taskimage{
position: absolute;
padding-top: 0px;
padding-bottom: 0px;
width: 60px;
float: none;
display: grid;
margin-left: 1em;
margin-top: -16px;
}
.navlink{
width: 100%;
padding-left: 10%;
width: 100%;
padding-top: 5px;
padding-bottom: 15px;
height: 30px;
font-size: 20px;
text-align: left;
}
.navlink:hover{
background-color: orange;
}
#wrapper{
margin-top: 70px;
padding-left: 0%;
padding-right: 0%;
width: 100%;
}
#articleview{
width: 100%;
padding-left: 0%;
padding-right: 0%;
margin-left: 0%;
margin-right: 0%;
}
#articleHeader{
width: 95%;
padding-left: 2.5%;
padding-right: 2.5%;
}
#nav{
padding-left: 0%;
padding-right: 0%;
width: 100%;
padding-bottom: 0em;
overflow: hidden;
position: fixed;
height: 60px;
}
.overlayGroup{
width: 100%;
}
.imageoverlay{
opacity: 1;
}
.overlaytext{
top:30%;
}
#landingpageimage, #rightImage, #leftImage{
width: 100%;
}
ul{
padding-left: 0;
margin-left: 0;
}
.headline{
color: white;
}
p,h1,h2 .downloadlink, .standinglink{
padding-left: 2vw;
padding-right: 2vw;
}
h1{
padding-top: 10px;
padding-bottom: 10px;
}
header{
margin-top: 60px;
}
.textright, .container1, .clearfix, .author{
float: none;
width: 90%;
margin-left: 5%;
margin-right: 5%;
}
.custombody {
padding-left: 0.5em;
}
.inlinetitle h3{
display: inline-block;
padding-right: 0.5em;
}
} | 0.525612 | 0.070144 |
#forum_sender{
max-width: 820px;
display:block;
overflow:hidden;
padding:0;
margin:5px auto;
}
#forum_sender .coverimg{
position: relative;
display: inline-block;
width:100%;
height:240px;
background:#f1f3f6;
overflow: hidden;
}
#forum_sender .coverimg .less-icon{
position: relative;
margin: 0 auto;
font-size: 100px;
color: #ccc;
display: block;
text-align: center;
transform: translateY(-50%);
height: 100px;
top: 50%;
}
#forum_sender .coverimg img{
position:relative;
z-index: 1;
width:100%;
height:auto;
margin: 0 auto;
}
#forum_sender .coverimg .preview{
width:100%;
height:auto;
position: absolute;
top:0;
left:0;
z-index: 2;
overflow:hidden;
}
#forum_sender .coverimg input{
cursor: pointer;
position: absolute;
left:0;
bottom:0;
z-index: 3;
width:100%;
height:100%;
opacity: 0;
}
#forum_sender .line{
display:block;
margin:15px 15px;
}
#forum_sender .line > *{
vertical-align:middle;
}
#forum_sender .line .tags{
color: #a2a5b1;
font-size: 13px;
display: inline-block;
float: right;
margin-left: 25px;
}
#forum_sender .line input[type="text"],
#forum_sender .line select{
display:inline-block;
padding:2px 5px;
background:#f1f3f6;
color:#888;
border:0px dashed #ccc;
width:140px;
box-shadow:inset 0 0 0 500px #f1f3f6;
}
#forum_sender .line #title{
font-size:22px;
width:100%;
color:#000;
}
#forum_sender .line #keyword{
width:50%;
}
#forum_sender .line #descrip{
display:inline-block;
padding:10px;
background:#f1f3f6;
color:#888;
border:0px dashed #ccc;
border-left:3px solid #ccc;
width:100%;
height:60px;
resize:none;
}
#forum_sender #container{
box-sizing:content-box;
position:relative;
width:calc(100% - 32px) !important;
display:block;
margin:5px 15px;
background:#fff;
border:1px solid #eee;
overflow:hidden;
}
#forum_sender .line #avatar{
display:inline-block;
width:48px;
height:48px;
border-radius: 50px;
background:#f2f2f2;
border:1px dashed #eee;
}
#forum_sender .line i{
display:none;
}
#forum_sender form{
width:100%;
box-sizing: border-box;
background: #fff;
overflow: visible;
float: right;
} | public/static/css/skin/thread_sender.css | #forum_sender{
max-width: 820px;
display:block;
overflow:hidden;
padding:0;
margin:5px auto;
}
#forum_sender .coverimg{
position: relative;
display: inline-block;
width:100%;
height:240px;
background:#f1f3f6;
overflow: hidden;
}
#forum_sender .coverimg .less-icon{
position: relative;
margin: 0 auto;
font-size: 100px;
color: #ccc;
display: block;
text-align: center;
transform: translateY(-50%);
height: 100px;
top: 50%;
}
#forum_sender .coverimg img{
position:relative;
z-index: 1;
width:100%;
height:auto;
margin: 0 auto;
}
#forum_sender .coverimg .preview{
width:100%;
height:auto;
position: absolute;
top:0;
left:0;
z-index: 2;
overflow:hidden;
}
#forum_sender .coverimg input{
cursor: pointer;
position: absolute;
left:0;
bottom:0;
z-index: 3;
width:100%;
height:100%;
opacity: 0;
}
#forum_sender .line{
display:block;
margin:15px 15px;
}
#forum_sender .line > *{
vertical-align:middle;
}
#forum_sender .line .tags{
color: #a2a5b1;
font-size: 13px;
display: inline-block;
float: right;
margin-left: 25px;
}
#forum_sender .line input[type="text"],
#forum_sender .line select{
display:inline-block;
padding:2px 5px;
background:#f1f3f6;
color:#888;
border:0px dashed #ccc;
width:140px;
box-shadow:inset 0 0 0 500px #f1f3f6;
}
#forum_sender .line #title{
font-size:22px;
width:100%;
color:#000;
}
#forum_sender .line #keyword{
width:50%;
}
#forum_sender .line #descrip{
display:inline-block;
padding:10px;
background:#f1f3f6;
color:#888;
border:0px dashed #ccc;
border-left:3px solid #ccc;
width:100%;
height:60px;
resize:none;
}
#forum_sender #container{
box-sizing:content-box;
position:relative;
width:calc(100% - 32px) !important;
display:block;
margin:5px 15px;
background:#fff;
border:1px solid #eee;
overflow:hidden;
}
#forum_sender .line #avatar{
display:inline-block;
width:48px;
height:48px;
border-radius: 50px;
background:#f2f2f2;
border:1px dashed #eee;
}
#forum_sender .line i{
display:none;
}
#forum_sender form{
width:100%;
box-sizing: border-box;
background: #fff;
overflow: visible;
float: right;
} | 0.222616 | 0.081046 |
@font-face {
font-family: FontAwesome;
src: url("assets/fonts/FontAwesome.otf");
}
@font-face {
font-family: Proxima;
src: url("assets/fonts/Proxima Nova Regular.otf");
}
html, body {
height: 100%;
}
body {
background-color: #ffffff;
margin: 0;
padding: 0;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100%;
}
header {
background-color: #2f364a;
display: flex;
justify-content: flex-end;
align-items: center;
font-size: 16px;
font-family: FontAwesome, Arial;
}
nav a {
margin-left: 10px;
color: #78829d;
text-decoration: none;
}
nav a:hover,
button:hover {
color: #fff;
opacity: 0.9;
transition: 1s;
}
.user_card {
background-color: #15a4fa;
display: flex;
align-items: center;
justify-content: center;
margin-left: 20px;
padding: 0 10px 0 10px;
gap: 10px;
}
.user_card img {
width: 25px;
height: 25px;
border-radius: 50%;
border: #fff solid 2px;
margin: 2px 0 2px 0;
}
.user_button {
background: url(/src/library_task/assets/img/profile_button.png) 100% 100% / 100% 100% no-repeat;
border: none;
width: 25px;
height: 25px;
cursor: pointer;
}
.content {
flex: 1 1 auto;
display: flex;
flex-direction: row;
}
/* LEFT PANNEL */
.left_pannel {
background-color: #1f2637;
width: 20%;
flex: 1 1 auto;
}
.left_pannel_add_book {
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 3px 0px #19202e;
}
.add_book_button {
display: flex;
align-items: center;
justify-content: center;
width: 100px;
height: 30px;
margin: 20px 0 20px 0;
font-family: Proxima;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: #ffff;
background-color: #f2795a;
border: none;
border-radius: 8px;
cursor: pointer;
}
.add_book_button img {
width: 10px;
margin-right: 3px;
}
.left_menu {
margin: 5px 0 5px 0;
box-shadow: 0px 3px 0px #19202e;
}
.left_menu_inner {
display: flex;
align-items: center;
justify-content: left;
cursor: pointer;
}
.left_menu_inner img {
width: 12px;
margin: 0 10px 0 5px;
}
.left_menu_inner a {
margin: 7px 0 7px 0;
text-decoration: none;
text-transform: capitalize;
color: #78829d;
font-family: Proxima;
font-size: 15px;
}
.left_menu_inner:hover {
background-color: #15a4fa;
color: #fff;
}
.left_menu_inner:hover.left_menu_inner a {
color: #fff;
}
.left_menu_inner:hover.left_menu_inner img {
filter: brightness(0) invert(1);
}
.categories {
box-shadow: 0px 3px 0px #19202e;
}
.categories ul {
padding: 0 0 0 25px;
}
.categories li {
color: #78829d;
font-family: Proxima;
text-transform: capitalize;
font-size: 15px;
padding: 0 0 20px 3px;
cursor: pointer;
}
.categories li:hover {
color: #fff;
}
.categories li:nth-child(1)::marker {
color: pink;
}
.categories li:nth-child(2)::marker {
color: yellow;
}
.categories li:nth-child(3)::marker {
color: blue;
}
.categories li:nth-child(4)::marker {
color: violet;
}
.notification_item {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: 0 10px 0 10px;
padding: 10px 0 10px 0;
}
.notifications img {
width: 10px;
padding-top: 10px;
}
.notifications_text,
.notifications_time {
color: #78829d;
font-family: Proxima;
font-size: 10px;
font-weight: 300;
padding-left: 10px;
}
.notifications_time {
font-size: 8px;
}
/* MAIN */
.page {
width: 80%;
}
.page_name,
.page_search {
background-color: #eef1f7;
height: 60px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1)
}
.page_name h1 {
padding: 20px 0 20px 10px;
font-size: 20px;
font-weight: 600;
margin: 0;
font-family: Proxima;
font-weight: 300;
color: #444c63;
}
.page_search {
display: flex;
justify-content: space-between;
align-items: center;
}
.page_search p {
margin: 0 15px;
}
.filter {
display: flex;
align-items: center;
text-transform: capitalize;
font-weight: 200;
font-family: 12px Proxima;
color: #8c97b2;
}
.search {
padding: 10px 15px;
margin: 0 20px 0 0;
box-sizing: border-box;
border-radius: 15px;
background: url(/src/library_task/assets/img/search.png) 90% no-repeat;
background-color: #fff;
border: 1px solid rgba(7, 104, 99, 0.4);
font: 13px Tahoma;
outline: none;
}
.books_inner {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 10px;
}
.book_item img {
width: 190px;
height: 260px;
padding: 10px 10px 0 10px;
}
.book_item h1,
.book_item h2 {
color: #444c63;
font-size: 16px;
font-family: Proxima;
font-weight: 600;
margin: 0 20px 5px 20px;
cursor: pointer;
}
.book_item h2 {
font-size: 10px;
font-weight: 300;
}
.stars {
padding-left: 20px;
}
.stars img {
width: 12px;
height: 12px;
margin: 0;
padding: 0;
}
footer {
background-color: #181e2c;
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: flex-end;
}
.question_item_button {
background: url(/src/library_task/assets/img/question_item.png) 100% 100% / 100% 100% no-repeat;
}
.settings_item_button {
background: url(/src/library_task/assets/img/settings_item.png) 100% 100% / 100% 100% no-repeat;
}
.settings_item {
background-color: #15a4fa;
}
.question_item {
background-color: #1f2637;
}
footer button {
width: 20px;
height: 20px;
cursor: pointer;
border: none;
margin: 5px 10px 5px;
} | src/library_task/style.css | @font-face {
font-family: FontAwesome;
src: url("assets/fonts/FontAwesome.otf");
}
@font-face {
font-family: Proxima;
src: url("assets/fonts/Proxima Nova Regular.otf");
}
html, body {
height: 100%;
}
body {
background-color: #ffffff;
margin: 0;
padding: 0;
}
.wrapper {
display: flex;
flex-direction: column;
min-height: 100%;
}
header {
background-color: #2f364a;
display: flex;
justify-content: flex-end;
align-items: center;
font-size: 16px;
font-family: FontAwesome, Arial;
}
nav a {
margin-left: 10px;
color: #78829d;
text-decoration: none;
}
nav a:hover,
button:hover {
color: #fff;
opacity: 0.9;
transition: 1s;
}
.user_card {
background-color: #15a4fa;
display: flex;
align-items: center;
justify-content: center;
margin-left: 20px;
padding: 0 10px 0 10px;
gap: 10px;
}
.user_card img {
width: 25px;
height: 25px;
border-radius: 50%;
border: #fff solid 2px;
margin: 2px 0 2px 0;
}
.user_button {
background: url(/src/library_task/assets/img/profile_button.png) 100% 100% / 100% 100% no-repeat;
border: none;
width: 25px;
height: 25px;
cursor: pointer;
}
.content {
flex: 1 1 auto;
display: flex;
flex-direction: row;
}
/* LEFT PANNEL */
.left_pannel {
background-color: #1f2637;
width: 20%;
flex: 1 1 auto;
}
.left_pannel_add_book {
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 3px 0px #19202e;
}
.add_book_button {
display: flex;
align-items: center;
justify-content: center;
width: 100px;
height: 30px;
margin: 20px 0 20px 0;
font-family: Proxima;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
color: #ffff;
background-color: #f2795a;
border: none;
border-radius: 8px;
cursor: pointer;
}
.add_book_button img {
width: 10px;
margin-right: 3px;
}
.left_menu {
margin: 5px 0 5px 0;
box-shadow: 0px 3px 0px #19202e;
}
.left_menu_inner {
display: flex;
align-items: center;
justify-content: left;
cursor: pointer;
}
.left_menu_inner img {
width: 12px;
margin: 0 10px 0 5px;
}
.left_menu_inner a {
margin: 7px 0 7px 0;
text-decoration: none;
text-transform: capitalize;
color: #78829d;
font-family: Proxima;
font-size: 15px;
}
.left_menu_inner:hover {
background-color: #15a4fa;
color: #fff;
}
.left_menu_inner:hover.left_menu_inner a {
color: #fff;
}
.left_menu_inner:hover.left_menu_inner img {
filter: brightness(0) invert(1);
}
.categories {
box-shadow: 0px 3px 0px #19202e;
}
.categories ul {
padding: 0 0 0 25px;
}
.categories li {
color: #78829d;
font-family: Proxima;
text-transform: capitalize;
font-size: 15px;
padding: 0 0 20px 3px;
cursor: pointer;
}
.categories li:hover {
color: #fff;
}
.categories li:nth-child(1)::marker {
color: pink;
}
.categories li:nth-child(2)::marker {
color: yellow;
}
.categories li:nth-child(3)::marker {
color: blue;
}
.categories li:nth-child(4)::marker {
color: violet;
}
.notification_item {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: 0 10px 0 10px;
padding: 10px 0 10px 0;
}
.notifications img {
width: 10px;
padding-top: 10px;
}
.notifications_text,
.notifications_time {
color: #78829d;
font-family: Proxima;
font-size: 10px;
font-weight: 300;
padding-left: 10px;
}
.notifications_time {
font-size: 8px;
}
/* MAIN */
.page {
width: 80%;
}
.page_name,
.page_search {
background-color: #eef1f7;
height: 60px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1)
}
.page_name h1 {
padding: 20px 0 20px 10px;
font-size: 20px;
font-weight: 600;
margin: 0;
font-family: Proxima;
font-weight: 300;
color: #444c63;
}
.page_search {
display: flex;
justify-content: space-between;
align-items: center;
}
.page_search p {
margin: 0 15px;
}
.filter {
display: flex;
align-items: center;
text-transform: capitalize;
font-weight: 200;
font-family: 12px Proxima;
color: #8c97b2;
}
.search {
padding: 10px 15px;
margin: 0 20px 0 0;
box-sizing: border-box;
border-radius: 15px;
background: url(/src/library_task/assets/img/search.png) 90% no-repeat;
background-color: #fff;
border: 1px solid rgba(7, 104, 99, 0.4);
font: 13px Tahoma;
outline: none;
}
.books_inner {
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 10px;
}
.book_item img {
width: 190px;
height: 260px;
padding: 10px 10px 0 10px;
}
.book_item h1,
.book_item h2 {
color: #444c63;
font-size: 16px;
font-family: Proxima;
font-weight: 600;
margin: 0 20px 5px 20px;
cursor: pointer;
}
.book_item h2 {
font-size: 10px;
font-weight: 300;
}
.stars {
padding-left: 20px;
}
.stars img {
width: 12px;
height: 12px;
margin: 0;
padding: 0;
}
footer {
background-color: #181e2c;
flex: 0 0 auto;
display: flex;
align-items: center;
justify-content: flex-end;
}
.question_item_button {
background: url(/src/library_task/assets/img/question_item.png) 100% 100% / 100% 100% no-repeat;
}
.settings_item_button {
background: url(/src/library_task/assets/img/settings_item.png) 100% 100% / 100% 100% no-repeat;
}
.settings_item {
background-color: #15a4fa;
}
.question_item {
background-color: #1f2637;
}
footer button {
width: 20px;
height: 20px;
cursor: pointer;
border: none;
margin: 5px 10px 5px;
} | 0.466846 | 0.089733 |
SITE MAIN STRUCTURE
------------------------------------------------------*/
.site_wrapper {
width: 100%;
margin: 0 auto 0 auto;
}
.container_full {
width: 100%;
float: left;
margin: auto auto auto auto;
}
.container_full.slidertop {
margin-top: -80px;
}
.container {
width: 1170px;
margin: auto auto auto auto;
}
.content_fullwidth {
float: left;
width: 100%;
padding: 50px 0px 0px 0px;
}
.content_left {
float: left;
width: 71%;
padding: 18px 0px 0px 0px;
}
.right_sidebar {
float: right;
width: 25%;
padding: 18px 0px 0px 0px;
}
.left_sidebar {
float: left;
width: 25%;
padding: 18px 0px 0px 0px;
}
.content_right {
float: right;
width: 71%;
padding: 18px 0px 0px 0px;
}
/* columns */
.one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth {
position: relative;
margin-right: 4%;
float: left;
}
.one_full {
width: 100%;
}
.one_half {
width: 48%;
}
.one_third {
width: 30.650%;
}
.one_fourth {
width: 22%;
}
.one_fifth {
width: 16.800%;
}
.two_third {
width: 65.350%;
}
.three_fourth {
width: 74%;
}
.last {
margin-right: 0 !important;
clear: right;
}
/*---------------------------------------------------
HEADER
------------------------------------------------------*/
/* Logo */
#trueHeader #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:13px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
#trueHeader2 #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:13px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
/*index4*/
#topHeader #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:8px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
/* top navigation */
.right_bar {
float: right;
width: 75%;
padding: 20px 0px 0px 0px;
}
.right_bar ul.social_icons50 {
float: left;
width: 100%;
padding:0px;
}
.right_bar ul.social_icon_holder {
float: right;
width: 40%;
padding:0px;
margin:0px;
}
.right_bar ul.social_icons {
float: right;
width: 100%;
padding:0px;
margin:0px;
}
.right_bar ul.social_icons li {
float: right;
padding:0px;
margin:0px;
}
.right_bar .social_icons li.social a {
width:24px;
height:24px;
float: right;
font-size:13px;
color:#fff;
padding:0px;
margin:0 5px 0 0;
text-align:center;
line-height:25px;
border-radius:50%;
background-color:#272727;
}
.right_bar .social_icons li.social a:hover {
color:#fff;
background-color:#727272;
}
.right_bar .social_icons li.mail a {
float: right;
font-size:13px;
color:#727272;
padding:0px;
margin:0 15px 0 0;
line-height:25px;
}
.right_bar .social_icons li.phone {
float: right;
font-size:13px;
color:#727272;
padding:0px;
margin:0 15px 0 0;
line-height:25px;
}
.logo_holder {
float: left;
width: 100%;
height:64px;
}
/*index2*/
.tp-banner-container.two{ margin-top:-40px; position:relative; z-index:50;}
/* top navigation */
.top_nav {
float: left;
width: 100%;
padding: 0px 0px 0px 0px;
background-color: #fff;
border-bottom:1px solid #e7e7e7;
}
.top_nav.two{
float: left;
width: 100%;
height:50px;
padding: 0px 0px 0px 0px;
background-color:none;
}
.top_nav .right {
float: left;
width: 50%;
}
.top_nav .left {
float: left;
width: 50%;
}
.top_nav .left a {
font-size:13px;
color:#999;
float:left;
padding-top:3px;
}
.top_nav .left a i {
color:#fdce16;
}
.top_nav .left a:hover {
color:#727272;
}
.top_nav .left span {
font-size:13px;
color:#999;
float:left;
padding-left:15px;
padding-top:3px;
}
.top_nav .left span i {
color:#fdce16;
}
.top_nav .right ul {
float: right;
padding: 0px;
margin: 0px;
}
.top_nav .right li {
float: left;
font-size: 12px;
margin: 0px;
border-left:1px solid #d9d9d9;
}
.top_nav .right li.last {
border-right:1px solid #d9d9d9;
}
.top_nav .right li a i {
float: left;
font-size: 14px;
padding: 10px 10px 8px 10px;
margin: 0px;
}
.top_nav .right li:hover i {
color: #454545;
}
.top_nav .right li a {
color: #999;
}
.top_nav .right li a:hover {
color: #727272;
}
/* header area adinationals */
.logo {
float: left;
width: 25%;
}
.menu_main {
float: right;
width: 75%;
z-index: 9999;
position: relative;
}
.menu_main2 {
float: left;
width: 70%;
z-index: 9999;
padding:0px;
margin:0px;
position: relative;
}
.search_holder {
float: right;
width: 30%;
padding:20px 0 0 0;
}
.search_holder .input_text {
width:70%;
padding:0px;
border:1px solid #d9d9d9;
}
/*---------------------------------------------------
sections
------------------------------------------------------*/
.readmore_but1 {
float: left;
color: #adadad;
text-transform: uppercase;
padding: 13px 40px;
background-color: #161616;
border-radius:2px;
}
.readmore_but1:hover {
color: #161616;
background-color: #fff;
}
.readmore_but2 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 12px;
border-radius:2px;
border:2px solid #161616;
}
.readmore_but2:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_but3 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #fff;
}
.readmore_but3:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_but4 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
border-radius:2px;
background-color: #fdce16;
}
.readmore_but4:hover {
color: #161616;
background-color: #fff;
}
.readmore_but5 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #2d2d2d;
}
.readmore_but5:hover {
color: #161616;
border:2px solid #ff;
background-color: #fff;
}
.readmore_but6 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 25px;
border:2px solid #161616;
}
.readmore_but6:hover {
color: #fff;
border:2px solid #161616;
background-color: #161616;
}
.readmore_but7 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fff;
}
.readmore_but7:hover {
color: #fff;
background-color: #161616;
}
.readmore_but8 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 12px 25px;
background-color:#161616;
}
.readmore_but8:hover {
color: #161616;
background-color: #fff;
}
.readmore_but9 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 12px 25px;
background-color:#161616;
}
.readmore_but9:hover {
color: #161616;
background-color: #fdce16;
}
.readmore_but10 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fdce16;
}
.readmore_but10:hover {
color: #fff;
background-color: #161616;
}
.readmore_but11 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fff;
}
.readmore_but11:hover {
color: #fff;
background-color: #161616;
}
.readmore_but12 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #fdce16;
}
.readmore_but12:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_small {
float: left;
color: #fff;
font-size:12px;
text-transform: uppercase;
padding: 4px 7px;
background-color: #119ee7;
border-radius:2px;
text-transform:none;
}
.readmore_small:hover, .readmore_small.red:hover, .readmore_small.green:hover, .readmore_small.yellow:hover, .readmore_small.violet:hover {
color: #161616;
background-color: #fff;
}
.readmore_small.red {
background-color: #fc4242;
}
.readmore_small.green {
background-color: #94c014;
}
.readmore_small.yellow {
background-color: #fdce16;
}
.readmore_small.violet {
background-color: #b67cec;
}
/*home style 1 styles*/
.section_holder1{
width:100%;
float:left;
padding:150px 0px 80px 0px;
margin:0px;
}
.section_holder1 .box{
position:relative;
width:100%;
float:left;
padding:25px;
margin:0px;
text-align:center;
border:1px solid #b9b9b9;
}
.section_holder1 .box .title_bottom_line{
width:50px;
height:4px;
padding: 0;
margin:10px auto 20px auto;
border-top:1px solid #c9c9c9;
border-bottom:1px solid #c9c9c9;
}
.section_holder1 .diamond {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid #C2C2C2;
background-color: #FFF;
margin: 0px;
padding: 0px;
left: 40px;
top: -36px;
text-align: center;
line-height: 93px;
transform: rotate(-45deg);
transform-origin: 50% 0 0px;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder1 .diamond .icon{
font-size:30px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
text-align:center;
color:#161616;
}
.section_holder1 .box a.readmore{
font: 14px 'Open Sans', sans-serif;
color:#161616;
padding:0px;
margin:0;
text-align:center;
font-weight:normal;
}
.section_holder1 .box:hover a.readmore{
color:#fdce16;
}
.section_holder1 .box:hover .diamond{
background-color:#fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder1 .box.active a.readmore{
color:#fdce16;
}
.section_holder1 .box.active .diamond{
background-color:#fdce16;
border:1px solid #fdce16;
}
/*section 2*/
.section_holder2{
width:100%;
float:left;
padding:0px;
margin:0px;
background: #fdce16 url(../images/site-img05.png) left 25px no-repeat;
}
.section_holder2 .section_title{
font-family: 'Raleway', sans-serif;
float:left;
font-size:45px;
font-weight:bold;
margin:0 0 20px 0;
padding:80px 0 0 0;
color:#161616;
text-transform:uppercase;
}
.section_holder2 .section_title_line{
width:361px;
height:3px;
float:left;
margin:0 0 40px 0;
padding:0px;
background:url(../images/section_title_line1.png) 0px 0px no-repeat;
}
.section_holder2 .img_right{
width:100%;
float:left;
margin:20px 0 0 0;
padding:0;
}
.section_holder2 .img_right img{
width:100%;
float:left;
margin:17px 0 0 0;
padding:0;
}
/*section 3*/
.section_holder3{
width:100%;
float:left;
padding:80px 0 10px 0;
margin:0px;
background: url("../images/parallax_bg1.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_title{
font-family: 'Raleway', sans-serif;
font-size:45px;
font-weight:bold;
margin:0 0 20px 0;
padding:0;
color:#fdce16;
text-align:center;
text-transform:uppercase;
}
.section_title_line{
width:360px;
height:3px;
padding:0px;
margin:0 auto 20px auto;
text-align:center;
background:url(../images/section_title_line2.png) 0px 0px no-repeat;
}
.section_title.two{
color:#161616;
}
.section_title_line.two{
background:url(../images/section_title_line3.png) 0px 0px no-repeat;
}
.section_title.three{
color:#161616;
}
.section_title_line.three{
margin:0 auto 60px auto;
background:url(../images/section_title_line4.png) 0px 0px no-repeat;
}
.section_title_line.four{
margin:0 auto 20px auto;
background:url(../images/section_title_line8.png) 0px 0px no-repeat;
}
.section_title_bottomtext{
width:60%;
padding:0px;
margin:0 auto 60px auto;
text-align:center;
}
.section_title_bottomtext.two{
color:#969696;
}
.section_title_bottomtext.three{
color:#161616;
}
.section_title_bottomtext.port{
width:46%;
margin:0 auto 60px auto;
}
.section_holder3 .title{
padding:0 0 0px 0;
color:#fff;
}
.section_holder3 .subtitle{
font-size:16px;
font-weight:600;
padding:0px;
color:#fff;
}
.section_holder3 p{
color:#868686;
padding:15px 0 0 0;
}
.section_holder3 .divider_line1{
width:100%;
height:1px;
float:left;
background-color:#4e4e4e;
padding:0px;
margin:38px 0 20px 0;
border:none;
}
.section_holder3 .icon.two{
font-size:32px;
float:left;
color:#fff;
padding:0px;
margin:0px 0 0 0;
border:none;
}
.section_holder3 .sharetitle{
font-size:16px;
float:left;
color:#fff;
font-weight:600;
padding:0px 10px 0 0;
margin:0;
text-transform:uppercase;
}
.section_holder3 ul.social_icons{
width:70%;
float:left;
margin:0px 0 0 72px;
padding:0;
}
.section_holder3 ul.social_icons li{
margin:0;
padding:0;
float:left;
}
.section_holder3 ul.social_icons li.iconbg{
width:50px;
height:50px;
background-color: #fff;
margin:0 23px 0 0;
padding:0px;
text-align:center;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder3 ul.social_icons li.iconbg i{
width:50px;
height:50px;
font-size:22px;
text-align:center;
line-height:51px;
color:#161616;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder3 ul.social_icons li.iconbg:hover{
background-color: #fdce16;
}
.section_holder3 ul.social_icons li.iconbg.active{
background-color: #fdce16;
}
.section_holder3 .project_imgbox{
width:535px;
height:405px;
float:right;
padding:15px;
margin:0px;
background-color:#fff;
}
.section_holder3 .imgbox{
width:100%;
float:left;
padding:0px;
margin:0px;
}
/*section 4*/
.section_holder4{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
}
.section_holder4 .ucd_process{
width:190px;
height:190px;
padding:0px;
margin:0 auto;
}
.section_holder4 .ucd_process .phaseimg{
width:190px;
height:190px;
padding:0px;
margin:0;
background: url(../images/site-img06.png) 0 0 no-repeat;
-webkit-transform: translate(1);
-moz-transform: translate(1);
-o-transform: translate(1);
-ms-transform: translate(1);
transform: translate(1);
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.section_holder4 .ucd_process .phaseimg.two{
background: url(../images/site-img07.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.three{
background: url(../images/site-img08.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.four{
background: url(../images/site-img09.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg:hover{
width:190px;
height:190px;
padding:0px;
margin:0;
background: url(../images/site-img10.png) 0 0 no-repeat;
-webkit-transform: translate(1em,0);
-moz-transform: translate(1em,0);
-o-transform: translate(1em,0);
-ms-transform: translate(1em,0);
transform: translate(1em,0);
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.section_holder4 .ucd_process:hover .phase_title{
color:#fdce16;
}
.section_holder4 .ucd_process .phaseimg.two:hover{
background: url(../images/site-img11.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.three:hover{
background: url(../images/site-img12.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.four:hover{
background: url(../images/site-img13.png) 0 0 no-repeat;
}
.section_holder4 . .phaseimg.four:hover{
background: url(../images/site-img13.png) 0 0 no-repeat;
}
.section_holder4 .one_fourth:hover .icon{
color:#fdce16;
border:1px solid #fdce16;
}
.section_holder4 .one_fourth:hover h4{
color:#fdce16;
}
.section_holder4 .icon{
width:185px;
height:185px;
padding:0;
font-size:65px;
text-align:center;
line-height:194px;
margin:0 auto 20px auto;
color:#161616;
border-radius:50%;
border:1px solid #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder4 .paddtop{
padding-top:20px;
}
/*section 5*/
.section_holder5{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background:url(../images/site-img14.jpg) 0 0 no-repeat;
}
.section_holder5 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #161616;
}
.section_holder5 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background: url(../images/site-img34.png) 0 0 no-repeat;
}
.section_holder5 .skill_img{
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder5 p{
color:#161616;
}
/*section 6*/
.section_holder6{
position:relative;
width:100%;
float:left;
padding:75px 0 15px 0;
margin:0px;
}
.section_holder6 .team_img_holder {
width:100%;
float:left;
padding:0px;
margin:0px;
}
.section_holder6 .team_img_frame {
position:relative;
width:252px;
height:252px;
background-color:#fff;
margin: 105px 0 0 180px;
padding:0px;
border:1px solid #d9d9d9;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder6 .team_img_frame:hover {
background-color:#fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder6 .team_img_shape {
position:absolute;
width:215px;
height:215px;
background-color:#fff;
margin:40px;
padding:0px;
left:-22px;
top:-22px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder6 .team_img {
background: url(../images/site-img19.jpg) 0px 0px;
width: 310px;
height: 310px;
margin:-45px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder6 .team_img.two {
background: url(../images/site-img18.jpg);
}
.section_holder6 .team_img.three {
background: url(../images/site-img20.jpg);
}
.section_holder6 .team_img.four {
background: url(../images/site-img21.jpg);
}
.section_holder6 .team_img.five {
background: url(../images/site-img22.jpg);
}
.section_holder6 .team_img.six {
background: url(../images/site-img23.jpg);
}
.section_holder6 ul.social_icons{
padding:0px;
margin: 19px 0px 0px 18px;
float:left;
}
.section_holder6 .social_icons li{
padding:0px;
margin:0 5px 0 0;
float:left;
display: inline;
}
.section_holder6 .social_icons li a{
width:38px;
height:38px;
padding:0px;
margin:0px;
float:left;
color:#161616;
font-size:16px;
line-height:34px;
border-radius:50%;
display: inline;
text-align:center;
border:1px solid #d9d9d9;
background-color:#fff;
}
.section_holder6 .social_icons li.one{
margin:-140px 5px 0 0;
}
.section_holder6 .social_icons li.two{
margin: -108px 5px 0px 32px;
}
.section_holder6 .social_icons li.three{
margin: -77px 5px 0px 64px;
}
.section_holder6 .member_info{
width:100%;
float:left;
text-align:center;
padding:0px;
margin:0px;
}
.section_holder6 .top_line{
width:195px;
height:5px;
border-bottom:1px solid #a2a2a2;
border-top:1px solid #a2a2a2;
padding:0px;
margin:20px auto 18px auto;
}
.section_holder6 .team_img_overley {
position:absolute;
width:215px;
height:215px;
background-color:#000;
margin: 138px 0px 0px 203px;
padding:0px;
left:-22px;
opacity:0;
top:-22px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
z-index:100;
transition: opacity 0.3s ease-in-out 0s;
}
/*hover style*/
.section_holder6 .social_icons li a:hover{
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder6 .one_third:hover h5{
color:#fdce16;
}
.section_holder6 .one_third:hover .team_img_frame{
background-color:#fdce16;
border:1px solid #fdce16;
}
.section_holder6 .one_third:hover .top_line{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
}
.section_holder6 .one_third:hover span{
color:#fdce16;
}
.section_holder6 .one_third:hover .team_img_overley{
opacity:0.7;
transition: opacity 0.3s ease-in-out 0s;
}
/*active style*/
.section_holder6 .one_third.active .team_img_overley{
opacity:0.7;
}
.section_holder6 .one_third.active .team_img_frame{
background-color:#fdce16;
border:1px solid #fdce16;
}
.section_holder6 .one_third.active h5{
color:#fdce16;
}
.section_holder6 .one_third.active span{
color:#fdce16;
}
.section_holder6 .one_third.active .top_line{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
}
.section_holder6 .one_third.active .social_icons li.two a{
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 7*/
.section_holder7{
position:relative;
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder7 .img_middle{
width:585px;
height:555px;
float:left;
padding:0;
margin:0px;
}
.section_holder7 .icon_circle{
width:125px;
height:125px;
padding:10px;
text-align:center;
margin:85px auto 20px auto;
border-radius:50%;
border:2px solid #fff;
}
.section_holder7 .icon_circle.two{
margin:200px auto 20px auto;
}
.section_holder7 .circle_inner{
width:100px;
height:100px;
padding:0;
margin:0px;
text-align:center;
border-radius:50%;
background-color:#fff;
}
.section_holder7 .circle_inner i{
padding:0;
margin:0px;
line-height:96px;
font-size:28px;
text-align:center;
color:#161616;
}
.section_holder7 p{
color:#161616;
}
.section_holder7 a.readmore_but1{
margin: 28px 0px 0px 48px;
}
.section_holder7 a.readmore_but1:hover{
color:#161616;
}
.section_holder7 .arrow_left{
position:absolute;
width:285px;
height:110px;
padding:0;
float:left;
margin:0px;
left:106px;
top:442px;
background:url(../images/site-img22.png) left top no-repeat;
z-index:5;
}
.section_holder7 .arrow_right{
position:absolute;
width:215px;
height:165px;
padding:0;
float:left;
margin:0px;
left: -33px;
top: 54px;
background:url(../images/site-img23.png) left top no-repeat;
z-index:5;
}
/*section 8*/
.section_holder8{
position:relative;
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder8 ul.ser_list{
width:100%;
padding:0px;
margin:25px 0 0 0;
float:left;
}
.section_holder8 ul.ser_list li{
padding:0px;
margin:0 0 7px 0;
float:left;
color:#727272;
}
.section_holder8 ul.ser_list li i{
margin-right:5px;
color:#fdce16;
}
.section_holder8 .readmore_but2{
margin-top:35px;
}
.section_holder8 a .services_box {
position: relative;
width: 128px;
height: 128px;
background-color: #FFF;
margin: 49px 0px 0px 0;
padding: 0px;
float: left;
text-align: center;
border: 1px solid #D9D9D9;
transform: rotate(-45deg);
transform-origin: 50% 0 0px;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder8 a .services_box.two{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box.three{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box.four{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box:hover{
background-color: #fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder8 .inner_box{
position:absolute;
width:120px;
height:120px;
margin: -58px 0px 0px -22px;
padding:0px;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder8 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#161616;
line-height:121px;
text-transform:uppercase;
}
.section_holder8 .title_subscribe i{
padding:0;
margin:0 5px 0 0;
font-size:18px;
}
.section_holder8 .input_holder{
width:100%;
padding:20px;
margin:20px 0 0 0;
font-size:22px;
float:left;
border:1px solid #d9d9d9;
}
.section_holder8 .input_holder .email_input {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #d9d9d9;
color: #999999;
float: left;
font-size: 14px;
font-weight: normal;
height:48px;
line-height: 39px;
padding: 0 7px;
width: 80%;
}
.email_submit{
padding: 12px 34px;
margin:0px 0px 0px 0px;
float:left;
height: 48px;
color:#fff;
border:1px solid #161616;
background-color:#161616;
text-transform:uppercase;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.email_submit:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.email_submit.eight{
padding: 8px 20px;
margin:0px 0px 0px 0px;
float:left;
height: 39px;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 9*/
.section_holder9{
width:100%;
float:left;
padding:75px 0 100px 0;
margin:0px;
background: url("../images/parallax_bg2.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder9 .post_img_holder {
width:100%;
float:left;
padding:0px;
margin: 0px 0 0 -45px;
}
.section_holder9 .post_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin: 252px 0px 0px 137px;
z-index:100;
background-color:#fff;
}
.section_holder9 .post_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder9 .post_img_frame {
position:relative;
width:192px;
height:192px;
background-color:#fff;
margin: 103px 0 0 180px;
padding:0px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_img_shape {
position:absolute;
width:170px;
height:170px;
background-color:#fff;
margin:40px;
padding:0px;
left:-29px;
top:-29px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder9 .post_img {
background: url(../images/site-img25.jpg);
width: 310px;
height: 310px;
margin: -26px 0 0px -73px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder9 .post_img.two {
background: url(../images/site-img24.jpg);
}
.section_holder9 .post_info_holder{
width:66%;
float:left;
padding:15px;
margin: -273px 0px 0px 191px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_info_inner{
width:100%;
float:left;
padding: 0px 0px 30px 80px;
margin:0px;
border:1px solid #d0d0d0;
}
.section_holder9 .martop{
margin:20px 0 0 0;
}
.section_holder9 .bottom_line{
width:140px;
height:5px;
border-bottom:1px solid #969696;
border-top:1px solid #969696;
float:left;
padding:0;
margin:3px 0 10px 0;
}
.section_holder9 .post_info{
width:100%;
float:left;
padding:0;
margin:0;
}
.section_holder9 .info{
font-family: 'Open Sans', sans-serif;
font-size:13px;
float:left;
color:#727272;
font-weight:normal;
padding:0;
margin:0px 5px 0 0;
}
/*hover styles*/
.section_holder9 .post_info_holder:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_info_holder:hover .post_info_inner{
border:1px solid #161616;
}
.section_holder9 .post_info_holder:hover .bottom_line{
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder9 .post_info_holder:hover .info{
color:#161616;
}
.section_holder9 .post_info_holder:hover p{
color:#161616;
}
/*active styles*/
.section_holder9 .post_info_holder.active{
background-color:#fdce16;
}
.section_holder9 .post_info_holder.active .post_info_inner{
border:1px solid #161616;
}
.section_holder9 .post_info_holder.active .bottom_line{
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder9 .post_info_holder.active .info{
color:#161616;
}
/*section 10*/
.section_holder10{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder10 .price_table{
position:relative;
width:390px;
float:left;
padding:0;
margin:0px;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder10 .price_table.active{
background-color:#fdce16;
}
.section_holder10 .price_table .top_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img27.png) center top no-repeat;
}
.section_holder10 .price_table .bottom_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img26.png) center bottom no-repeat;
}
.section_holder10 .plan_info_outer{
width:100%;
float:left;
padding:15px;
text-align:center;
margin:0px;
}
.section_holder10 .plan_info{
width:100%;
float:left;
padding:0;
text-align:center;
margin:0px;
border:1px solid #161616;
}
.section_holder10 .price_circle{
position:absolute;
width:140px;
height:140px;
font-size:40px;
padding:0;
color:#fff;
line-height:130px;
text-align:center;
margin: -41px 0px 0px 125px;
border-radius:50%;
background-color:#4f4f4f;
}
.section_holder10 .plan_info .title{
font-size:40px;
font-weight:400;
padding:0;
color:#fff;
text-align:center;
margin:60px 0 10px 0;
}
.section_holder10 .plan_info span{
font-family: 'Open Sans', sans-serif;
font-size:14px;
font-weight:normal;
padding:0;
color:#827c7c;
text-align:center;
margin:0 0 0 0;
}
.section_holder10 .plan_info .bottom_line{
width:140px;
height:4px;
padding:0;
border-bottom:1px solid #4f4f4f;
border-top:1px solid #4f4f4f;
text-align:center;
margin:18px auto 15px auto;
}
.section_holder10 .plan_info ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.section_holder10 .plan_info ul.plan_features li{
width:100%;
float:left;
color:#827c7c;
text-align:center;
padding:15px 0;
margin:0;
border-bottom:1px solid #2d2d2d;
}
.section_holder10 .plan_info .singup_but{
color:#827c7c;
text-align:center;
padding:10px 50px;
margin:40px 0 40px 100px;
float:left;
border:1px solid #2d2d2d;
}
.section_holder10 .plan_info .singup_but:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder10 .plan_info .singup_but.two{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
.section_holder10 .plan_info .singup_but.two:hover{
color:#161616;
border:1px solid #161616;
background-color:#fdce16;
}
/*active styles*/
.section_holder10 .price_table.active{
background-color:#fdce16;
}
.section_holder10 .price_table.active .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.section_holder10 .price_table.active .plan_info .title{
color:#161616;
}
.section_holder10 .price_table.active .plan_info span{
color:#161616;
}
.section_holder10 .price_table.active .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.section_holder10 .price_table.active .plan_info{
border:1px solid #fff;
}
.section_holder10 .price_table.active .price_circle{
background-color:#161616;
}
/*hover styles*/
.section_holder10 .price_table:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder10 .price_table:hover .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.section_holder10 .price_table:hover .plan_info .title{
color:#161616;
}
.section_holder10 .price_table:hover .plan_info span{
color:#161616;
}
.section_holder10 .price_table:hover .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.section_holder10 .price_table:hover .plan_info{
border:1px solid #fff;
}
.section_holder10 .price_table:hover .price_circle{
background-color:#161616;
}
/*section 11*/
.section_holder11{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background: url("../images/parallax_bg3.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
min-height: 520px;
}
.section_holder11 .clint_img_holder {
width:100%;
float:left;
padding:0px;
margin:55px 0px 0px 85px;
}
.section_holder11 .clint_img_frame {
position:relative;
width:120px;
height:120px;
background-color:#fff;
margin:0px;
padding:0px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .clint_img_shape {
position:absolute;
width:96px;
height:96px;
background-color:#fff;
margin:40px;
padding:0px;
left:-28px;
top:-28px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder11 .clint_img {
background: url(../images/site-img28.jpg);
width: 310px;
height: 310px;
margin: 16px 0px 0px -107px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder11 .clint_img.two {
background: url(../images/site-img29.jpg);
}
.section_holder11 .clint_img.three {
background: url(../images/site-img30.jpg);
}
.section_holder11 .clint_img.four {
background: url(../images/site-img31.jpg);
}
.section_holder11 .text_holder_outer{
position:relative;
width: 72%;
height:auto;
margin:-168px 0px 0px 156px;
float:left;
padding:12px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder{
width: 100%;
margin:0px;
float:left;
padding:20px 20px 20px 30px;
border:1px solid #fff;
}
.section_holder11 .text_holder span b{
font-weight:normal;
color:#fdce16;
}
/*hover styles*/
.section_holder11 .text_holder_outer:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder_outer:hover p{
color:#161616;
}
.section_holder11 .text_holder_outer:hover span{
color:#161616;
}
.section_holder11 .text_holder_outer:hover span b{
color:#161616;
}
/*active styles*/
.section_holder11 .text_holder_outer.active{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder_outer.active p{
color:#161616;
}
.section_holder11 .text_holder_outer.active span{
color:#161616;
}
.section_holder11 .text_holder_outer.active span b{
color:#161616;
}
/*section 12*/
.section_holder12{
width:100%;
float:left;
padding:75px 0 23px 0;
margin:0px;
}
.section_holder12 .title_bottom_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line5.png) 0px 0px no-repeat;
}
.section_holder12 .title_bottom_line.right{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line6.png) 0px 0px no-repeat;
}
.section_holder12 .section_title{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
}
.section_holder12 .news_img_holder {
position: relative;
width: 89%;
float: left;
padding: 0px;
margin: 0 0 13px 0;
/*overflow:hidden;*/
}
.section_holder12 .news_img_holder .hoverbox {
position:absolute;
padding:15px;
margin:0px;
float: left;
width:100%;
height:180px;
left:0px;
top:-215px;
z-index:5;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12 .news_img_holder .box_inner {
padding:0px;
margin:0px;
float: left;
width:100%;
height:100%;
border:1px solid #fff;
}
.section_holder12 .news_img_holder .box_inner a.icon{
width:32px;
height:32px;
float:left;
padding:0;
color:#161616;
line-height:32px;
text-align:center;
margin:60px 5px 0 105px;
border-radius:2px;
background-color:#fff;
}
.section_holder12 .news_img_holder .box_inner a.icon:hover{
color:#fff;
background-color:#161616;
}
.section_holder12 .news_img_holder .box_inner a.icon.last{
margin:60px 5px 0 0px;
}
.section_holder12 .news_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin:0px;
z-index:10;
left: 270px;
top: 50px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder12 .img_bottom_strip {
width: 100%;
height: 8px;
float: left;
padding: 0px;
margin: 0px;
background-color: #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .img_bottom_shape {
width: 100%;
height: 20px;
float: left;
padding: 0px;
margin: -3px 0px 0px 103px;
background: url(../images/site-img35.png) 0px 0px no-repeat;
z-index: 100;
}
.section_holder12 .news_info{
width:89%;
float:left;
font-size:13px;
padding:0 0 13px 0;
margin:0px;
}
.section_holder12 .news_info span{
color:#a7a7a7;
margin:0 5px 0 0;
}
.section_holder12 .smalltext{
width:89%;
padding:0;
margin:0;
}
/*hover styles*/
.section_holder12 .news_img_holder:hover .hoverbox {
position:absolute;
left:0px;
top:0px;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12 .news_img_holder:hover .date {
background-color:#161616;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder:hover .date span {
color:#fff;
}
.section_holder12 .news_img_holder:hover .img_bottom_strip {
background-color: #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder:hover .img_bottom_shape {
background: url(../images/site-img34.png) 0px 0px no-repeat;
}
/*home style 2 styles*/
.section_holder13{
width:100%;
float:left;
padding:40px 0px 80px 0px;
margin:0px;
}
.section_holder13 .box{
width:390px;
float:left;
padding:15px;
margin:0px;
background-color:#fdce16;
}
.section_holder13 .box.two{
background-color:#f4c40a;
}
.section_holder13 .box.three{
background-color:#f4ba0a;
}
.section_holder13 .box_inner{
width:100%;
float:left;
padding:30px;
margin:0px;
text-align:center;
border:none;
}
.section_holder13 .box_inner .icon{
font-size: 58px;
color:#fff;
margin-bottom:15px;
}
.section_holder13 .box_inner p{
color:#161616;
}
/*hover styles*/
.section_holder13 .box:hover .box_inner {
border:1px solid #fff;
padding:29px;
}
/*section 14*/
.section_holder14{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg4.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder14 .left_img{
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder14 .text_box{
width:100%;
padding:15px;
margin:0 0 15px 0;
float:left;
background-color:#fff;
}
.section_holder14 .box_inner{
width:100%;
padding:15px;
margin:0px;
float:left;
border:1px solid #fff;
}
.section_holder14 .icon_holder{
width:23%;
padding:0px;
margin:0px;
float:left;
}
.section_holder14 .icon{
width:100px;
height:100px;
border-radius:50%;
font-size:35px;
padding:15px;
margin:0px;
color:#161616;
line-height:70px;
text-align:center;
float:left;
border:1px solid #161616;
}
.section_holder14 .text{
width:77%;
padding:0px;
margin:0px;
float:right;
}
/*hover styles*/
.section_holder14 .text_box:hover{
background-color:#fdce16;
}
.section_holder14 .text_box:hover .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box:hover .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box:hover p{
color:#161616;
}
/*active styles*/
.section_holder14 .text_box.active{
background-color:#fdce16;
}
.section_holder14 .text_box.active .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box.active .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box.active p{
color:#161616;
}
.section_holder14 .readmore_but3{
margin:30px 20px 0 400px;
}
.section_holder14 .readmore_but4{
margin:30px 0 0 0;
}
/*section 15*/
.section_holder15{
width:100%;
float:left;
padding:75px 0 45px 0;
margin:0px;
}
.section_holder15 .icon_holder{
width:15%;
padding:0px;
margin:0px;
float:left;
text-align:center;
}
.section_holder15 .icon_holder .icon{
padding:5px 0 0 0;
font-size:30px;
margin:0px;
float:left;
color:#161616;
text-align:center;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .text_holder{
width:85%;
padding:0px;
margin:0px;
float:right;
}
.section_holder15 .text_holder p{
padding:0px;
margin:0px;
float:left;
}
.section_holder15 .icon_bline{
width:70%;
height:5px;
padding:0px;
margin:10px auto 0 auto;
float:left;
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder15 .one_third{
margin-bottom:30px;
}
/*hover styles*/
.section_holder15 .one_third:hover .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third:hover h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third:hover .icon_bline{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*active styles*/
.section_holder15 .one_third.active .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third.active h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third.active .icon_bline{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 16*/
.section_holder16{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background-color:#fdce16;
}
.section_holder16 .img_holder{
width:100%;
float:left;
padding:0;
margin:0px;
}
.punchtext{
width:100%;
float:left;
padding:30px 0;
margin:0px;
background-color:#161616;
}
.punchtext.two{
width:100%;
float:left;
padding:30px 0;
margin:0px;
}
.punchtext .text{
float:left;
font-size:22px;
color:#fff;
padding:0px 0;
margin:0px;
background-color:#161616;
}
.punchtext .readmore_but5{
float:right;
}
/*section 17*/
.section_holder17{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder17 .item_main{
position:relative;
float:left;
padding:0;
margin:0;
}
.section_holder17 .item_main .bottomstrip {
width:80%;
margin:-7px auto 0 auto;
height:10px;
padding:0px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .bottomshape {
width: 80px;
margin: 0px 0px 0px 158px;
float: left;
height: 29px;
padding: 0px;
background: url(../images/site-img35.png) 0px -2px no-repeat;
}
.section_holder17 .item_main .text {
font-family: 'Raleway', sans-serif;
position:absolute;
font-size:30px;
font-weight:300;
color:#fdce16;
margin: 210px 0 0 40px;
float: left;
height: 29px;
padding: 0px;
text-transform:uppercase;
}
.section_holder17 .item_main .text2 {
font-family: 'Raleway', sans-serif;
position:absolute;
font-size:30px;
font-weight:500;
color:#fff;
margin: 238px 0 0 40px;
float: left;
height: 29px;
padding: 0px;
text-align:left;
display:block;
text-transform:uppercase;
border-bottom:1px solid #fdce16;
}
.section_holder17 .item_main .hover_box {
width:396px;
position:absolute;
margin:0px;
float: left;
opacity:0;
height:300px;
padding: 30px;
background: url(../images/site-img36.png) 0px 0px repeat;
z-index:10;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main .hover_box_inner {
width:100%;
margin:0px;
float: left;
height:100%;
padding: 0px;
border:1px solid #fff;
}
.section_holder17 .item_main .hover_box_inner a.circle {
width:70px;
height:70px;
margin: 85px 10px 0px 94px;
float: left;
font-size:24px;
text-align:center;
line-height:75px;
color:#161616;
padding: 0px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .hover_box_inner a.circle:hover {
color:#fff;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .hover_box_inner .circle.last {
margin: 85px 0px 0px 0px;
}
/*hover styles*/
.section_holder17 .item_main:hover .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main:hover .bottomstrip{
opacity:1;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main:hover .bottomshape{
background: url(../images/site-img34.png) 0px -2px no-repeat;
}
/*active styles*/
.section_holder17 .item_main.active .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main.active .bottomstrip{
opacity:1;
background-color:#161616;
}
.section_holder17 .item_main.active .bottomshape{
background: url(../images/site-img34.png) 0px -2px no-repeat;
}
/*section 18*/
.section_holder18{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg5.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder18 .img_left{
width:100%;
float:left;
padding:0;
margin:0px;
}
/*section 19*/
.section_holder19{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder19.two{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
border:1px solid #e1e1e1;
}
.section_holder19 .img_holder{
position:relative;
width:272px;
height:272px;
float:left;
padding:13.2px;
text-align:center;
margin:0px;
border-radius:50%;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder19 .img_holder .img{
width:100%;
height:245px;
float:left;
padding:0px;
text-align:center;
margin:0px;
border-radius:100%;
background:url(../images/site-img198.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.two{
background:url(../images/site-img199.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.three{
background:url(../images/site-img200.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.four{
background:url(../images/site-img201.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.five{
background:url(../images/site-img202.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.six{
background:url(../images/site-img203.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.seven{
background:url(../images/site-img204.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.eight{
background:url(../images/site-img205.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.nine{
background:url(../images/site-img206.jpg) center top no-repeat;
}
.section_holder19 .img_holder .bshape{
position:absolute;
width:78px;
height:27px;
float:left;
padding:0px;
margin: 247px 0px 0px 98px;
background:url(../images/site-img58.png);
}
.section_holder19 .member_info{
width:80%;
text-align:center;
padding:10px 0 10px 0;
margin:30px auto 0 auto;
border-bottom:1px solid #969696;
border-top:1px solid #969696;
}
.section_holder19 .img_holder .hover_circle{
position:absolute;
width:245px;
height:245px;
float:left;
opacity:0;
padding:0px;
margin:0px;
border-radius:50%;
background:url(../images/site-img59.png) 0px 0px repeat;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder19 .img_holder ul.social_icon{
position:absolute;
width:100%;
float:left;
padding:0px;
margin: 0px 0px 0px 32px;
z-index:10;
}
.section_holder19 .img_holder ul.social_icon li{
float:left;
padding:0px;
margin:0x;
transition: opacity 0.1s ease-in-out 0s;
-webkit-transition: opacity .1s ease-in-out;
-moz-transition: opacity .1s ease-in-out;
-ms-transition: opacity .1s ease-in-out;
-o-transition: opacity .1s ease-in-out;
transition: opacity .1s ease-in-out;
transition: top 0.1s ease-in-out 0s;
}
.section_holder19 .img_holder ul.social_icon li.one{
position:absolute;
top:20px;
opacity: 0;
}
.section_holder19 .img_holder ul.social_icon li.two{
position:absolute;
top:20px;
opacity: 0;
left:45px;
}
.section_holder19 .img_holder ul.social_icon li.three{
position:absolute;
top:20px;
opacity: 0;
left:90px;
}
.section_holder19 .img_holder ul.social_icon li.four{
position:absolute;
top:20px;
opacity: 0;
left:135px;
}
.section_holder19 .img_holder .social_icon li a{
width:40px;
height:40px;
float:left;
font-size:18px;
padding:0px;
line-height:40px;
color:#161616;
margin:0 5px 0 0;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color:#fff;
z-index:10;
}
/*hover styles*/
.section_holder19 .img_holder .social_icon li a:hover{
background-color:#fdce16;
}
.section_holder19 .one_fourth:hover .hover_circle{
opacity:1;
transition: opacity 0.1s ease-in-out 0s;
}
.section_holder19 .one_fourth:hover .social_icon li.one{
top:106px;
opacity:1;
transition: top .3s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.two{
top:106px;
opacity:1;
transition: top .5s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.three{
top:106px;
opacity:1;
transition: top .7s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.four{
top:106px;
opacity:1;
transition: top .9s ease-in-out;
}
.section_holder19 .one_fourth:hover .img_holder{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder19 .one_fourth:hover .bshape{
background:url(../images/site-img57.png)
}
/*active styles*/
.section_holder19 .img_holder .social_icon li a.active{
background-color:#fdce16;
}
.section_holder19 .one_fourth.active .hover_circle{
opacity:1;
transition: opacity 0.1s ease-in-out 0s;
}
.section_holder19 .one_fourth.active .social_icon li.one{
top:106px;
opacity:1;
transition: top .3s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.two{
top:106px;
opacity:1;
transition: top .5s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.three{
top:106px;
opacity:1;
transition: top .7s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.four{
top:106px;
opacity:1;
transition: top .9s ease-in-out;
}
.section_holder19 .one_fourth.active .img_holder{
background-color:#fdce16;
}
.section_holder19 .one_fourth.active .bshape{
background:url(../images/site-img57.png)
}
/*section 20*/
.section_holder20{
width:100%;
float:left;
padding:75px 0 95px 0;
margin:0px;
background: url("../images/parallax_bg6.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder20 .price_table{
width:100%;
float:left;
padding:0;
margin:0px;
border-radius:2px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder20 .arrow_down {
position: absolute;
margin:0 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-top: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.section_holder20 .arrow_up {
position: absolute;
margin:-35px 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-bottom: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.section_holder20 .price_table .title{
width:100%;
font-size:30px;
font-weight:600;
padding:20px 0 20px 0;
color:#161616;
text-align:center;
margin:0px 0 10px 0;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .price_table .price {
color: #161616;
font-size: 45px;
font-weight: bold;
line-height: 45px;
text-align:center;
padding: 8px 0px 8px;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .price_table .price sup {
font-size: 22px;
font-style: normal;
}
.section_holder20 .price_table .price i {
font-size: 16px;
font-style: normal;
font-weight: 500;
}
.section_holder20 .price_table ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.section_holder20 ul.plan_features li{
width:70%;
color:#727272;
text-align:center;
padding:15px 0;
margin:0 auto;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .plan_info .singup_but{
color:#fff;
text-align:center;
padding:8px 30px;
margin: 25px 0px 25px 69px;
float:left;
border-radius:2px;
background-color:#161616;
}
.section_holder20 .plan_info .singup_but:hover{
color:#161616;
background-color:#fdce16;
}
/*hover styles*/
.section_holder20 .one_fourth:hover .price_table{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder20 .one_fourth:hover .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .singup_but{
color:#161616;
background-color:#fdce16;
}
.section_holder20 .one_fourth:hover .arrow_up{
border-bottom: 35px solid #161616;
}
.section_holder20 .one_fourth:hover .arrow_down{
border-top: 35px solid #161616;
}
/*active styles*/
.section_holder20 .one_fourth.active .price_table{
background-color:#161616;
}
.section_holder20 .one_fourth.active .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .singup_but{
color:#161616;
background-color:#fdce16;
}
.section_holder20 .one_fourth.active .arrow_up{
border-bottom: 35px solid #161616;
}
.section_holder20 .one_fourth.active .arrow_down{
border-top: 35px solid #161616;
}
/*testimonials styles*/
.section_holder12.two .clint_img{
width:44%;
float:left;
padding:0px;
margin:0px;
}
.section_holder12.two .clint_info{
position:relative;
width:56%;
float:right;
padding:0px;
margin:0px;
}
.section_holder12.two .clint_info span{
color:#fdce16;
}
.section_holder12.two .img_frame{
width:142px;
height:142px;
float:left;
padding:11px;
margin:0px;
border-radius:50%;
background-color:#161616;
}
.section_holder12.two .img{
position:absolute;
width:120px;
float:left;
padding:0px;
margin:0px;
}
.section_holder12.two .bshape{
width:40px;
height:20px;
float:left;
padding:0px;
margin: 131px 0px 0px -90px;
background:url(../images/site-img58.png) 0px 0px no-repeat;
z-index:10;
}
.section_holder12.two .bline{
width:80px;
height:5px;
float:left;
padding:0px;
margin:12px 0 0 0;
border-top:1px solid #a2a2a2;
border-bottom:1px solid #a2a2a2;
}
.section_holder12.two .smalltext{
padding:15px 0 15px 0;
}
.section_holder12.two .clint_hover_box{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
opacity:0;
border-radius:50%;
margin:0 0 0 0px;
background-color: #000;
z-index:5;
transition: opacity 0.3s ease-in-out 0s;
}
/*clint image hover styles*/
.section_holder12.two .clint_img:hover .clint_hover_box{
opacity:0.6;
background-color: #000;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img:hover .img_frame{
background-color: #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img:hover .bshape{
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
/*clint image active styles*/
.section_holder12.two .clint_img.active .clint_hover_box{
opacity:0.6;
background-color: #000;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img.active .img_frame{
background-color: #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img.active .bshape{
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
/*latest news styles*/
.section_holder12.two .news_img_holder {
position: relative;
width: 89%;
float: left;
padding: 0px;
margin: 0 0 25px 0;
/*overflow:hidden;*/
}
.section_holder12.two .news_img_holder .hoverbox {
position:absolute;
padding:15px;
margin:0px;
float: left;
width:100%;
height:176px;
left:0px;
top:-202px;
z-index:5;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12.two .news_img_holder .box_inner {
padding:0px;
margin:0px;
float: left;
width:100%;
height:100%;
border:1px solid #fff;
}
.section_holder12.two .news_img_holder .box_inner a.icon{
width:32px;
height:32px;
float:left;
padding:0;
color:#161616;
line-height:32px;
text-align:center;
margin:60px 5px 0 105px;
border-radius:2px;
background-color:#fff;
}
.section_holder12.two .news_img_holder .box_inner a.icon:hover{
color:#fff;
background-color:#161616;
}
.section_holder12.two .news_img_holder .box_inner a.icon.last{
margin:60px 5px 0 0px;
}
.section_holder12.two .news_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin:0px;
z-index:10;
left: 270px;
top: 50px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder12.two .img_bottom_strip {
width: 100%;
height: 8px;
float: left;
padding: 0px;
margin: 0px;
background-color: #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .img_bottom_shape {
width: 100%;
height: 20px;
float: left;
padding: 0px;
margin: -3px 0px 0px 103px;
background: url(../images/site-img35.png) 0px 0px no-repeat;
z-index: 100;
}
.section_holder12.two .news_info{
width:89%;
float:left;
padding:0 0 13px 0;
margin:0px;
}
.section_holder12.two .news_info span{
font-family: 'Open Sans', sans-serif;
font-size:13px;
padding:0;
color:#a7a7a7;
margin:0 5px 0 0;
}
.section_holder12.two .smalltext{
width:89%;
padding:0;
margin:0;
}
/*hover styles*/
.section_holder12.two .news_img_holder:hover .hoverbox {
position:absolute;
left:0px;
top:0px;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12.two .news_img_holder:hover .date {
background-color:#161616;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder:hover .date span {
color:#fff;
}
.section_holder12.two .news_img_holder:hover .img_bottom_strip {
background-color: #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder:hover .img_bottom_shape {
background: url(../images/site-img34.png) 0px 0px no-repeat;
}
/*section 21*/
.section_holder21{
width:100%;
float:left;
padding:50px 0 50px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder21 .smalltext{
color:#161616;
}
.section_holder21 .readmore_but6{
margin:20px 0 0 486px;
}
/*section 22*/
.section_holder22{
width:100%;
float:left;
padding:50px 0 80px 0;
margin:0px;
text-align:center;
}
.section_holder22.two{
padding:75px 0 75px 0;
}
.section_holder22 .icon{
width:240px;
height:240px;
padding:0;
font-size:93px;
text-align:center;
line-height:246px;
margin:0 auto 25px auto;
color:#161616;
border-radius:50%;
border:1px solid #c7c7c7;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder22 .one_third:hover .icon{
border:1px solid #fdce16;
background-color:#fdce16;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder22 .one_third:hover h3{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 23*/
.section_holder23{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg7.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder23 a .services_box {
width: 185px;
height: 185px;
background-color: #FFF;
margin: 77px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder23 .inner_box{
width:185px;
height:185px;
margin: -96px 0px 0px -41px;
padding:0px;
text-align:center;
border-radius:50%;
line-height:190px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder23 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#161616;
line-height:121px;
text-transform:uppercase;
}
.section_holder23 a .services_box:hover{
background-color: #161616;
border:1px solid #161616;
}
.section_holder23 a .services_box:hover .title{
color: #fff;
}
.section_holder23 a .services_box.active{
background-color: #161616;
border:1px solid #161616;
}
.section_holder23 a .services_box.active .title{
color: #fff;
}
/*section 24*/
.section_holder24{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg8.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_title_medium{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
text-transform:uppercase;
}
.title_medium_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line9.png) 0px 0px no-repeat;
}
.section_holder24 ul.circles{
width:100%;
float:left;
padding:0;
margin:30px 0 0 0;
}
.section_holder24 .circles li{
width:142px;
float:left;
color:#161616;
padding:0;
text-align:center;
margin:0 55px 0 0;
}
.section_holder24 .circles li.last{
margin:0 0 0 0;
}
.section_holder24 .circles li .circle_outer{
width:140px;
height:140px;
float:left;
padding:8.5px;
margin:0 0 15px 0;
border-radius:50%;
border:2px solid #fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_inner{
width:120px;
height:120px;
float:left;
font-size:36px;
color:#161616;
padding:0;
margin:0px;
text-align:center;
line-height:123px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .bline{
width:100%;
height:5px;
float:left;
padding:0;
margin:30px 0 30px 0;
border-top:1px solid #161616;
border-bottom:1px solid #161616;
}
.section_holder24 .readmore_but7{
margin-right:10px;
}
.section_holder24 .circles li .circle_outer:hover{
border:2px solid #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_outer:hover .circle_inner{
color:#fdce16;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_outer.active{
border:2px solid #161616;
}
.section_holder24 .circles li .circle_outer.active .circle_inner{
color:#fdce16;
background-color:#161616;
}
/*blog styles*/
.section_holder24 .blog_post{
position:relative;
width:89%;
float:left;
padding:15px;
margin:0px;
background-color:#fff;
}
.section_holder24 .blog_post_inner{
width:100%;
float:left;
padding:0px;
margin:0px;
border:1px solid #d9d9d9;
}
.section_holder24 .contbox{
width:100%;
float:left;
padding:15px;
margin:0px;
}
.section_holder24 .post_img{
width:100%;
float:left;
padding:0px;
margin:0px;
}
.section_holder24 .blog_post .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:13px;
color:#161616;
text-align:center;
padding:0px;
margin: 55px 0px 0px 169px;
z-index:100;
background-color:#fff;
}
.section_holder24 .blog_post .date span{
font-family: 'Open Sans', sans-serif;
font-size:24px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder24 .blog_post .comments{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:24px;
color:#a3a3a3;
text-align:center;
padding:0px;
margin: 130px 0px 0px 169px;
z-index:100;
background-color:#161616;
}
.section_holder24 .blog_post .comments span{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
display:block;
color:#a3a3a3;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
/*section 25*/
.section_holder25{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background:url(../images/site-img66.jpg) 0px 0px repeat-x;
}
.section_holder25 .img{
position:relative;
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder25 .title_strip{
width:80%;
height:40px;
float:left;
padding: 7px 0px 0px 0px;
text-align:center;
margin:10px 10% 15px 10%;
border-radius:30px;
border:1px solid #d9d9d9;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder25 .img_bottom_strip{
width:100%;
height:10px;
float:left;
padding:0;
margin:0;
background-color:#fdce16;
}
.section_holder25 .bottom_shape{
width:80px;
height:20px;
float:left;
padding:0;
margin: -3px 0px 0px 119px;
background:url(../images/site-img35.png) top center no-repeat;
}
.section_holder25 .hover_box{
position:absolute;
width:100%;
height:175px;
float:left;
opacity:0;
padding:15px;
margin:0px;
background:url(../images/site-img59.png) 0px 0px repeat;
z-index:10;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .hover_box .innerbox{
width:100%;
height:100%;
float:left;
padding:0;
margin:0px;
border:1px solid #fdce16;
}
/*hover styles*/
.section_holder25 .one_third:hover .hover_box {
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .one_third:hover .title_strip {
border:1px solid #fdce16;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder25 .one_third.active .hover_box {
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .one_third.active .title_strip {
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 26*/
.section_holder26{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
border-top:1px solid #e7e7e7;
}
.section_holder26 .icon{
padding:0;
font-size:64px;
text-align:center;
margin:0 auto 20px auto;
color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .readmore_but9{
margin:70px 10px 0 434px;
}
.section_holder26 .readmore_but10{
margin:70px 0 0 0;
}
/*hover styles*/
.section_holder26 .one_fourth:hover .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth:hover h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth.active .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth.active h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 27*/
.section_holder27{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg9.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder27 .left {
width: 43%;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .right {
width: 57%;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .left .img {
width:445px;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .section_title {
font-family: "Raleway",sans-serif;
font-size: 45px;
font-weight: bold;
margin: 0px 0px 20px;
text-align:left;
padding:0px 0px 0px;
color: #161616;
text-transform: uppercase;
}
.section_holder27 .section_title_line {
width: 361px;
height: 3px;
margin: 0px 0px 44px 0px;
padding: 0px;
text-align:left;
background:url(../images/section_title_line1.png) 0px 0px no-repeat;
}
.section_holder27 ul.circles{
width:100%;
float:left;
padding:0;
margin:50px 0 40px 0;
}
.section_holder27 .circles li{
float:left;
padding:0;
margin:0 17px 0 0;
}
.section_holder27 ul.circles li a{
width:110px;
height:110px;
float:left;
font-size:30px;
color:#161616;
padding:0;
margin:0px;
text-align:center;
line-height:112px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder27 ul.circles li a:hover{
color:#fdce16;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder27 ul.circles li a.active{
color:#fdce16;
background-color:#161616;
}
.section_holder27 .readmore_but8{
margin:0 10px 0 0;
}
/*section 28*/
.section_holder28{
width:100%;
float:left;
padding:115px 0 115px 0;
margin:0px;
background: url("../images/parallax_bg10.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder28 .title {
font-family: "Raleway",sans-serif;
font-size: 60px;
font-weight: 600;
margin:0px;
text-align: center;
padding:0 0 35px 0;
color: #fff;
text-transform: uppercase;
}
.section_holder28 .title span {
color: #fdce16;
}
.section_holder28 .cont {
width:60%;
margin:0 auto;
text-align: center;
padding:0px;
color: #fff;
}
.section_holder28 .readmore_but4 {
margin:40px 0 0 500px;
}
/*section 29*/
.section_holder29{
width:100%;
float:left;
padding:75px 0 20px 0;
margin:0px;
text-align:center;
background: url("../images/parallax_bg11.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder29 .image_holder{
width:13%;
padding:0px;
margin:40px auto 0 auto;
}
.section_holder29 .image_holder .clint_img{
width:100%;
padding:0px;
margin:0;
float:left;
}
.section_holder29 .image_holder .img_frame{
width:142px;
height:142px;
float:left;
padding:11px;
margin:0px;
border-radius:50%;
z-index:10;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder29 .img{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
margin:0px;
}
.section_holder29 .bshape{
width:40px;
height:20px;
float:left;
padding:0px;
margin: 132px 0px 0px -86px;
background:url(../images/site-img58.png) 0px 0px no-repeat;
z-index:10;
}
.section_holder29 .clint_hover_box{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
opacity:0;
border-radius:50%;
margin:0 0 0 0px;
background-color: #000;
z-index:100;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder29 .bline{
width:80px;
height:5px;
float:left;
padding:0px;
margin:12px 0 8px 39px;
border-top:1px solid #161616;
border-bottom:1px solid #161616;
}
.section_holder29 .name{
text-align:center;
color:#161616;
font-weight:600;
padding:0;
margin:0px;
}
.section_holder29 .comp{
text-align:center;
color:#161616;
font-size:14px;
font-weight:normal;
padding:0;
margin:0px;
}
.section_holder29 .cont{
width:80%;
text-align:center;
color:#161616;
font-weight:normal;
padding:20px 0 0 0;
margin:0 auto;
}
/*hover styles*/
.section_holder29 .image_holder:hover .clint_hover_box {
opacity:0.5;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder29 .image_holder:hover .img_frame {
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder29 .image_holder:hover .bshape{
background:url(../images/site-img58_hover.png) 0px 0px no-repeat;
}
/*section 30*/
.section_holder30{
width:100%;
float:left;
padding:0px 0 0px 0;
margin:0px;
}
.section_holder30.two{
width:100%;
float:left;
padding:60px 0 0px 0;
margin:0px;
}
.section_holder30.three{
width:100%;
float:left;
padding:25px 0 30px 0;
margin:0px;
}
.section_holder30 .section_title {
font-size: 30px;
font-weight: bold;
float: left;
color: #161616;
padding: 0px 0px 14px;
margin: 0px;
}
.section_holder30 .title_bottom_line {
width: 100%;
height: 3px;
float: left;
padding: 0px;
margin: 0px 0px 40px;
background:url(../images/section_title_line10.png) 0px 0px no-repeat;
}
.section_holder30 .clint_logo{
position:relative;
width:175px;
height:60px;
padding:0;
float:left;
margin:0px;
}
.section_holder30.three .clint_logo{
position:relative;
width:175px;
height:60px;
padding:0;
float:left;
margin:0 20px 0 0;
}
.section_holder30 .clint_logo .hover_line{
position: absolute;
width:175px;
height:60px;
padding:0;
opacity:0;
float:left;
margin:0px;
border:2px solid #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder30 .clint_logo:hover .hover_line{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
/*index4 top searchbar*/
/* search input field */
.nav_search input[type=search] {
background: #fff url(../images/search-icon.png) no-repeat 7px 10px;
border: solid 1px #d9d9d9;
padding: 5px 10px 5px 32px;
margin:18px 0 0 0;
width: 30px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
.nav_search input[type=search]:focus {
width: 130px;
background-color: #fff;
border-color: #fdce16;
/*
-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
box-shadow: 0 0 5px rgba(109,207,246,.5);*/
}
/* placeholder */
.nav_search input:-moz-placeholder {
color: #999;
}
.nav_search input::-webkit-input-placeholder {
color: #999;
}
.nav_search input[type=search] {
width: 36px;
float:right;
padding-left: 10px;
color: transparent;
cursor: pointer;
}
.nav_search input[type=search]:hover {
background-color: #fff;
}
.nav_search input[type=search]:focus {
width: 250px;
padding-left: 32px;
color: #000;
background-color: #fff;
cursor: auto;
}
.nav_search input:-moz-placeholder {
color: transparent;
}
.nav_search input::-webkit-input-placeholder {
color: transparent;
}
/*section 31*/
.section_holder31{
width:100%;
float:left;
padding:75px 0 40px 0;
margin:0px;
background: #fdce16 url(../images/site-img77.jpg) 0px 0px repeat-x;
}
.section_holder31 .img_holder{
width:100%;
float:left;
padding:15px;
margin:0px;
background-color:#FFF;
}
.section_holder31 .readmore_but5{
float:left;
color:#161616;
margin:30px 0 0 0;
}
/*section 32*/
.section_holder32{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background-color:#161616;
}
.section_holder32 a .services_box {
width: 185px;
height: 185px;
border:1px solid #414040;
margin: 77px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder32 .inner_box{
width:185px;
height:185px;
margin: -96px 0px 0px -41px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
line-height:190px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder32 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#fff;
line-height:121px;
text-transform:uppercase;
}
.section_holder32 a .services_box:hover{
background-color: #fdce16;
border:1px solid #fdce16;
}
.section_holder32 a .services_box:hover .title{
color: #161616;
}
.section_holder32 a .services_box.active{
background-color: #fdce16;
border:1px solid #fdce16;
}
.section_holder32 a .services_box.active .title{
color: #161616;
}
/*section 33*/
.section_holder33{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder33 .left{
width:36%;
float:left;
padding:0;
margin:0px;
}
.section_holder33 .right{
width:64%;
float:right;
padding:0 0 0 40px;
margin:0px;
text-align:center;
}
.section_holder33 .left .title_box {
width: 295px;
height: 295px;
background-color:#fdce16;
margin: 154px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder33 .left .inner_box{
width: 295px;
height: 295px;
margin: -148px 0px 0px -61px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder33 .left .inner_box .title{
font-size:45px;
text-align:center;
font-weight:bold;
line-height:51px;
color:#161616;
padding:75px 0 0 0;
text-transform:uppercase;
}
.section_holder33 .left .title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0px;
background:url(../images/section_title_line11.png) 20px 0px no-repeat;
}
.section_holder33 .left .cont{
width:100%;
float:left;
color:#161616;
padding:20px 0 0 0;
margin:0px;
}
/*team styles*/
.section_holder33 .right .member{
position:relative;
width:100%;
float:left;
padding:0;
margin:0 0 18px 0;
border:1px solid #d9d9d9;
}
.section_holder33 .right .member_hover{
position:absolute;
width:100%;
height:100%;
float:left;
opacity:0;
padding:0;
margin:0;
background:url(../images/site-img36.png) 0px 0px repeat;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .member_hover ul.social_icons{
width:100%;
float:left;
padding:0;
margin: 145px 0px 0px 21px;
}
.section_holder33 .right .member_hover .social_icons li{
float:left;
padding:0;
margin:0;
}
.section_holder33 .right .member_hover .social_icons li a{
width:40px;
height:40px;
float:left;
font-size:18px;
color:#161616;
line-height:40px;
padding:0;
margin:0 5px 0 0;
background-color:#fff;
}
.section_holder33 .right .member_hover .social_icons li a:hover{
color:#fff;
background-color:#161616;
}
.section_holder33 .right .member_hover .social_icons li a.active{
color:#fff;
background-color:#161616;
}
/*team hover styles*/
.section_holder33 .right .one_third:hover .member_hover{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .one_third:hover .name{
color:#fdce16;
}
.section_holder33 .right .one_third:hover .desig{
color:#fdce16;
}
/*active hover styles*/
.section_holder33 .right .one_third.active .member_hover{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .one_third.active .name{
color:#fdce16;
}
.section_holder33 .right .one_third.active .desig{
color:#fdce16;
}
/*section 34*/
.section_holder34{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: #fdce16 url(../images/site-img83.jpg) 0px 0px repeat-x;
}
.section_holder34 .img_left_holder{
width:98%;
float:left;
padding:0;
margin:20px 0 0 0;
}
.section_holder34 .text_holder_main{
width:100%;
float:left;
padding:0;
margin:0 0 40px 0;
}
.section_holder34 .text_holder_main.first{
margin:20px 0 40px 0;
}
.section_holder34 .icon_holder{
width:25%;
float:left;
padding:0;
margin:0px;
}
.section_holder34 .text_holder{
width:75%;
float:right;
padding:0;
margin:0px;
}
.section_holder34 .icon_holder .icon_box {
width: 85px;
height: 85px;
background-color:#fff;
margin:0px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder34 .icon_holder .icon_box .inner_box{
width: 85px;
height: 85px;
margin:0px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 50% 50%;
}
.section_holder34 .icon_holder .icon_box .inner_box i{
margin:0px;
padding:0px;
font-size:24px;
line-height:78px;
color:#161616;
text-align:center;
}
.section_holder34 .text_holder .title{
float:left;
font-size:20px;
font-weight:400;
color:#161616;
padding:0 0 20px 0;
margin:0px;
}
/*section 35*/
.section_holder35{
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
.onhalf_title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line12.png) 0px 0px no-repeat;
}
.onhalf_title_medium{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
text-transform:uppercase;
}
/*section 36*/
.section_holder36{
width:100%;
float:left;
padding:75px 0 30px 0;
margin:0px;
background: url("../images/parallax_bg12.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder36 .icon{
width:105px;
height:105px;
padding:0;
font-size:30px;
color:#161616;
line-height:102px;
text-align:center;
margin:0 auto;
border-radius:50%;
background-color:#fff;
}
.section_holder36 .title{
padding:20px 0 0 0;
font-size:34px;
color:#fff;
font-weight:500;
text-transform:uppercase;
text-align:center;
margin:0 auto;
}
.section_holder36 .cont{
width:60%;
padding:30px 0 0 0;
color:#b4b3b3;
text-align:center;
margin:0 auto;
}
.section_holder36 .readmore_but4{
margin: 31px 0px 0px 513px;
}
/*section 37*/
.section_holder37{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder37 .left{
width:30%;
float:left;
padding:0;
margin:0px;
text-align:center;
}
.section_holder37 .right{
width:70%;
float:right;
padding:0px;
margin:0px;
}
.section_holder37 .right .text_holder{
width:100%;
float:left;
padding:30px;
margin:0px;
border:1px solid #a2a2a2;
}
.section_holder37 .img{
position:relative;
width:145px;
height:145px;
padding:12px;
margin:0 auto 10px auto;
border-radius:50%;
background-color:#161616;
}
.section_holder37 .left .line{
width:55px;
height:5px;
padding:0px;
border-top:1px solid #a3a3a3;
border-bottom:1px solid #a3a3a3;
margin:0 auto 10px auto;
}
.section_holder37 .right .cont{
padding:0;
margin:0;
}
.section_holder37 .right .line{
width:100%;
display:block;
height:1px;
padding:0;
margin:5px 0 0 0;
border:none;
background-color:#a2a2a2;
}
.section_holder37 .img .hover_circle{
position: absolute;
width:120px;
height:120px;
float:left;
opacity:0;
padding:0px;
margin:0;
border-radius:50%;
transition: opacity 0.3s ease-in-out 0s;
background:url(../images/site-img59.png) 0px 0px repeat;
}
/*hover styles*/
.section_holder37 .left:hover .hover_circle{
opacity:0.8;
padding:0px;
margin:0;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder37 .left:hover .img{
background-color:#fdce16;
}
/*active styles*/
.section_holder37 .left.active .hover_circle{
opacity:0.8;
padding:0px;
margin:0;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder37 .left.active .img{
background-color:#fdce16;
}
/*home section 38*/
.section_holder38 {
float: left;
width: 100%;
text-align: left;
padding: 75px 0 75px 0px;
background: url("../images/parallax-bg13.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
position:relative;
min-height: 550px;
}
.section_holder38 .contitle{
text-align:center;
font-size: 47px;
font-weight: 700;
}
.section_holder38 .title_left{
font-size:40px;
font-weight:700;
padding:0px;
margin:0px;
float:left;
color:#fff;
text-transform:uppercase;
}
.section_holder38 .address{
width:45%;
padding:0px;
margin:95px 0 0 0;
float:left;
border-right:1px solid #323233;
}
.section_holder38 .address .info{
font-size:14px;
font-weight:normal;
padding:0px;
margin:0 0 20px 0;
float:left;
color:#727272;
}
.section_holder38 .address .info i{
font-size:20px;
padding:5px 10px 0 0;
margin:0px;
float:left;
color:#fff;
}
.section_holder38 .address .info.two i{
font-size:14px;
padding:5px 10px 0 0;
margin:0px;
float:left;
color:#fff;
}
.section_holder38 .newsletter_holder{
width:45%;
font-size:14px;
font-weight:normal;
padding:0px;
margin:95px 0 0 0;
float:right;
color:#727272;
}
.section_holder38 .newsletter_holder .title{
font-family: 'Open Sans', sans-serif;
font-size:16px;
font-weight:600;
padding:0px;
margin:20px 0 30px 0;
float:left;
text-transform:none;
color:#fff;
}
.section_holder38 .form_holder{
width:485px;
padding:25px;
margin:0px;
float:right;
background: url(../images/site-img112.png) 0 0 repeat;
}
.less1 {
width: 75%;
margin: 0 auto;
}
.readmore_but1:hover {
color: #2fbb6a;
}
/*shop styles*/
.shop_top_nav .right {
float: left;
width: 100%;
padding:8px 0 8px 0px;
}
.shop_top_nav .left {
float: left;
width: 40%;
font-size:13px;
padding-top:8px;
}
.shop_top_nav .left a {
font-size:13px;
color:#727272;
float:left;
padding:0 10px 0 0;
}
.shop_top_nav .left a i {
color:#fdce16;
}
.shop_top_nav .left a:hover {
color:#727272;
}
.shop_toplist li a{
padding:0 20px 0 0;
margin:0px;
font-size:13px;
text-align:left;
float:left;
color:#727272;
border:none;
}
.shop_toplist li a:hover{
color:#272727;
}
.top_search_holder{
padding:0px;
margin:-40px 0 0 0;
float:right;
}
/* shop search input field */
.shop_search input[type=search] {
background: #fff url(../images/search-icon.png) no-repeat 2px 6px;
border: solid 1px #d9d9d9;
padding: 0px 10px 0px 32px;
margin:18px 0 0 0;
width: 30px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
.shop_search input[type=search]:focus {
width: 130px;
background-color: #fff;
border-color: #fdce16;
}
/* placeholder */
.shop_search input:-moz-placeholder {
color: #999;
}
.shop_search input::-webkit-input-placeholder {
color: #999;
}
.shop_search input[type=search] {
width: 27px;
float:right;
padding-left: 10px;
color: transparent;
cursor: pointer;
}
.shop_search input[type=search]:hover {
background-color: #fff;
}
.shop_search input[type=search]:focus {
width: 260px;
padding-left: 32px;
color: #000;
background-color: #fff;
cursor: auto;
}
.shop_search input:-moz-placeholder {
color: transparent;
}
.shop_search input::-webkit-input-placeholder {
color: transparent;
}
.shop_punchtext{
width:100%;
float:left;
padding:20px 0;
margin:0px;
background-color:#fdce16;
}
.shop_punchtext .title{
float:left;
font-size:24px;
color:#161616;
font-weight:300;
padding:8px 0 0 0;
margin:0px;
}
.shop_punchtext .readmore_but8{
float:right;
}
/*shop title medium*/
.shop_title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line6.png) 0px 0px no-repeat;
}
.shop_title_medium{
font-size:22px;
font-weight:600;
float:left;
color:#161616;
padding:0 0 5px 0;
margin:0px;
text-transform:uppercase;
}
/*section 39*/
.section_holder39{
position:relative;
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
.section_holder39.two{
padding:40px 0 10px 0;
}
/*grid view*/
.pro_container {
padding:0 0 30px 0;
margin:0px;
float:left;
width:100%;
}
.pro_container ul {
padding:0px;
margin:0px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
text-align: center;
width: 22.7%;
}
.pro_container.two .grid li {
width: 28.7%;
}
.pro_container .grid li.last {
margin-right:0px;
}
.pro_container.two .grid li {
float: left;
margin: 0 35px 40px 0;
padding: 0;
width: 28.7%;
}
/*for tabbed style*/
.pro_container2 {
padding:0px;
margin:0px;
float:left;
width:100%;
}
.pro_container2 ul {
padding:0px;
margin: 48px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container2 .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
width: 22.7%;
text-align: center;
}
.pro_container2 .grid li.last {
margin-right:0px;
}
/*for tabbed style 2*/
.pro_container3 {
padding:0px;
margin:0px;
float:left;
width:100%;
}
.pro_container3 ul {
padding:0px;
margin:50px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container3 .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
width: 22.7%;
}
.pro_container3 .grid li.last {
margin-right:0px;
}
.grid li .proimage {
padding:0px;
margin:0px 0px 15px 0px;
float:left;
border: 1px solid #eaeaea;
background-color:#F30;
}
.grid li .proimage img {
width:100%;
}
.grid li .proprice{
font-size:16px;
padding:10px 0 22px 0;
margin:0px;
text-align:center;
color:#fdce16;
}
.grid li .addbut{
font-size:14px;
padding:7px 13px;
margin: 0px;
color:#161616;
border-radius:2px;
background-color:#fdce16;
}
.grid li .addbut:hover{
color:#fff;
background-color:#272727;
}
.grid li .addbut.two {
margin:0px;
}
/*list view*/
.pro_container .list li {
width: 98%;
padding:20px 0px 20px 0px;
margin:0px;
float:left;
border-bottom: 1px solid #eaeaea;
}
.pro_container .list li.last {
border-bottom: none;
}
.list li .proimage {
padding:0px;
margin:0px 20px 15px 0px;
float:left;
width:15%;
border: 1px solid #eaeaea;
}
.list li .proimage img {
width:100%;
}
.list li .proprice{
font-size:16px;
padding:0 0 22px 0;
margin:0px;
color:#fdce16;
}
.list li h4{
padding:0px 0px 15px 0px;
margin:0px;
}
.list li .addbut{
font-size:14px;
padding:7px 13px;
margin:0px;
color:#fff;
border-radius:2px;
background-color:#fdce16;
}
.list li .addbut:hover{
background-color:#272727;
}
/* view controls*/
.viewcontrols_holder{
position: absolute;
width:70px;
padding:0px;
float:right;
margin: -72px 0px 0px 1079px;
}
#viewcontrols a.grid{
margin: 0 4px 0 0px;
color:#161616;
padding:0px;
cursor:pointer;
}
#viewcontrols a.list{
color:#161616;
cursor:pointer;
}
#viewcontrols a.grid.grid-active{
color:#fdce16;
}
#viewcontrols a.list.list-active{
color:#fdce16;
}
/*section 40*/
.section_holder40{
width:100%;
float:left;
padding:100px 0 100px 0;
margin:0px;
background: url("../images/parallax-bg14.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder40 .title {
font-size: 35px;
color: #fff;
font-weight: 400;
padding: 0px;
margin: 0px 0px 0px;
}
.section_holder40 .title .strong {
font-size: 35px;
color: #fff;
font-weight: 700;
padding: 0px;
margin: 0px;
}
.section_holder40 .subtext {
width: 60%;
font-family: "Open Sans",sans-serif;
font-size: 18px;
color: #fff;
font-weight: 400;
padding: 19px 0px 0px;
float: left;
margin: 0px;
}
.section_holder40 .cont {
width: 50%;
color: #727272;
font-weight: 400;
padding: 30px 0px 0px;
float: left;
margin: 0px;
}
.section_holder40 .readmore_but4 {
margin:35px 0px 0px 0px;
float: left;
}
/*section 41*/
.section_holder41{
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
/*shop banner*/
.section_holder42 {
width:100%;
float:left;
padding:50px 0 50px 0;
margin:0px;
background: url("../images/parallax-bg15.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder42 .banner_left {
float: left;
width: 70%;
padding:40px 0 0 0;
margin:0px;
background:url(../images/shop-img41.jpg) right 60px no-repeat;
}
.section_holder42 .banner_left .img_holder {
width:330px;
height:280px;
float: left;
padding:0;
margin:0 15px 0 0;
}
.section_holder42 .banner_left .medium_text {
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
color:#fff;
float: left;
padding:0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_left .big_text {
font-family: 'Open Sans', sans-serif;
font-size:45px;
font-weight:700;
color:#fff;
float: left;
padding:30px 0 13px 0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_left .big_text span {
color:#fdce16;
}
.section_holder42 .banner_left .verysmall_text {
font-family: 'Open Sans', sans-serif;
font-size:13px;
font-weight:600;
color:#fff;
float: left;
padding:40px 0 0 0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_right {
float: right;
width: 30%;
height:360px;
padding:0;
margin:0px;
background:url(../images/site-img118.png) center center no-repeat;
}
.section_holder42 .banner_right .medium_text {
font-family: 'Open Sans', sans-serif;
font-size:18px;
font-weight:600;
color:#161616;
float: left;
padding:4px;
margin:0 0 0 78px;
background-color:#fdce16;
text-transform:uppercase;
}
.section_holder42 .banner_right .big_text {
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:700;
color:#272727;
float: left;
padding:4px;
margin: 169px 0 0 78px;
text-transform:uppercase;
background-color:#fff;
}
.section_holder42 .banner_left .more_but{
font-size:14px;
padding:7px 13px;
margin: 25px 200px 0 0px;
color:#161616;
float:left;
border-radius:2px;
display:block;
background-color:#fdce16;
}
.section_holder42 .banner_left .more_but:hover{
color:#272727;
background-color:#fff;
}
/* section 43*/
.section_holder43 {
float: left;
width: 100%;
padding:75px 0 50px 0;
margin:0px;
background-color:#fdce16;
}
.section_holder43 .title {
padding:0px;
margin:0 0 30px 0;
float:left;
font-size:35px;
font-weight:300;
color:#272727;
}
.section_holder43 .title .strong {
padding:0px;
margin:0px;
float:left;
font-size:35px;
font-weight:600;
color:#272727;
}
.section_holder43 .left {
float: left;
width: 18%;
padding:0px;
margin:0px;
}
.section_holder43 .right {
float: left;
width: 82%;
padding:0px;
margin:0px;
}
.section_holder43 .img_main {
float: left;
width: 180px;
height:180px;
padding:10px;
margin:0px;
border-radius:100%;
background-color:#fff;
}
.section_holder43 .img {
float: left;
width: 160px;
height:160px;
padding:10px;
margin:0px;
border-radius:100%;
background:url(../images/site-img119.jpg) 0 0 no-repeat;
background:-size:100%;
}
.section_holder43 .img.two {
background:url(../images/site-img119.jpg) 0 0 no-repeat;
}
.section_holder43 .right .cont {
padding-top:20px;
color:#161616;
}
.section_holder43 .right .name {
display:block;
font-size:14px;
font-weight:600;
color:#161616;
padding:30px 0 0 0;
margin:0px;
float:left;
color:#161616;
}
.section_holder43 .right .desig {
font-weight:normal;
color:#161616;
padding:0;
margin:0px;
float:left;
color:#161616;
}
/* section 44*/
.section_holder44 {
float: left;
width: 100%;
padding:75px 0 65px 0;
margin:0px;
}
.section_holder44 .title {
font-size:20px;
padding: 0px;
margin:0 0 30px 0;
float: left;
font-weight: 600;
}
.section_holder44 .holder_main {
float: left;
width: 100%;
padding:0px;
margin:0 0 20px 0;
}
.section_holder44 .left {
float: left;
width: 13%;
padding:0px;
margin:0px;
}
.section_holder44 .right {
float: left;
width: 87%;
padding:0px;
margin:0px;
}
.section_holder44 .icon {
float: left;
width:32px;
height:32px;
font-size:14px;
color:#fff;
padding:0px;
text-align:center;
line-height:30px;
margin:8px 0 0 0;
border-radius:100%;
background-color:#fdce16;
}
.section_holder44 .right .title {
font-size:16px;
font-weight:400;
color:#161616;
padding:0px;
margin:0px;
}
.section_holder44 .right .cont {
float: left;
padding:0px;
margin:0px;
}
/*shop preview fullwidth*/
/* section 45*/
.header_medium {
float: left;
width: 100%;
height:300px;
padding:0;
margin:0px;
background:url(../images/site-img120.jpg) 0px 0px no-repeat;
}
.header_medium.two{
background:url(../images/site-img126.jpg) center top no-repeat;
}
.header_medium .bigtext {
font: 14px 'Open Sans', sans-serif;
float: right;
font-size:42px;
color:#fff;
width: 100%;
padding:110px 0 0 0;
text-align:right;
font-weight:bold;
margin:0px;
}
.header_medium.two .bigtext {
font: 14px 'Open Sans', sans-serif;
float: right;
font-size:42px;
color:#fff;
padding:95px 0 0 0;
text-align:center;
font-weight:bold;
margin:0px;
text-transform:uppercase;
}
.header_medium.two .smalltext {
font: 14px 'Open Sans', sans-serif;
font-size:42px;
color:#fff;
padding:100px 0 0 0;
text-align:center;
font-weight:200;
margin:0px;
text-transform:uppercase;
}
.header_medium.two .smalltext span {
color:#fdce16;
}
.header_medium .bigtext span {
color:#fdce16;
}
/* section 46*/
.section_holder46 {
float: left;
width: 100%;
padding:25px 0 10px 0;
margin:0px;
border-bottom:1px solid #e9e9e9;
}
.pagetitle {
float: left;
width: 50%;
font-size: 30px;
text-align: left;
font-weight: normal;
color: #161616;
margin:0px;
padding: 0px;
}
.pagenation {
float: right;
width: 50%;
font-size: 14px;
text-align: right;
font-weight: normal;
color: #999;
margin: 5px 0px 0px;
padding: 0px;
}
.pagenation a {
color: #161616;
}
/* section 47 */
.section_holder47{
width:100%;
padding:75px 0 75px 0;
margin:0px;
float:left;
}
.section_holder47.two{
padding:50px 0 50px 0;
}
.product_preview_left{
width:45%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.product_info_right{
width:55%;
padding:0px 0 0px 0;
margin:0px;
float:right;
}
.product_info_right .smalltext{
padding:30px 0 30px 0;
margin:0px;
float:left;
}
.section_holder47 .product_title{
font-family: 'Raleway', sans-serif;
padding:0;
margin:0px;
float:left;
font-size:32px;
color:#272727;
font-weight:400;
}
.section_holder47 .product_title .strong{
font-weight:600;
}
.section_holder47 .line{
width:100%;
height:1px;
float:left;
padding:0px;
margin:17px 0 0 0;
background-color:#eaeaea;
}
.product_info_right .price{
font-family: 'Open Sans', sans-serif;
width:70%;
float:left;
padding:25px 0 0 0;
margin:0;
font-size:36px;
color:#fdce16;
}
.product_info_right .rating_right span.stars {
color:#e52e47;
padding: 0px 0px;
margin: 0px 0px 0px 0px;
display:block;
}
.product_info_right .rating_right{
width:30%;
float:right;
padding:25px 0 0 0;
margin:0;
font-size:14px;
color:#727272;
}
.product_info_right .rating_right span.stars i {
color:#fdce16;
font-size:16px;
margin-right:5px;
}
.product_info_right .quantity_box {
width:100px;
height:35px;
color:#272727;
font-size:16px;
}
.product_info_right .add_but {
font-size:14px;
padding:7px 13px;
margin: -33px 8px 0 20px;
color:#161616;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.product_info_right .add_but:hover {
color:#fff;
background-color:#272727;
}
.product_info_right .aproduct_id {
padding:0 0 10px 0;
margin:0px;
float:left;
font-size:14pxpx;
color:#727272;
}
.product_info_right .aproduct_id span {
padding:0 8px 0 0;
margin:0px;
float:left;
font-size:14pxpx;
color:#272727;
font-weight:400;
}
/*quantity*/
.product_quantity {
width:124px;
height:42px;
font-family:"ProximaNova Bold", Helvetica, Arial;
}
.number_minus {
width:40px;
height:40px;
border:1px solid #eaeaea;
float:left;
text-align:center;
}
.product_input {
width:40px;
height:40px;
border:1px solid #eaeaea;
border-left:0px solid black;
float:left;
}
.number_plus {
width:40px;
height:40px;
border:1px solid #eaeaea;
border-left:0px solid #eaeaea;
float:left;
text-align:center;
}
.product_input input {
width:30px;
height:34px;
padding:0;
text-align:center;
font-family:"ProximaNova Bold", Helvetica, Arial;
border: none;
}
.product_input input:focus {
border:1px solid #eaeaea;
border: none;
}
.number_minus a, .number_plus a {
display: block;
width: 100%;
height: 100%;
color:#272727;
padding-top: 5px;
}
/*social icons*/
.section_holder47 ul.social_icons{
padding:0px;
margin:0px;
float:left;
}
.section_holder47 .social_icons li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.section_holder47 .social_icons li a{
width:45px;
height:45px;
padding:0px;
margin-top:0px;
float:left;
color:#161616;
display: inline;
text-align:center;
}
.section_holder47 .social_icons li a i{
color:#161616;
font-size:18px;
line-height:45px;
}
/* section 48 */
.section_holder48{
width:100%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.section_holder48.two{
width:100%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.section_holder48 .review_img {
padding: 0px;
margin: 0px;
float: left;
width: 11%;
}
.section_holder48 .text_holder {
width: 89%;
padding: 0px;
float: right;
margin: 0px;
}
.section_holder48 .name {
width: 80%;
font-size: 16px;
color: #272727;
float: left;
font-weight: 400;
padding: 0px;
margin: 0px 0px 20px;
display: block;
}
.section_holder48 .stars {
width: 10%;
padding: 0px;
float: right;
font-size: 16px;
color: #fdce16;
margin: 0px;
}
.section_holder48 .text {
font-size: 14px;
color: #727272;
font-weight: 400;
padding: 25px;
float: left;
margin: 0px;
display: block;
border-radius: 4px;
background-color: #F3F3F3;
}
.section_holder48 .review_like {
width: 80%;
margin: 0px;
padding: 15px 0px 0px;
float: right;
text-align: right;
font-size: 14px;
color: #727272;
}
.section_holder48 .review_like a {
color: #fdce16;
}
.section_holder48 .line {
width: 100%;
padding: 0px;
margin: 45px 0px;
float: left;
height: 1px;
background-color: #EAEAEA;
}
.section_holder48 .form_title {
padding: 0px;
font-size: 20px;
font-weight: 500;
color: #fdce16;
margin: 0px;
text-transform: none;
}
/*section 49*/
.section_holder49{
width:100%;
float:left;
padding:30px 0 50px 0;
margin:0px;
}
.section_holder49.two{
width:100%;
float:left;
padding:30px 0 0px 0;
margin:0px;
}
/*section 50*/
.section_holder50{
width:100%;
float:left;
padding:0px 0 0px 0;
margin:0px;
}
.section_holder50.two{
padding:30px 0 0px 0;
}
/*preview with sidebar*/
.product_info_right.two{
width:48%;
}
.product_preview_left.two {
width: 52%;
}
.product_info_right.two .price {
width: 100%;
}
.product_info_right.two .rating_right {
width: 100%;
}
.section_holder48.two .text_holder {
width: 84%;
}
.section_holder48.two .stars {
width: 15%;
}
.pro_container2.two .grid li {
float: left;
margin: 0px 35px 40px 0px;
padding: 0px;
width: 29.7%;
}
/*product preview sidebar*/
.pro_sidebar_title {
width:100%;
font-size:18px;
padding: 0px;
float:left;
margin: 0px 0px 20px 0px;
font-weight: 500;
color: #161616;
display:block;
}
/*product sidebar search*/
.pro_sidebar_search {
width:100%;
padding: 50px 0 40px 0;
float:left;
margin:0px;
}
.pro_sidebar_search .search {
background: none repeat scroll 0px 0px #FFF;
border: 0px none;
float: left;
width: 100%;
padding:0px;
margin:0;
}
.pro_sidebar_search .search .serch_input{
border: 0px none;
color: #161616;
float: left;
font-size: 13px;
font-weight: normal;
height: 40px;
line-height: 39px;
padding: 0px 7px;
width: 70%;
border-left:1px solid #d9d9d9;
border-top:1px solid #d9d9d9;
border-bottom:1px solid #d9d9d9;
}
.pro_sidebar_search .search .search_submit {
padding: 5px 10px;
margin: 0px;
float: left;
height: 40px;
background-color:#fff;
border:1px solid #d9d9d9;
}
/*products sidebar categories*/
.categories_holder {
width:100%;
padding: 0px 0 40px 0;
float:left;
margin:0px;
}
.categories_holder ul.list {
width:100%;
padding:0;
float:left;
margin:0px;
}
.categories_holder .list li {
width:100%;
padding:0;
float:left;
margin:0px;
border-bottom:1px solid #d9d9d9;
}
.categories_holder .list li.last {
border-bottom:none;
}
.categories_holder .list li a {
color:#727272;
padding:12px 0;
float:left;
margin:0px;
}
.categories_holder .list li.first a {
padding:0px 0 12px 0;
}
.categories_holder .list li a:hover {
color:#fdce16;
}
/*products sidebar top rated products*/
.toprated_products {
width:100%;
padding: 0px 0 40px 0;
float:left;
margin:0px;
}
.product_holder {
width:100%;
padding:0;
float:left;
margin:0 0 20px 0;
}
.product_holder.last {
margin:0 0 0px 0;
}
.toprated_products .left {
width:32%;
padding:0;
float:left;
margin:0px;
}
.toprated_products .left .img {
width:80px;
height:80px;
padding:0;
float:left;
margin:0px;
border:1px solid #d9d9d9;
}
.toprated_products .right {
width:68%;
padding:0;
float:right;
margin:0px;
}
.toprated_products .right .title {
color:#161616;
padding:0 0 10px 0;
font-size:15px;
font-weight:normal;
float:left;
margin:0px;
}
.toprated_products .right .stars {
width: 100%;
padding: 0px;
margin: 0px;
float:left;
}
.toprated_products .right .stars i {
padding: 0 5px 0 0;
font-size: 16px;
color: #FDCE16;
margin: 0px;
}
.toprated_products .right .price {
padding: 0px;
margin: 0px;
color:#161616;
float:left;
}
/*hover styles*/
.product_holder:hover .img{
border:1px solid #fdce16;
}
.product_holder:hover .title{
color:#fdce16;
}
/*active styles*/
.product_holder.active .img{
border:1px solid #fdce16;
}
.product_holder.active .title{
color:#fdce16;
}
/* product tags */
.products_tags {
width:100%;
padding:0;
float:left;
margin:0px;
}
.products_tags ul.tags{
width:100%;
padding:0;
float:left;
margin:0px;
}
.products_tags .tags li{
padding:0;
float:left;
margin:0px;
}
.products_tags .tags li a {
float: left;
padding: 5px 12px;
margin: 0 6px 6px 0;
color: #161616;
background-color: #fdce16;
border-radius: 2px;
}
.products_tags .tags li a:hover {
color: #fff;
background-color: #161616;
}
/*sidebar latest posts*/
.sidebar_latest_posts {
width:100%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder {
width:100%;
padding:0;
float:left;
margin:0 0 30px 0;
}
.sidebar_latest_posts .post_holder .left {
width:32%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder .left .img {
width:80px;
padding:0;
float:left;
margin:0px;
border:1px solid #d9d9d9;
}
.sidebar_latest_posts .post_holder .right {
width:68%;
padding:0;
float:right;
margin:0px;
}
.sidebar_latest_posts .post_holder .right .info {
width:100%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder .right .info span {
color:#727272;
padding:0 8px 0 0;
font-size:13px;
}
/*sidebar latest posts hover styles*/
.sidebar_latest_posts .post_holder:hover .img {
border:1px solid #fdce16;
}
.sidebar_latest_posts .post_holder:hover h6 {
color:#fdce16;
}
/*active styles*/
.sidebar_latest_posts .post_holder.active .img {
border:1px solid #fdce16;
}
.sidebar_latest_posts .post_holder.active h6 {
color:#fdce16;
}
/*sidebar featured works*/
.sidebar_featured_works{
width:100%;
padding:25px 0 0 0;
float:left;
margin:0px;
}
.sidebar_featured_works ul.works {
width:100%;
padding:0;
float:left;
margin:0;
}
.sidebar_featured_works ul.works li {
padding:0;
float:left;
margin:0;
}
.sidebar_featured_works .works li a {
width:65px;
padding:0;
float:left;
margin:0 6px 6px 0;
}
.sidebar_featured_works .works li a:hover {
opacity:0.8;
}
/* section 52 */
.section_holder52{
width:100%;
padding:60px 0 0 0px;
margin:0px;
float:left;
}
.section_holder52 .post_img{
position:relative;
width:100%;
padding:0;
margin:0px;
float:left;
}
.section_holder52 .img{
width:96%;
padding:0;
margin:0px;
float:right;
}
.section_holder52 .bottom_strip{
width:96%;
height:14px;
padding:0;
margin:0px;
float:right;
background-color:#fdce16;
}
.section_holder52 .bottom_shape{
width:80px;
height:27px;
padding:0;
margin: -10px 0px 0px 379px;
float:left;
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
.section_holder52 .post_img .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:13px;
color:#161616;
text-align:center;
padding:0px;
margin: 83px 0px 0px -32px;
z-index:100;
background-color:#fdce16;
}
.section_holder52 .post_img .date span{
font-family: 'Open Sans', sans-serif;
font-size:24px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder52 .post_img .comments{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:24px;
color:#a3a3a3;
text-align:center;
padding:0px;
margin: 158px 0px 0px -32px;
z-index:100;
background-color:#161616;
}
.section_holder52 .post_img .comments span{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
display:block;
color:#a3a3a3;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder52 .post_text{
width:96%;
padding:0;
margin:0px;
float:right;
}
.section_holder52 .post_text .toppadd{
padding-top:15px;
}
.section_holder52 .post_text .divider_line{
width:100%;
height:1px;
border:none;
padding:0;
margin:50px 0 50px 0;
float:left;
background-color:#e7e7e7;
}
.section_holder52 .comment_info{
width:100%;
padding:20px;
margin:0 0 20px 0;
float:left;
border:1px solid #e7e7e7;
}
.section_holder52 .comment_info .left{
width:20%;
padding:0px;
margin:0;
float:left;
}
.section_holder52 .comment_info .right{
width:80%;
padding:0px;
margin:0;
text-align:left;
float:right;
}
.section_holder52 .comment_info .left .img{
width:130px;
height:135px;
padding:0px;
margin:0;
float:left;
border:1px solid #fff;
}
.section_holder52 .comment_info .right .name{
width:80%;
float:left;
}
.section_holder52 .comment_info .right .date{
width:20%;
color:#fdce16;
text-align:right;
float:right;
}
.section_holder52 .comment_info .right a.more{
font-size:14px;
color:#fdce16;
font-weight:500;
padding:5px 0 0 0;
margin:0;
float:left;
text-decoration:underline;
}
.section_holder52 .comment_title{
font-size:26px;
color:#161616;
font-weight:600;
padding:40px 0 30px 0;
margin:0;
float:left;
}
.section_holder52 .comment_info .right a.readmore{
font-size:14px;
color:#161616;
font-weight:normal;
padding:5px 15px;
margin:15px 0 0 0;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.section_holder52 .comment_info .right a.readmore:hover{
color:#fff;
background-color:#161616;
}
.section_holder52 .comment_info.two{
width:81%;
margin:0 0 20px 0;
float:right;
}
.section_holder52 .comment_info.two .right {
width: 76%;
}
.section_holder52 .form_title {
padding:40px 0 0px 0;
font-size: 26px;
font-weight: 600;
color: #161616;
margin: 0px;
text-transform: none;
}
.section_holder52 a.loadmore_but{
width:100%;
font-size:16px;
color:#161616;
font-weight:600;
padding:20px 15px;
margin:40px 0 40px 0;
text-align:center;
float:left;
border-radius:2px;
text-transform:uppercase;
background-color:#fdce16;
}
.section_holder52 a.loadmore_but:hover{
color:#fff;
background-color:#161616;
}
/*hover styles*/
.section_holder52 .comment_info:hover{
border:1px solid #fdce16;
}
.section_holder52 .comment_info:hover .name{
color:#fdce16;
}
/*sidebar social icons*/
.sidebar_social_icons{
width:100%;
padding:0px;
margin:25px 0 0 0;
float:left;
}
.sidebar_social_icons ul.social_icons{
padding:0px;
margin:0px;
float:left;
}
.sidebar_social_icons .social_icons li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.sidebar_social_icons .social_icons li a{
width:45px;
height:45px;
padding:0px;
margin:0px;
float:left;
color:#161616;
display: inline;
text-align:center;
background-color:#fff;
border:1px solid #d9d9d9;
}
.sidebar_social_icons .social_icons li a:hover{
background-color:#fdce16;
border:1px solid #fdce16;
}
.sidebar_social_icons .social_icons li a i{
color:#161616;
font-size:18px;
line-height:45px;
}
/*section 53*/
.section_holder53{
width:100%;
padding:0px;
margin:60px 0 60px 0;
float:left;
}
.section_holder53 .post_holder{
width:96%;
padding:0px;
margin:0px;
float:right;
}
.section_holder53 .post_img{
position:relative;
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder53 .post_holder .bottom_strip {
width: 100%;
height: 14px;
padding: 0px;
margin: 0px 0px 0px 0px;
float: right;
background-color: #FDCE16;
}
.section_holder53 .bottom_shape {
width: 80px;
height: 27px;
padding: 0px;
margin: -10px 0px 0px 492px;
float: left;
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
.section_holder53 .post_holder a h2:hover {
color: #fdce16;
}
.section_holder53 .post_holder .date {
font-family: "Open Sans",sans-serif;
position: absolute;
width:100px;
height: 100px;
font-size: 16px;
color: #161616;
text-align: center;
padding: 0px;
margin: 128px 0px 0px -40px;
z-index: 100;
background-color: #FDCE16;
}
.section_holder53 .post_holder .date span {
font-family: "Open Sans",sans-serif;
font-size: 40px;
font-weight: 600;
display: block;
color: #161616;
text-align: center;
padding: 25px 0px 10px 0px;
margin: 0px;
}
.section_holder53 .post_holder .comments {
font-family: "Open Sans",sans-serif;
position: absolute;
width:100px;
height:100px;
font-size: 40px;
color: #A3A3A3;
text-align: center;
padding: 0px;
margin: 228px 0px 0px -40px;
z-index: 100;
background-color: #161616;
}
.section_holder53 .post_holder .comments span {
font-family: "Open Sans",sans-serif;
font-size: 30px;
font-weight: 600;
display: block;
color: #A3A3A3;
text-align: center;
padding: 12px 0px 10px 0px;
margin: 0px;
}
.section_holder53 .post_holder .readmore_but12 {
margin: 35px 0 0 0;
float:left;
}
.section_holder53 .divider_line {
width:95%;
height:1px;
margin:40px 0;
padding:0px;
border:none;
float:right;
background-color:#e7e7e7;
}
/*post hover box*/
.section_holder53 .post_img .hover_box{
position:absolute;
width:100%;
height:100%;
padding:30px;
margin:0px;
float:left;
opacity:0;
transition: opacity 0.3s ease-in-out 0s;
background:url(../images/site-img59.png) 0px 0px repeat;
}
.section_holder53 .post_img .hover_box .box_inner{
width:100%;
height:100%;
padding:0px;
margin:0px;
float:left;
border:1px solid #fdce16;
}
.section_holder53 .post_img .hover_box .box_inner .icon{
width:70px;
height:70px;
padding:0px;
margin:200px 10px 0 442px;
float:left;
font-size:24px;
color:#161616;
text-align:center;
line-height:65px;
border-radius:2px;
background-color:#fff;
}
.section_holder53 .post_img .hover_box .box_inner .icon.last{
margin:200px 10px 0 0;
}
.section_holder53 .post_img .hover_box .box_inner .icon:hover{
background-color:#fdce16;
}
/*hover styles*/
.section_holder53 .post_img:hover .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder53 .video_frame iframe {
float: right;
width: 100%;
height: 550px;
margin: 0px;
}
.section_holder53 .double_line {
float:right;
width:95%;
height:5px;
margin:50px 0 0 0;
border-top:1px solid #e7e7e7;
border-bottom:1px solid #e7e7e7;
}
/*bottom pagenation*/
.pagenation_bottom {
float:right;
width:95%;
height:5px;
margin:0;
}
.pagenation_bottom a.next_prv {
float:left;
margin:0 30px 0 0;
color:#161616;
font-size:14px;
padding:15px 0 0 0;
}
.pagenation_bottom a.next_prv i {
color:#fdce16;
}
.pagenation_bottom a.next_prv:hover {
color:#fdce16;
}
.pagenation_bottom ul.page_number {
width:40%;
float:right;
margin:0;
padding:0;
}
.pagenation_bottom ul.page_number li {
float:right;
margin:0;
padding:0;
}
.pagenation_bottom .page_number li a {
width:23px;
height:23px;
float:right;
text-align:center;
color:#161616;
margin:15px 5px 0 0;
padding:0;
background-color:#fff;
}
.pagenation_bottom .page_number li a:hover {
background-color:#fdce16;
}
.pagenation_bottom .page_number li a.active {
background-color:#fdce16;
}
/*blog 3columns*/
.section_holder53.two {
padding: 30px 0 30px 0;
}
.section_holder53.two .post_holder .date {
width:72px;
height: 72px;
font-size: 13px;
text-align: center;
padding: 0px;
margin: 96px 0px 0px -25px;
}
.section_holder53.two .post_holder .date span {
font-size: 24px;
padding: 13px 0px 0px;
}
.section_holder53.two .post_holder .comments {
width:72px;
height:72px;
font-size: 24px;
text-align: center;
margin: 168px 0px 0px -25px;
}
.section_holder53.two .post_holder .comments span {
font-size: 18px;
padding: 12px 0px 0px 0px;
}
.section_holder53.two .bottom_shape {
margin: -10px 0px 0px 109px;
}
.section_holder53.two .post_holder{
width:92%;
border:1px solid #d9d9d9;
}
.section_holder53.two .post_img .hover_box {
height: 100%;
padding:22px;
}
.section_holder53.two .post_holder .text_holder{
width:100%;
padding:0px;
margin:0px;
float:left;
padding: 22px 30px 30px 30px;
}
.section_holder53.two .post_img .hover_box .box_inner .icon{
width:40px;
height:40px;
margin:117px 10px 0px 88px;
font-size:14px;
line-height:40px;
}
.section_holder53.two .post_img .hover_box .box_inner .icon.last{
margin:117px 10px 0 0;
}
/*blog standard*/
.section_holder53.three {
padding: 0px 0 30px 0;
}
.section_holder53.three .post_holder .date {
width:72px;
height: 72px;
font-size: 13px;
text-align: center;
padding: 0px;
margin: 96px 0px 0px -25px;
}
.section_holder53.three .post_holder .date span {
font-size: 24px;
padding: 13px 0px 0px;
}
.section_holder53.three .post_holder .comments {
width:72px;
height:72px;
font-size: 24px;
text-align: center;
margin: 168px 0px 0px -25px;
}
.section_holder53.three .post_holder .comments span {
font-size: 18px;
padding: 12px 0px 0px 0px;
}
.section_holder53.three .bottom_shape {
margin: -10px 0px 0px 362px;
}
.section_holder53.three .post_holder{
width:97%;
border:none;
}
.section_holder53.three .post_img .hover_box {
height: 100%;
padding:22px;
}
.section_holder53.three .post_img .hover_box .box_inner .icon{
width:40px;
height:40px;
margin: 147px 10px 0px 330px;
font-size:14px;
line-height:40px;
}
.section_holder53.three .post_img .hover_box .box_inner .icon.last{
margin:147px 10px 0 0;
}
.section_holder53.three .divider_line {
width: 97%;
}
.section_holder53.three .video_frame iframe {
float: right;
width: 100%;
height:380px;
margin: 0px;
}
/*inner portfolio pages styles*/
/*section54*/
.section_holder54{
width:100%;
padding:60px 0 75px 0;
float:left;
margin:0px;
}
.section_holder54 .title_medium{
font-size:20px;
padding:0 0 25px 0;
font-weight:600;
margin:0px;
float:left;
}
.section_holder54 .title_medium.two{
padding:40px 0 25px 0;
}
.section_holder54 .cont{
padding:0;
margin:0px;
float:left;
}
.section_holder54 a.add_but{
font-size:14px;
padding:10px 30px;
font-weight:normal;
color:#161616;
margin:30px 0 0 0;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.section_holder54 a.add_but i{
font-size:14px;
color:#fff;
padding-right:8px;
}
.section_holder54 a.add_but:hover{
color:#fff;
background-color:#161616;
}
.section_holder54 .project_info{
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder54 .project_info span{
width:100%;
padding:10px 0;
margin:0px;
float:left;
border-bottom:1px solid #d9d9d9;
}
.section_holder54 .project_info span.last{
border-bottom:none;
}
.section_holder54 .project_info span .left{
width:40%;
padding:0px;
margin:0px;
float:left;
}
.section_holder54 .project_info span .left span{
padding:0px;
margin:0px;
border-bottom:none;
float:left;
}
.section_holder54 .project_info span .right{
width:60%;
padding:0px;
margin:0px;
float:right;
}
.section_holder54 .project_info span .right span{
padding:0px;
margin:0px;
border-bottom:none;
float:left;
}
/*tags*/
.section_holder54 .project_info span .right ul.tags {
width: 100%;
padding: 0px;
float: left;
margin: 0px;
}
.section_holder54 .project_info span .right .tags li {
padding: 0px;
float: left;
margin: 0px;
}
.section_holder54 .project_info span .right .tags li a {
float: left;
padding: 5px 12px;
margin: 0px 6px 6px 0px;
color: #161616;
background-color: #FDCE16;
border-radius: 2px;
}
.section_holder54 .project_info span .right .tags li a:hover {
color: #fff;
background-color: #161616;
}
/*section55*/
.section_holder55{
width:100%;
padding:60px 0 75px 0;
float:left;
text-align:center;
margin:0px;
}
/*inner about page*/
/*section56*/
.section_holder56{
width:100%;
padding:75px 0 75px 0;
float:left;
margin:0px;
}
.section_holder56 .img_left{
width:100%;
padding:0;
float:left;
margin:0px;
}
.section_holder56 .subtitle {
color: #5c5c5c;
}
/*section 57*/
.section_holder57{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg8.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder57.two{
padding:75px 0 75px 0;
}
.section_holder57 .box{
width:100%;
padding:45px;
margin:0;
text-align:center;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box .icon{
width:105px;
height:105px;
padding:0;
font-size:30px;
text-align:center;
line-height:108px;
margin:0 auto 15px auto;
color:#161616;
border-radius:100%;
border:1px solid #c7c7c7;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .line{
width:50px;
height:5px;
margin:0 auto 20px auto;
border-top:1px solid #d9d9d9;
border-bottom:1px solid #d9d9d9;
}
/*box hover */
.section_holder57 .box:hover{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box:hover .icon{
color:#fff;
}
.section_holder57 .box:hover h5{
color:#fff;
}
/*box active */
.section_holder57 .box.active{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box.active .icon{
color:#fff;
}
.section_holder57 .box.active h5{
color:#fff;
}
/*section 58*/
.section_holder58{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder58 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder58 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background: url(../images/site-img35.png) 0 0 no-repeat;
}
.section_holder58 .img{
width:100%;
float:left;
padding:0;
margin:0px;
}
/*services page*/
/*section 59*/
.section_holder59{
width:100%;
float:left;
padding:75px 0 65px 0;
margin:0px;
background: url("../images/parallax_bg9.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder59 .left {
width: 43%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .right {
width: 57%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .left .img {
width: 100%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .right .title {
font-family: "Raleway",sans-serif;
font-size: 45px;
font-weight: bold;
margin:0px;
text-align: left;
padding: 0 0 40px 0;
color: #161616;
text-transform: uppercase;
}
.section_holder59 .right ul.list {
width:100%;
float:left;
margin:40px 0 0 0;
padding: 0px;
}
.section_holder59 .right ul.list li {
float:left;
color:#161616;
font-size:14px;
line-height:35px;
margin:0px;
padding: 0px;
}
.section_holder59 .readmore_but1 {
margin:15px 0 0 80px;
}
.section_holder59 .readmore_but1:hover {
color:#161616;
}
/*subscribe*/
/*section 60*/
.section_holder60{
width:100%;
float:left;
padding: 50px 0px 16px 0px;
margin:0px;
background-color:#161616;
}
.section_holder60 .title {
text-transform:uppercase;
color:#fff;
}
.section_holder60 .title b {
text-transform:none;
color:#727272;
}
.section_holder60 .email_input {
background: none repeat scroll 0 0 #292929;
border: 1px solid #4f4f4f;
color: #747474;
float: left;
font-size: 14px;
font-weight: normal;
height:60px;
line-height: 39px;
padding: 15px;
width: 80%;
}
.section_holder60 .email_submit{
padding: 12px 34px;
margin:0px 0px 0px 0px;
float:left;
height: 60px;
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
text-transform:uppercase;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder60 .email_submit:hover{
color:#161616;
border:1px solid #fff;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder60 .email_submit.eight{
padding: 8px 20px;
margin:0px 0px 0px 0px;
float:left;
height: 39px;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 61*/
.section_holder61{
width:100%;
float:left;
padding:75px 0 20px 0;
margin:0px;
}
.section_holder61.two{
padding:75px 0 75px 0;
}
.section_holder61 .img{
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder61 .img:hover{
opacity:0.9;
}
.section_holder61 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder61 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder61 .subtitle {
color: #5C5C5C;
}
.clintlogo_topline {
width:100%;
height:1px;
margin: 0;
padding:0px;
border:none;
float:left;
background-color:#e7e7e7;
}
/*team page styles*/
/*section 62*/
.section_holder62{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder62 .left{
width:50%;
float:left;
padding:0;
text-align:center;
margin:0px;
}
.section_holder62 .right{
width:50%;
float:right;
padding:0;
text-align:center;
margin:0px;
}
.section_holder62 .member_img{
width:440px;
padding:0;
margin:0 auto;
}
.section_holder62 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder62 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder62 .cont {
width:75%;
margin:0 auto;
}
.section_holder62 ul.social_icons {
width:100%;
padding:0px;
margin:25px 0 0 175px;
float:left;
}
.section_holder62 ul.social_icons li {
padding:0px;
margin:0px;
float:left;
}
.section_holder62 ul.social_icons li a {
width:40px;
height:40px;
color:#161616;
padding:0px;
margin:0 5px 0 0;
font-size:16px;
line-height:36px;
float:left;
text-align:center;
border:1px solid #d9d9d9;
border-radius:100%;
}
.section_holder62 ul.social_icons li a:hover {
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder62 ul.social_icons li a.active {
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*hover styles*/
.section_holder62 .left:hover h2, .section_holder62 .left:hover b{
color:#fdce16;
}
.section_holder62 .right:hover h2, .section_holder62 .right:hover b{
color:#fdce16;
}
.section_holder62 .left.active h2, .section_holder62 .left.active b{
color:#fdce16;
}
/*section 63*/
.section_holder63{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
border:1px solid #e1e1e1;
}
/*section 64*/
.section_holder64{
width:100%;
float:left;
padding:60px 0 60px 0;
margin:0px;
}
.punchline_text_box {
width:100%;
float: left;
padding: 25px 30px;
margin: 15px 0 30px 0;
border-width: 1px 1px 1px 5px;
border-style: solid;
border-color: #EEE #EEE #EEE #fdce16;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
border-image: none;
color: #999;
}
a.knowmore_but {
float: right;
padding: 13px 20px;
margin: 0px 0px 0px 50px;
font-size: 14px;
color: #161616;
font-weight: 600;
background-color: #fdce16;
border-radius: 3px;
}
a.knowmore_but:hover {
color: #fff;
background-color: #161616;
}
.punchline_text_box .left {
float: left;
width: 70%;
}
.punchline_text_box .right {
float: left;
width: 30%;
}
/*404 error page*/
/*section 65*/
.section_holder65{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder65 .title{
font-size:60px;
padding:30px 0 20px 0;
font-weight:400;
margin:0px;
line-height: 65px;
}
.error_search_holder{
width:100%;
float:left;
padding:75px 0 90px 0;
margin:0px;
text-align:center;
}
.error_search_holder .search_box{
width:60%;
height:55px;
padding:0;
margin:0 auto 50px auto;
border:1px solid #d9d9d9;
text-align:center;
}
.error_search_holder .search_box .serch_input{
border: 0px none;
color: #161616;
float: left;
font-size: 16px;
font-weight: normal;
height: 53px;
line-height: 39px;
padding: 0px 15px;
width: 94%;
}
.error_search_holder .search_box .search_submit {
padding:15px;
margin: 11px 0px 0px 0px;
float: left;
width:20px;
height: 20px;
text-align:center;
background:url(../images/site-img166.png) 4px 4px no-repeat;
border:none;
}
.error_search_holder a.but {
font-size:16px;
color:#161616;
font-weight:600;
padding:20px 40px;
margin:0px;
background-color:#fdce16;
}
.error_search_holder a.but:hover {
color:#fff;
background-color:#161616;
}
/*contact styles*/
/*section 66*/
.section_holder66{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder66.two{
width:100%;
float:left;
padding:35px 0 10px 0;
margin:0px;
}
.address_info {
float: left;
background-color: #fff;
border: 1px solid #d9d9d9;
padding: 20px 20px 10px;
width: 100%;
margin-bottom: 40px;
}
.address_info.two {
float: left;
background-color: #fff;
border: none;
padding: 20px 20px 10px;
width: 100%;
margin-bottom: 40px;
}
.address_info a {
color:#fdce16;
}
.address_info a:hover {
color:#161616;
}
.google-map {
width: 100%;
padding:20px;
height: 300px;
border: 1px solid #d9d9d9;
}
.google-map.two {
width: 100%;
padding:0px;
height: 350px;
border:none;
}
.section_holder66 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: -7px 0 0 0;
float: left;
background-color: #FDCE16;
}
.section_holder66 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder66 .bottom_shape.two {
margin: -6px 0px 0px 320px;
}
/*section 67*/
.section_holder67{
width:100%;
float:left;
padding:40px 0 80px 0;
margin:0px;
}
/*section 68*/
.section_holder68{
width:100%;
float:left;
padding:40px 0 40px 0;
margin:0px;
}
/*footer*/
.footer{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background-color:#161616;
}
.footer_logo{
width:140px;
height:40px;
float:left;
padding:0;
margin:0 0 30px 0;
}
.footer .address{
font-family: 'Open Sans', sans-serif;
font-size:14px;
color:#666666;
float:left;
padding:0 0 15px 0;
margin:0px;
}
.footer .title{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
color:#fff;
float:left;
padding:0 0 15px 0;
margin:0px;
}
.footer .title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 30px 0;
background:url(../images/section_title_line7.png) 0px 0px no-repeat;
}
.footer .recent_posts{
float: left;
width: 100%;
padding:15px 0px 15px 0px;
margin:0px;
border-bottom:1px solid #2e2e2e;
}
.footer .recent_posts.first{
padding:0px 0px 15px 0px;
}
.footer .recent_posts.last{
border-bottom:none;
}
.footer .recent_posts:hover .post .title a{
color:#fdce16;
}
.footer .recent_posts:hover .imgholder{
width:64px;
height:64px;
border:2px solid #fdce16;
}
.footer .recent_posts.active .post .title a{
color:#fdce16;
}
.footer .recent_posts.active .imgholder{
width:64px;
height:64px;
border:2px solid #fdce16;
}
.footer .recent_posts .img{
width:30%;
padding:0px;
margin:0;
float:left;
}
.footer .recent_posts .imgholder{
width:64px;
height:64px;
padding:0px;
margin:0;
float:left;
border:2px solid #161616;
}
.footer .recent_posts .post{
width:70%;
padding:0px;
margin:0px;
float:right;
}
.footer .recent_posts .post .title{
font-size:14px;
color:#fff;
padding:0px;
margin:0px;
float:left;
}
.footer .recent_posts .post .title a{
color:#fff;
}
.footer .recent_posts .post .smalltext{
padding:0;
margin:0px;
float:left;
}
.footer .recent_posts .post .info{
color: #666666;
font-size: 13px;
margin: 0 5px 0 0;
padding:0px;
float:left;
}
/*hover styles*/
.footer ul.recent_posts li:hover .imgholder .line{
opacity:1;
}
.footer ul.recent_posts li:hover a.title{
color:#fdce16;
}
/*active styles*/
.footer ul.recent_posts li.active .imgholder .line{
opacity:1;
}
.footer ul.recent_posts li.active a.title{
color:#fdce16;
}
/* Tags */
.footer ul.tags{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer ul.tags li{
margin:0;
float:left;
padding:0px;
}
.footer ul.tags li a{
font-size:14px;
font-weight:normal;
margin:6px 6px 0 0;
float:left;
padding:4px 12px;
color:#666666;
border:1px solid #383838;
}
.footer ul.tags li a:hover{
color:#fdce16;
border:1px solid #fdce16;
}
.footer ul.tags li a.active{
color:#fdce16;
border:1px solid #fdce16;
}
/* flickr */
#flickr_badge_wrapper {
padding: 0px;
margin: 0px;
width: 100%;
}
#flickr_badge_wrapper img {
width: 70px;
height: 70px;
margin-right: 8px;
margin-bottom: 8px;
border: 0px solid #999 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
#flickr_badge_wrapper img:hover {
border: 2px solid #fdce16 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
#flickr_www {
display:block;
padding:0 10px 0 10px !important;
}
#flickr_badge_uber_wrapper a:hover,
#flickr_badge_uber_wrapper a:link,
#flickr_badge_uber_wrapper a:active,
#flickr_badge_uber_wrapper a:visited {
text-decoration:none !important;
background:inherit !important;
color:#3993ff;
}
#flickr_badge_wrapper {
margin-top: 25px;
}
#flickr_badge_source {
padding:0 !important;
}
/* divider line */
.footer .divider_line{
width:100%;
height:1px;
margin:30px 0 30px 0;
float:left;
padding:0px;
background-color:#2e2e2e;
}
/* social icons */
.footer .social_icons_holder{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons li{
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons li a{
width:50px;
height:50px;
font-size:20px;
text-align:center;
margin:0 15px 0 0;
line-height:50px;
color:#fff;
float:left;
padding:0px;
background-color:#161616;
border:1px solid #454545;
}
.footer .social_icons_holder ul.social_icons li a.last{
margin:0 0px 0 0;
}
.footer .social_icons_holder ul.social_icons li a:hover{
color:#161616;
background-color:#fdce16;
border:1px solid #fdce16;
}
.footer .social_icons_holder ul.social_icons li a.active{
color:#161616;
background-color:#fdce16;
border:1px solid #fdce16;
}
.footer .quick_links_holder{
width:100%;
height:50px;
margin:0 auto;
float:left;
padding:15px 30px 0 30px;
border-right:1px solid #2e2e2e;
border-left:1px solid #2e2e2e;
}
.footer ul.quick_links{
width:100%;
margin:0;
float:left;
padding:0;
}
.footer ul.quick_links li{
margin:0;
float:left;
padding:0;
}
.footer ul.quick_links li a{
color:#666;
margin:0;
float:left;
padding:0 15px 0 0;
}
.footer ul.quick_links li a.last{
padding:0 0 0 0;
}
.footer ul.quick_links li a:hover{
color:#fdce16;
}
/*newletter*/
.footer .email_input {
background: none repeat scroll 0 0 #FFFFFF;
border: 0 none;
color: #999999;
float: left;
font-size: 13px;
font-weight: normal;
height: 39px;
line-height: 39px;
padding: 0 7px;
width: 70%;
}
.footer .email_submit{
padding:0 10px 0 10px;
margin:0px;
float:left;
height: 39px;
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.email_submit.eight{
border:1px solid #fdce16;
background-color:#fdce16;
color:#161616;
}
.newsletter .email_input {
background: none repeat scroll 0px 0px #FFF;
border: 0px none;
color: #999;
float: left;
font-size: 13px;
font-weight: 600;
height: 39px;
line-height: 39px;
padding: 0px 7px;
width: 60%;
}
/*copyright*/
.copyrights{
width:100%;
height:85px;
font-size:14px;
color:#858585;
margin:0;
float:left;
padding:26px 0 0 0;
background-color:#2e2e2e;
}
/* scroll up */
.scrollup{
width:40px;
height:40px;
opacity:1;
position:fixed;
bottom:22px;
right:20px;
display:none;
text-indent:-9999px;
background:#fdce16 url(../images/scroll-top-arrow.png) no-repeat 15px 16px;
z-index: 999;
}
/*------------------*/
/* element styles
/*------------------------------------------------------*/
/*------------------*/
/*image hovers */
/*------------------------------------------------------*/
/*style1*/
.img_ho_st_holder {
position:relative;
width:100%;
padding:20px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
}
.img_ho_st_title {
font: 24px 'Open Sans', sans-serif;
padding:0 0 20px 0;
display:block;
width:100%;
margin:0px;
font-weight:300;
color:#161616;
float:left;
}
.img_ho_st1 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st1 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:0px;
z-index:10;
background-color: #119ee7;
transition: left .3s ease-in-out;
}
.img_ho_st1 .text.red {
background-color: #fc4242;
}
.img_ho_st1 .text.green {
background-color: #3fc35f;
}
.img_ho_st1 .text.violet {
background-color: #b460e4;
}
.img_ho_st1 .imgbox {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:0px;
z-index:100;
transition: top .3s ease-in-out;
}
.img_ho_st1 .text .title {
color:#fff;
margin:15px 0 0 19px;
}
.img_ho_st1 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st1 .text a {
color:#FFF;
margin:15px 15px 0 19px;
}
.img_ho_st1 .text a:hover {
color:#161616;
}
.img_ho_st1:hover .imgbox {
position: absolute;
top:220px;
transition: top .3s ease-in-out;
}
/*style 2*/
.img_ho_st2 {
opacity:1;
width:100%;
height:220px;
margin:0px;
position: relative;
left:0px;
top:0px;
margin:0px;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.img_ho_st2 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st2 .text {
position:absolute;
background: #000;
width:100%;
height:220px;
text-align: center;
color: #fff;
top:0;
left:0;
opacity: 0;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.img_ho_st2 .text:hover {
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img112.png) left top repeat;
}
.img_ho_st2 .text a.hov_circle {
position: absolute;
width:50px;
height:50px;
left:63px;
top:0px;
padding:0px;
margin:0px;
background-color:#119ee7;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
overflow:hidden;
transition-property: background-color, color;
transition: top .3s ease-in-out;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle:hover, .img_ho_st2 .text a.hov_circle.two:hover {
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle:hover i, .img_ho_st2 .text a.hov_circle.two:hover i {
color:#272727;
transition-property:color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle.two {
left:118px;
top:0px;
transition: top .5s ease-in-out;
background-color:#8dba13;
}
.img_ho_st2 .text a.hov_circle i {
color:#fff;
font-size:20px;
text-align:center;
line-height:50px;
}
.img_ho_st2 .text:hover .hov_circle {
transition: top .3s ease-in-out;
left:63px;
top:95px;
}
.img_ho_st2 .text:hover .hov_circle.two {
transition: top .5s ease-in-out;
left:118px;
top:95px;
}
/*style 3*/
.img_ho_st3 {
opacity:1;
width:100%;
height:220px;
margin:0px;
position: relative;
left:0px;
top:0px;
margin:0px;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.img_ho_st3 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st3 .text {
width:100%;
height:220px;
position:absolute;
background: #000;
color: #fff;
top:0;
left:0;
opacity: 0;
overflow:hidden;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.img_ho_st3 .text:hover {
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img112.png) left top repeat;
}
.img_ho_st3 .text h3 {
position:absolute;
color:#fff;
font-size:16px;
font-weight:600;
left:5px;
top:220px;
margin:15px 0 0 19px;
transition: top .4s ease-in-out;
}
.img_ho_st3 .text p {
position:absolute;
color:#fff;
font-size:14px;
font-weight:normal;
left:5px;
line-height:18px;
top:255px;
text-align:left;
margin:15px 0 0 19px;
transition: top .6s ease-in-out;
}
.img_ho_st3 .text a {
position:absolute;
font-weight:normal;
left:0px;
top:320px;
text-align:left;
margin:0px 0 0 19px;
transition: top .7s ease-in-out;
overflow:hidden;
}
.img_ho_st3 .text:hover h3 {
position:absolute;
left:5px;
top:20px;
transition: top .4s ease-in-out;
}
.img_ho_st3 .text:hover p {
position:absolute;
left:5px;
top:50px;
transition: top .6s ease-in-out;
}
.img_ho_st3 .text:hover a {
position:absolute;
left:0px;
top:136px;
transition: top .7s ease-in-out;
}
/*style 4*/
.img_ho_st4 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st4 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st4 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:165px;
z-index:100;
background: url(../images/site-img175.png) left top repeat;
transition: top .3s ease-in-out;
}
.img_ho_st4 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st4 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st4 .text a {
margin:8px 15px 0 19px;
}
.img_ho_st4:hover .text {
position: absolute;
top:20px;
transition: top .3s ease-in-out;
}
.imghover_sec4 .container{
border-top:1px solid #e1e1e1;
padding-top:50px;
}
/*style 5*/
.img_ho_st5 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st5 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st5 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:-270px;
top:0px;
z-index:100;
transition: left .5s ease-in-out;
background: url(../images/site-img175.png) left top repeat;
}
.img_ho_st5 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st5 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st5 .text a {
margin:8px 15px 0 19px;
}
.img_ho_st5:hover .text {
position: absolute;
left:0px;
transition: left .5s ease-in-out;
}
/*style 6*/
.img_ho_st6 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st6 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st6 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:220px;
z-index:100;
transition: top .3s ease-in-out;
background: url(../images/site-img175.png) left top repeat;
}
.img_ho_st6 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st6 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st6 .text a.readmore_small {
margin:10px 0px 0 18px;
padding:4px 15px;
}
.img_ho_st6 .text a.readmore_small.green {
margin:10px 0px 0 5px;
}
.img_ho_st6:hover .text {
position: absolute;
top:170px;
transition: top .3s ease-in-out;
}
/*------------------*/
/*button styles */
/*------------------------------------------------------*/
a.but_st1 {
padding: 0px;
margin: 0px 10px 10px 0px;
float: left;
border-radius: 2px;
color: #FFF;
text-transform:uppercase;
text-decoration: none;
background-color:#fdce16;
}
/*large styles*/
a.but_st1.large{
font-size:20px;
padding:20px 50px;
}
a.but_st1.large.yellow{
background-color:#fdce16;
}
a.but_st1.large.yellow:hover{
background-color:#161616;
}
a.but_st1.large.red{
background-color:#fc4242;
}
a.but_st1.large.red:hover{
background-color:#161616;
}
a.but_st1.large.blue{
background-color:#13bfff;
}
a.but_st1.large.blue:hover{
background-color:#161616;
}
a.but_st1.large.lightgreen{
background-color:#a5d549;
}
a.but_st1.large.lightgreen:hover{
background-color:#161616;
}
a.but_st1.large.violet{
background-color:#c762cb;
}
a.but_st1.large.violet:hover{
background-color:#161616;
}
a.but_st1.large.green{
background-color:#3fc35f;
}
a.but_st1.large.green:hover{
background-color:#161616;
}
a.but_st1.large.pink{
background-color:#fc5eac;
}
a.but_st1.large.pink:hover{
background-color:#161616;
}
a.but_st1.large.orange{
background-color:#ff9d12;
}
a.but_st1.large.orange:hover{
background-color:#161616;
}
/*large stroke styles*/
a.but_st1.large{
font-size:20px;
padding:20px 50px;
}
a.but_st1.large.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.large.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.large.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.large.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.large.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.large.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.large.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.large.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.large.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.large.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.large.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.large.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.large.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.large.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.large.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.large.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*buttons medium styles*/
/*medium styles*/
a.but_st1.medium{
font-size:16px;
padding:15px 35px;
}
a.but_st1.medium.yellow{
background-color:#fdce16;
}
a.but_st1.medium.yellow:hover{
background-color:#161616;
}
a.but_st1.medium.red{
background-color:#fc4242;
}
a.but_st1.medium.red:hover{
background-color:#161616;
}
a.but_st1.medium.blue{
background-color:#13bfff;
}
a.but_st1.medium.blue:hover{
background-color:#161616;
}
a.but_st1.medium.lightgreen{
background-color:#a5d549;
}
a.but_st1.medium.lightgreen:hover{
background-color:#161616;
}
a.but_st1.medium.violet{
background-color:#c762cb;
}
a.but_st1.medium.violet:hover{
background-color:#161616;
}
a.but_st1.medium.green{
background-color:#3fc35f;
}
a.but_st1.medium.green:hover{
background-color:#161616;
}
a.but_st1.medium.pink{
background-color:#fc5eac;
}
a.but_st1.medium.pink:hover{
background-color:#161616;
}
a.but_st1.medium.orange{
background-color:#ff9d12;
}
a.but_st1.medium.orange:hover{
background-color:#161616;
}
/*medium stroke styles*/
a.but_st1.medium.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.medium.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.medium.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.medium.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.medium.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.medium.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.medium.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.medium.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.medium.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.medium.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.medium.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.medium.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.medium.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.medium.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.medium.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.medium.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*buttons small styles*/
/*button small styles*/
a.but_st1.small{
font-size:14px;
padding:11px 20px;
}
a.but_st1.small.yellow{
background-color:#fdce16;
}
a.but_st1.small.yellow:hover{
background-color:#161616;
}
a.but_st1.small.red{
background-color:#fc4242;
}
a.but_st1.small.red:hover{
background-color:#161616;
}
a.but_st1.small.blue{
background-color:#13bfff;
}
a.but_st1.small.blue:hover{
background-color:#161616;
}
a.but_st1.small.lightgreen{
background-color:#a5d549;
}
a.but_st1.small.lightgreen:hover{
background-color:#161616;
}
a.but_st1.small.violet{
background-color:#c762cb;
}
a.but_st1.small.violet:hover{
background-color:#161616;
}
a.but_st1.small.green{
background-color:#3fc35f;
}
a.but_st1.small.green:hover{
background-color:#161616;
}
a.but_st1.small.pink{
background-color:#fc5eac;
}
a.but_st1.small.pink:hover{
background-color:#161616;
}
a.but_st1.small.orange{
background-color:#ff9d12;
}
a.but_st1.small.orange:hover{
background-color:#161616;
}
/*small button stroke styles*/
a.but_st1.small.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.small.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.small.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.small.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.small.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.small.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.small.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.small.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.small.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.small.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.small.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.small.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.small.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.small.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.small.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.small.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*Full width button styles*/
a.but_fullwidth {
padding: 0px;
margin: 10px 0px 0px;
float: left;
width: 100%;
height: 65px;
text-align: center;
line-height: 67px;
font-size: 18px;
border-radius: 4px;
color: #FFF;
font-weight: 500;
text-transform:uppercase;
background-color:#a5d549;
}
a.but_fullwidth:hover {
color:#fff;
background-color:#161616;
}
a.but_fullwidth.two{
background-color:#c762cb;
}
a.but_fullwidth.two:hover {
color:#fff;
background-color:#161616;
}
a.but_fullwidth.three{
background-color:#13bfff;
}
a.but_fullwidth.three:hover {
color:#fff;
background-color:#161616;
}
/*------------------*/
/*Call to Action */
/*------------------------------------------------------*/
.call_to_action{
width:100%;
float:left;
border:1px solid #e7e7e7;
border-radius:4px;
padding: 25px 25px;
margin:0 0 15px 0;
}
.call_to_action .left{
padding:0px;
margin:0px;
float:left;
width:82%;
}
.call_to_action .right{
width:18%;
padding:0px;
margin:0px;
float:right;
}
.call_to_action a.but_st1.small, .call_to_action a.but_st1.medium, .call_to_action a.but_st1.large{
float:right;
}
.call_to_action a.but_st1.small{
margin-top:10px;
}
.call_to_action a.but_st1.medium{
margin-top:10px;
}
.call_to_action p{
width:100%;
text-align:left;
}
.call_to_action span.title_big{
width:100%;
text-align:left;
padding:0px;
margin:0px;
line-height:45px;
font-size:24px;
color:#119ee7;
}
.call_to_action span.title_big.two{
font-size:18px;
line-height:0px;
}
.call_to_action span.title_big.three{
font-size:18px;
line-height:0px;
color:#272727;
}
.call_to_action span.title_big.four{
font-size:34px;
line-height:50px;
color:#272727;
}
.call_to_action span.title_big.three strong{
color:#fc4242;
}
/*------------------*/
/*list styles */
/*------------------------------------------------------*/
/*lists style 1*/
.list_st1{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st1 .icon{
width:32px;
height:32px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:32px;
color:#fff;
border-radius:100%;
background-color:#119ee7;
}
.list_st1 .text{
padding: 5px 0 0 42px;
margin:0px;
display:block;
}
<!--list style 2-->
.list_st1.two{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st1.two .icon{
width:32px;
height:32px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:32px;
color:#119ee7;
border-radius:100%;
border:1px solid #119ee7;
background-color:#fff;
}
.list_st1.two .text{
padding: 0px 0 0 42px;
margin:0px;
display:block;
}
/*list style3*/
.list_st3{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st3 .icon{
width:18px;
height:18px;
padding:0px;
margin:3px 0px 0px 0px;
float:left;
font-size:12px;
text-align:center;
line-height:15px;
color:#119ee7;
border-radius:100%;
border:1px solid #119ee7;
}
.list_st3 .text{
padding: 0px 0 0 28px;
margin:0px;
display:block;
}
/*list style 4*/
ol.list_st4 {
list-style-type: none;
list-style-type: decimal !ie; /*IE 7- hack*/
margin: 0;
margin-left: 18px;
padding: 0;
counter-reset: li-counter;
}
ol.list_st4 li{
position: relative;
margin: 0px;
padding-left: 20px;
min-height: 3em;
list-style-type:none;
}
ol.list_st4 li:before {
position: absolute;
top: 0;
left: -15px;
width: 28px;
height: 28px;
font-size: 14px;
line-height: 30px;
text-align: center;
color: #f5f5f5;
border-radius: 50%;
background-color: #464646;
content: counter(li-counter);
counter-increment: li-counter;
}
/*list style 5*/
.list_st5{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st5.two{
padding:0px 0px 10px 0px;
border-bottom:1px solid #d1d1d1;
}
.list_st5.two.last{
padding:0px 0px 10px 0px;
border-bottom:none;
}
.list_st5 .icon{
width:40px;
height:40px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:39px;
color:#fff;
border-radius:100%;
}
.list_st5 .text{
padding: 5px 0 0 42px;
margin:0px;
display:block;
}
.list_st5 .icon.red{
background-color:#fc4242;
}
.list_st5 .icon.blue{
background-color:#2f92ee;
}
.list_st5 .icon.green{
background-color:#3fc35f;
}
.list_st5 .icon.violet{
background-color:#b659fe;
}
.list_st5 .icon.orange{
background-color:#ff881e;
}
/*------------------*/
/*message boxes */
/*------------------------------------------------------*/
/*message boxes*/
.messagebox_title{
padding-bottom:30px;
}
.info-box{
background-color:#34b0ff;
}
.success-box{
background-color:#7ebd24;
}
.error-box{
background-color:#fa482b;
}
.download-box {
background-color:#F30;
}
.warning-box {
background-color:#f7c929;
}
.mboxes_close{
width:15px;
height:15px;
padding:0px;
margin:0px;
float:right;
text-align:right;
}
.mboxes_close i{
color:#fff;
font-size:16px;
font-weight:500;
}
.success-box,.error-box, .warning-box, .info-box span{
color:#fff;
font-size:16px;
font-weight:400;
}
.success-box,.error-box, .warning-box, .info-box{
padding:20px;
margin-bottom:30px;
border-radius:4px;
}
/*------------------*/
/*pricing tables */
/*------------------------------------------------------*/
/*pricing style 1*/
.price_table_st1{
width:100%;
float:left;
padding:0;
margin:0px;
border-radius:2px;
background-color:#fff;
border:1px solid #d9d9d9;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st1_arrow_down {
position: absolute;
margin:0 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-top: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.price_table_st1_arrow_up {
position: absolute;
margin:-35px 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-bottom: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.price_table_st1 .title{
width:100%;
font-size:30px;
font-weight:600;
padding:20px 0 20px 0;
color:#161616;
text-align:center;
margin:0px 0 10px 0;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .price {
color: #161616;
font-size: 45px;
font-weight: bold;
line-height: 45px;
text-align:center;
padding: 8px 0px 8px;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .price sup {
font-size: 22px;
font-style: normal;
}
.price_table_st1 .price i {
font-size: 16px;
font-style: normal;
font-weight: 500;
}
.price_table_st1 ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.price_table_st1 ul.plan_features li{
width:70%;
color:#727272;
text-align:center;
padding:15px 0;
margin:0 auto;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .plan_info .singup_but{
color:#fff;
text-align:center;
padding:8px 30px;
margin: 25px 0px 25px 69px;
float:left;
border-radius:2px;
background-color:#161616;
}
.price_table_st1 .plan_info .singup_but:hover{
color:#161616;
background-color:#fdce16;
}
/*hover styles*/
.price_table_st1:hover{
background-color:#161616;
border:none;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st1:hover .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .singup_but{
color:#161616;
background-color:#fdce16;
}
.price_table_st1:hover .price_table_st1_arrow_up{
border-bottom: 35px solid #161616;
}
.price_table_st1:hover .price_table_st1_arrow_down{
border-top: 35px solid #161616;
}
/*active styles*/
.price_table_st1.active{
background-color:#161616;
border:none;
}
.price_table_st1.active .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .singup_but{
color:#161616;
background-color:#fdce16;
}
.price_table_st1.active .price_table_st1_arrow_up{
border-bottom: 35px solid #161616;
}
.price_table_st1.active .price_table_st1_arrow_down{
border-top: 35px solid #161616;
}
/*pricing style 2*/
.price_table_st2{
position:relative;
width:390px;
float:left;
padding:0;
margin:0px;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st2.active{
background-color:#fdce16;
}
.price_table_st2 .top_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img27.png) center top no-repeat;
}
.price_table_st2 .bottom_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img26.png) center bottom no-repeat;
}
.price_table_st2 .plan_info_outer{
width:100%;
float:left;
padding:15px;
text-align:center;
margin:0px;
}
.price_table_st2 .plan_info{
width:100%;
float:left;
padding:0;
text-align:center;
margin:0px;
border:1px solid #161616;
}
.price_table_st2 .price_circle{
position:absolute;
width:140px;
height:140px;
font-size:40px;
padding:0;
color:#fff;
line-height:130px;
text-align:center;
margin: -41px 0px 0px 125px;
border-radius:50%;
background-color:#4f4f4f;
}
.price_table_st2 .plan_info .title{
font-size:40px;
font-weight:400;
padding:0;
color:#fff;
text-align:center;
margin:60px 0 10px 0;
}
.price_table_st2 .plan_info span{
font-family: 'Open Sans', sans-serif;
font-size:14px;
font-weight:normal;
padding:0;
color:#827c7c;
text-align:center;
margin:0 0 0 0;
}
.price_table_st2 .plan_info .bottom_line{
width:140px;
height:4px;
padding:0;
border-bottom:1px solid #4f4f4f;
border-top:1px solid #4f4f4f;
text-align:center;
margin:18px auto 15px auto;
}
.price_table_st2 .plan_info ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.price_table_st2 .plan_info ul.plan_features li{
width:100%;
float:left;
color:#827c7c;
text-align:center;
padding:15px 0;
margin:0;
border-bottom:1px solid #2d2d2d;
}
.price_table_st2 .plan_info .singup_but{
color:#827c7c;
text-align:center;
padding:10px 50px;
margin:40px 0 40px 100px;
float:left;
border:1px solid #2d2d2d;
}
.price_table_st2 .plan_info .singup_but:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.price_table_st2 .plan_info .singup_but.two{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
.price_table_st2 .plan_info .singup_but.two:hover{
color:#161616;
border:1px solid #161616;
background-color:#fdce16;
}
/*active styles*/
.price_table_st2.active{
background-color:#fdce16;
}
.price_table_st2.active .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.price_table_st2.active .plan_info .title{
color:#161616;
}
.price_table_st2.active .plan_info span{
color:#161616;
}
.price_table_st2.active .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.price_table_st2.active .plan_info{
border:1px solid #fff;
}
.price_table_st2.active .price_circle{
background-color:#161616;
}
/*hover styles*/
.price_table_st2:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st2:hover .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.price_table_st2:hover .plan_info .title{
color:#161616;
}
.price_table_st2:hover .plan_info span{
color:#161616;
}
.price_table_st2:hover .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.price_table_st2:hover .plan_info{
border:1px solid #fff;
}
.price_table_st2:hover .price_circle{
background-color:#161616;
}
/*Typography */
/*dropcaps*/
.highlit {
font-size: 14px;
font-weight: 400;
line-height: 10px;
padding: 0px;
color:#fff;
background-color:#119ee7;
}
.highlit2{
color:#fff;
background-color:#a7d02b;
}
.highlit3 {
color:#fff;
background-color:#fc4242;
}
/*------------------*/
/*content boxes */
/*------------------------------------------------------*/
.contbox_st1 {
width: 100%;
float: left;
padding: 25px;
margin: 0px;
border-radius: 2px;
border: 1px solid #E1E1E1;
}
.marbottom{
margin-bottom:30px;
}
.contbox_st1:hover img {
opacity:0.8;
}
/*------------------*/
/*data tables */
/*------------------------------------------------------*/
/* tables */
.table-style {
float: left;
width: 100%;
tab
}
.table-list {
padding: 0; border-spacing: 0;
float: left;
background-color: #fff;
border: 1px solid #dddddd;
margin-bottom:20px;
width: 100%;
}
.table-list th {
padding: 18px 10px;
color:#161616;
font-weight:400;
font-size:16px;
text-align:center;
background-color: #fdce16;
}
.table-list td {
padding: 13px 10px;
text-align: center;
background-color: #f5f5f5;
}
/*
.table-list tr {
border-bottom: 1px solid #e1e1e1;
}*/
.table-list td.hilit {
padding: 13px 10px;
text-align: center;
background-color: #fff;
}
/*table style 2*/
.table-style {
float: left;
width: 100%;
}
.table-list2 {
float: left;
background-color: #fff;
margin-bottom:20px;
width: 100%;
}
.table-list2 th {
padding: 18px 10px;
color:#fff;
font-weight:400;
font-size:16px;
text-align:center;
background-color: #272727;
}
.table-list2 td {
padding: 13px 10px;
text-align: center;
background-color: #f5f5f5;
border:1px solid #e1e1e1;
}
.table-list2 tr {
border-bottom: 1px solid #e1e1e1;
}
.table-list2 td.hilit {
padding: 13px 10px;
text-align: center;
background-color: #fff;
}
.table-list2 tr:hover td {
background-color: #FC0;
color:#fff;
}
/*------------------*/
/*social icon styles */
/*------------------------------------------------------*/
ul.social_icon_st1{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st1 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st1 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
background-color:#fdce16;
}
ul.social_icon_st1 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 2*/
ul.social_icon_st2{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st2 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st2 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
border:1px solid #d9d9d9;
background-color:#fff;
}
ul.social_icon_st2 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 3*/
ul.social_icon_st3{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st3 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st3 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#fff;
line-height:39px;
float:left;
border-radius:100%;
background-color:#fc4242;
}
ul.social_icon_st3 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 4*/
ul.social_icon_st4{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st4 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st4 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
border-radius:100%;
background-color:#fff;
border:1px solid #d9d9d9;
}
ul.social_icon_st4 li a:hover{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
/*style5*/
ul.social_icon_st5{
padding:0px;
margin:0px;
float:left;
}
.social_icon_st5 li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.social_icon_st5 li a{
width:45px;
height:45px;
padding:0px;
float:left;
color:#fff;
margin:0 0 5px 0;
font-size:18px;
line-height:43px;
display: inline;
text-align:center;
background-color:#119ee7;
}
.social_icon_st5 li a i{
color:#fff;
font-size:16px;
line-height:30px;
}
.social_icon_st5 li a.twitter{
background-color:#46c0ff;
}
.social_icon_st5 li a.twitter:hover{
background-color:#272727;
}
.social_icon_st5 li a.facebook{
background-color:#2e68be;
}
.social_icon_st5 li a.facebook:hover{
background-color:#272727;
}
.social_icon_st5 li a.googleplus{
background-color:#e74a35;
}
.social_icon_st5 li a.googleplus:hover{
background-color:#272727;
}
.social_icon_st5 li a.in{
background-color:#097fc3;
}
.social_icon_st5 li a.in:hover{
background-color:#272727;
}
.social_icon_st5 li a.dribble{
background-color:#f44193;
}
.social_icon_st5 li a.dribble:hover{
background-color:#272727;
}
/*style6*/
ul.social_icon_st6{
padding:0px;
margin:0px;
float:left;
}
.social_icon_st6 li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.social_icon_st6 li a{
width:45px;
height:45px;
padding:0px;
margin:0 0 5px 0;
float:left;
color:#fff;
font-size:18px;
line-height:43px;
display: inline;
text-align:center;
border-radius:100%;
background-color:#119ee7;
}
.social_icon_st6 li a i{
color:#fff;
font-size:16px;
line-height:30px;
}
.social_icon_st6 li a.twitter{
background-color:#46c0ff;
}
.social_icon_st6 li a.twitter:hover{
background-color:#272727;
}
.social_icon_st6 li a.facebook{
background-color:#2e68be;
}
.social_icon_st6 li a.facebook:hover{
background-color:#272727;
}
.social_icon_st6 li a.googleplus{
background-color:#e74a35;
}
.social_icon_st6 li a.googleplus:hover{
background-color:#272727;
}
.social_icon_st6 li a.in{
background-color:#097fc3;
}
.social_icon_st6 li a.in:hover{
background-color:#272727;
}
.social_icon_st6 li a.dribble{
background-color:#f44193;
}
.social_icon_st6 li a.dribble:hover{
background-color:#272727;
}
/*------------------*/
/*icon boxes */
/*------------------------------------------------------*/
/*icon boxes*/
.icon_boxes_st1{
width:100%;
padding:15px;
margin:0px;
float:left;
text-align:center;
border-radius:4px;
border:1px solid #e1e1e1;
}
.icon_boxes_st1 i{
background-color: #fdce16;
border: 1px solid #fdce16;
border-radius: 100%;
color: #161616;
font-size: 40px;
height: 100px;
line-height: 105px;
margin-bottom: 20px;
text-align: center;
vertical-align: middle;
width: 100px;
}
.icon_boxes_st1 .icon_box_title1{
padding:0px;
margin:0px;
color:#272727;
font-size:20px;
margin-bottom:10px;
}
/*icon boxes style2 */
.icon_boxes_st2{
width:100%;
padding:15px;
margin:0px;
float:left;
text-align:center;
}
.icon_boxes_st2.two{
background: none;
}
.icon_boxes_st2 i{
color: #161616;
font-size: 35px;
line-height: 105px;
margin:0px;
text-align: center;
vertical-align: middle;
}
.icon_boxes_st2 .icon_box_title1{
padding:0px;
margin:0px;
color:#272727;
font-weight:400;
font-size:24px;
text-transform:none;
margin-bottom:10px;
}
/*icon boxes style 3*/
ul.icon_boxes_st3 {
float: left;
width: 100%;
padding: 0px;
margin:0px;
list-style-type:none;
}
.icon_boxes_st3 li {
padding: 0px;
margin: 0px;
}
.icon_boxes_st3 li p {
margin-bottom: 20px;
}
.icon_boxes_st3 li.icon {
float: left;
width:16%;
color:#ff9f07;
font-size: 35px;
padding: 0px;
margin: 0px;
line-height:80px;
}
.icon_boxes_st3 li.cont {
float: left;
width:84%;
padding: 0px;
margin: 0px;
}
/*icon boxes style 5*/
.icon_boxes_st5{
margin:0px;
float:left;
width:100%;
text-align:center;
}
.icon_boxes_st5 i{
background-color: #119ee7;
border: 1px solid #119ee7;
border-radius: 100%;
color: #FFFFFF;
font-size: 30px;
height: 80px;
line-height: 81px;
margin-bottom: 20px;
text-align: center;
vertical-align: middle;
width: 80px;
}
.icon_boxes_st5:hover i{
background-color: #fff;
color: #119ee7;
border: 1px solid #119ee7;
}
/*------------------*/
/*team member styles */
/*------------------------------------------------------*/
/*team member style 2 */
.team_st2 {
position: relative;
width:100%;
height:400px;
padding:20px;
margin:0px;
float:left;
overflow:hidden;
transition: top .3s ease-in-out;
}
.teamst2_holder {
width:100%;
height:400px;
padding:0px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
transition: top .3s ease-in-out;
}
.team_st2 .imgbox {
padding: 0px;
margin: 0px;
float: left;
width: 100%;
top:0px;
height: 220px;
overflow:hidden;
transition: top 0.3s ease-in-out 0s;
}
.team_st2 .text {
position:absolute;
padding:20px;
margin:0px;
float: left;
width:100%;
height:150px;
left:0px;
top:220px;
z-index:100;
transition: top .3s ease-in-out;
background-color:#fff;
border-top:1px solid #e1e1e1;
}
.team_st2:hover .text {
position: absolute;
top:150px;
transition: top .3s ease-in-out;
}
.team_st2 strong{
font-size:16px;
font-weight:400;
padding:0px;
margin:15px 0 15px 0;
color:#272727;
text-align:center;
}
.team_st2 .desig{
font-size:14px;
font-weight:400;
padding:0px;
margin:0px;
float:left;
color:#fdce16;
text-align:left;
}
/*team style 1*/
.team_st1 {
padding:0px;
margin:0px;
float: left;
width: 100%;
text-align:center;
}
.team_st1 .imgholder {
position: relative;
padding:0px;
margin-bottom:20px;
float: left;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.team_st1 .teamst1_imgholder{
width:250px;
height:250px;
float:left;
padding:15px;
margin:0px;
border:1px solid #e1e1e1;
border-radius:50%;
}
.team_st1 .imgholder .hoverbox{
position:absolute;
padding:0px;
margin:0px;
float: left;
width: 210px;
height:210px;
left:19px;
top:22px;
opacity:0;
background-color:#000;
border-radius:50%;
transition: top .3s ease-in-out;
z-index:2;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.team_st1 .imgholder:hover .hoverbox{
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img175.png) left top repeat;
}
.team_st1 .imgholder .hoverbox a{
position: absolute;
left:47px;
top:112px;
background-color:#F30;
padding:10px;
margin-right:5px;
transition: top .5s ease-in-out;
}
.team_st1 .imgholder a.hov_circle {
position: absolute;
width:50px;
height:50px;
left:87px;
top:87px;
padding:0px;
margin:0px;
background-color:#fff;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
overflow:hidden;
transition-property: background-color, color;
transition: top .3s ease-in-out;
transition-timing-function: ease-out;
vertical-align:middle;
}
.team_st1 .imgholder a.hov_circle i {
color:#272727;
font-size:20px;
text-align:center;
line-height:50px;
}
.team_st1 .imgholder a.hov_circle:hover{
background-color:#1197ee;
}
.team_st1 .imgholder a.hov_circle:hover i{
color:#fff;
}
.team_st1 strong{
font-size:16px;
font-weight:400;
padding:0px;
margin:0px;
color:#272727;
text-align:center;
}
.team_st1 .desig{
font-size:14px;
font-weight:400;
padding:0px;
margin:0px;
color:#727272;
text-align:center;
}
.team_st1 p{
font-size:14px;
font-weight:normal;
padding-top:10px;
margin:0px;
color:#727272;
text-align:center;
}
.team_st1 ul.social_icon_st4{
margin-left:39px;
}
/*------------------*/
/*latest posts elements styles */
/*------------------------------------------------------*/
/*posts styles 5*/
.latest_post_st5{
margin:0px;
padding: 0px;
float:left;
}
.latest_post_st5 .imgholder{
margin:0px 0px 25px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .imgholder:hover{
opacity:0.8;
}
.latest_post_st5 .imgholder.port{
margin:0px 0px 25px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .infoholder{
margin:0px 0px 20px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .info{
font-size:14px;
color:#727272;
margin:0px 15px 0px 0px;
display:block;
font-weight:normal;
padding:0px;
float:left;
}
/*latest posts style 3*/
.latest_post_st3{
padding:15px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
}
.latest_post_st3:hover img{
opacity:0.8;
}
.latest_post_st3_imgholder{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_txtholder{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_txt{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_info{
padding:0px;
margin:0px;
display: block;
float:left;
font-size: 13px;
}
.latest_post_st3_info .paddright{
padding-right:10px;
}
.latest_post_st3_info span i{
padding:0px;
margin:0px;
color:#727272;
font-size: 13px;
}
/*------------------*/
/*dividers styles */
/*------------------------------------------------------*/
/*divider lines*/
.divider_line_small {
width: 12%;
margin: 0 auto 65px auto;
height: 25px;
border-top: 1px solid #000;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.divider_line_small.two {
width: 12%;
margin: 0 auto 0 0;
height: 25px;
float:left;
border-top: 1px solid #000;
}
.divider_line_small.three {
width: 49%;
margin: 0 auto 0 0;
height: 25px;
float:left;
border-top: 1px solid #000;
}
.divider_line_small.four {
margin: 0 auto 25px auto;
}
.divider_line_small_white {
width: 12%;
margin: 0 auto 80px auto;
height: 25px;
border-top: 1px solid #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.divider_line_small_white.two {
position:absolute;
width: 12%;
margin: 0 auto 80px 482px;
height: 25px;
padding:0px;
border-top: 1px solid #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.8;
}
.divider_line_small_white.three {
margin: 0 auto 50px 482px;
}
.divider_line1 {
float: left;
width: 100%;
padding-top: 0px;
margin-bottom: 0px;
border-bottom: 1px solid #e5e5e5;
}
.divider_dashed2 {
float: left;
width: 100%;
margin: 59px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed3 {
float: left;
width: 100%;
height:5px;
margin: 10px 0px 59px 0px;
border-top: 1px dashed #d7d7d7;
border-bottom: 1px dashed #d7d7d7;
}
.divider_dashed4 {
float: left;
width: 100%;
margin: 15px 0px 59px 0px;
border-top: 1px dashed #d7d7d7;
}
.divider_dashed5 {
float: left;
width: 100%;
height:5px;
margin: 20px 0px 59px 0px;
border-top: 2px solid #d7d7d7;
}
.divider_dashed6 {
float: left;
width: 100%;
height:5px;
margin: 20px 0px 59px 0px;
border-top: 1px solid #d7d7d7;
border-bottom: 1px solid #d7d7d7;
}
.divider_dashed7 {
float: left;
width: 100%;
margin: 50px 0px 0px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed8 {
float: left;
width: 100%;
margin: 53px 0px 45px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed9 {
float: left;
width: 100%;
margin: 40px 0px 48px 0px;
border-top: 1px dotted #d7d7d7;
}
/*------------------*/
/*widget styles */
/*------------------------------------------------------*/
/*text widget */
.text_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*posts widget */
.posts_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.posts_widget .left{
width:32%;
padding:0px;
margin:0;
float:left;
}
.posts_widget .right{
width:68%;
padding:0px;
margin:0;
float:right;
}
.posts_widget .right .title{
padding:0px;
margin:0;
}
.posts_widget .right .title:hover{
color:#fdce16;
}
.posts_widget .right .info{
font-size:13px;
padding:0px;
margin:0;
}
.posts_widget .right a.more_but{
font-size:14px;
padding:5px 5px;
margin:18px 0 18px 0;
float:left;
color:#fdce16;
border:1px solid #fdce16;
}
.posts_widget .right a.more_but:hover{
color:#161616;
background-color:#fdce16;
}
/*portfolio widget */
.portfolio_widget{
width:100%;
padding: 30px 30px 0px 30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*twitter widget */
.twitter_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.twitter_widget .icon{
width:32px;
height:32px;
padding:0px;
font-size:14px;
color:#161616;
text-align:center;
line-height:33px;
margin:0 10px 0 0;
float:left;
border-radius:100%;
background-color:#fdce16;
}
.twitter_widget .title{
width:85%;
padding:5px 0 0 0;
margin:0;
float:right;
}
.twitter_widget .hilite{
color:#fdce16;
}
/*social widget */
.social_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*testimonials widget */
.testimonials_widget{
width:100%;
padding:0px;
margin:0 0 40px 0;
float:left;
}
.testimonials_widget .box{
width:100%;
padding:30px;
margin:0 0 25px 0;
float:left;
border:1px solid #d9d9d9;
}
.testimonials_widget .left{
width:30%;
padding:0px;
margin:0;
float:left;
}
.testimonials_widget .right{
width:70%;
padding:0px;
margin:0;
float:left;
}
.testimonials_widget .right .name{
font-size:16px;
display:block;
color:#161616;
padding:0px;
margin:0;
}
.testimonials_widget .right .comp{
padding:0px;
margin:0;
}
.testimonials_widget .right .comp span{
color:#fdce16;
}
.testimonials_widget .arrow_down {
position: absolute;
margin: 0px 0px 0px 37px;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid #d9d9d9;
font-size: 0px;
line-height: 0;
}
/*flickr widget */
.flickr_widget{
width:100%;
padding: 30px 30px 17px 30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.flickr_widget img {
width: 65px;
height: 65px;
margin-right: 8px;
margin-bottom: 8px;
border: 0px solid #999 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.flickr_widget img:hover {
border: 2px solid #FDCE16 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.one_full .tabs7 li a h3{
font-size: 22px;
line-height: 40px;
}
.one_full .tabs-content7 .tabs-panel7 h4{
font-size: 16px;
font-weight: bold;
}
.section_holder68 .container h3 {
font-size: 22px;
}
h1 {
font-weight: bold;
} | css/style.css | SITE MAIN STRUCTURE
------------------------------------------------------*/
.site_wrapper {
width: 100%;
margin: 0 auto 0 auto;
}
.container_full {
width: 100%;
float: left;
margin: auto auto auto auto;
}
.container_full.slidertop {
margin-top: -80px;
}
.container {
width: 1170px;
margin: auto auto auto auto;
}
.content_fullwidth {
float: left;
width: 100%;
padding: 50px 0px 0px 0px;
}
.content_left {
float: left;
width: 71%;
padding: 18px 0px 0px 0px;
}
.right_sidebar {
float: right;
width: 25%;
padding: 18px 0px 0px 0px;
}
.left_sidebar {
float: left;
width: 25%;
padding: 18px 0px 0px 0px;
}
.content_right {
float: right;
width: 71%;
padding: 18px 0px 0px 0px;
}
/* columns */
.one_half, .one_third, .one_fourth, .two_third, .three_fourth, .one_fifth {
position: relative;
margin-right: 4%;
float: left;
}
.one_full {
width: 100%;
}
.one_half {
width: 48%;
}
.one_third {
width: 30.650%;
}
.one_fourth {
width: 22%;
}
.one_fifth {
width: 16.800%;
}
.two_third {
width: 65.350%;
}
.three_fourth {
width: 74%;
}
.last {
margin-right: 0 !important;
clear: right;
}
/*---------------------------------------------------
HEADER
------------------------------------------------------*/
/* Logo */
#trueHeader #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:13px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
#trueHeader2 #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:13px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
/*index4*/
#topHeader #logo{
float:left;
display:block;
width:100%;
min-height: 45px;
margin-top:8px;
position: relative;
text-indent:-999em;
background:url(../images/logo.png) no-repeat left bottom;
}
/* top navigation */
.right_bar {
float: right;
width: 75%;
padding: 20px 0px 0px 0px;
}
.right_bar ul.social_icons50 {
float: left;
width: 100%;
padding:0px;
}
.right_bar ul.social_icon_holder {
float: right;
width: 40%;
padding:0px;
margin:0px;
}
.right_bar ul.social_icons {
float: right;
width: 100%;
padding:0px;
margin:0px;
}
.right_bar ul.social_icons li {
float: right;
padding:0px;
margin:0px;
}
.right_bar .social_icons li.social a {
width:24px;
height:24px;
float: right;
font-size:13px;
color:#fff;
padding:0px;
margin:0 5px 0 0;
text-align:center;
line-height:25px;
border-radius:50%;
background-color:#272727;
}
.right_bar .social_icons li.social a:hover {
color:#fff;
background-color:#727272;
}
.right_bar .social_icons li.mail a {
float: right;
font-size:13px;
color:#727272;
padding:0px;
margin:0 15px 0 0;
line-height:25px;
}
.right_bar .social_icons li.phone {
float: right;
font-size:13px;
color:#727272;
padding:0px;
margin:0 15px 0 0;
line-height:25px;
}
.logo_holder {
float: left;
width: 100%;
height:64px;
}
/*index2*/
.tp-banner-container.two{ margin-top:-40px; position:relative; z-index:50;}
/* top navigation */
.top_nav {
float: left;
width: 100%;
padding: 0px 0px 0px 0px;
background-color: #fff;
border-bottom:1px solid #e7e7e7;
}
.top_nav.two{
float: left;
width: 100%;
height:50px;
padding: 0px 0px 0px 0px;
background-color:none;
}
.top_nav .right {
float: left;
width: 50%;
}
.top_nav .left {
float: left;
width: 50%;
}
.top_nav .left a {
font-size:13px;
color:#999;
float:left;
padding-top:3px;
}
.top_nav .left a i {
color:#fdce16;
}
.top_nav .left a:hover {
color:#727272;
}
.top_nav .left span {
font-size:13px;
color:#999;
float:left;
padding-left:15px;
padding-top:3px;
}
.top_nav .left span i {
color:#fdce16;
}
.top_nav .right ul {
float: right;
padding: 0px;
margin: 0px;
}
.top_nav .right li {
float: left;
font-size: 12px;
margin: 0px;
border-left:1px solid #d9d9d9;
}
.top_nav .right li.last {
border-right:1px solid #d9d9d9;
}
.top_nav .right li a i {
float: left;
font-size: 14px;
padding: 10px 10px 8px 10px;
margin: 0px;
}
.top_nav .right li:hover i {
color: #454545;
}
.top_nav .right li a {
color: #999;
}
.top_nav .right li a:hover {
color: #727272;
}
/* header area adinationals */
.logo {
float: left;
width: 25%;
}
.menu_main {
float: right;
width: 75%;
z-index: 9999;
position: relative;
}
.menu_main2 {
float: left;
width: 70%;
z-index: 9999;
padding:0px;
margin:0px;
position: relative;
}
.search_holder {
float: right;
width: 30%;
padding:20px 0 0 0;
}
.search_holder .input_text {
width:70%;
padding:0px;
border:1px solid #d9d9d9;
}
/*---------------------------------------------------
sections
------------------------------------------------------*/
.readmore_but1 {
float: left;
color: #adadad;
text-transform: uppercase;
padding: 13px 40px;
background-color: #161616;
border-radius:2px;
}
.readmore_but1:hover {
color: #161616;
background-color: #fff;
}
.readmore_but2 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 12px;
border-radius:2px;
border:2px solid #161616;
}
.readmore_but2:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_but3 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #fff;
}
.readmore_but3:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_but4 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
border-radius:2px;
background-color: #fdce16;
}
.readmore_but4:hover {
color: #161616;
background-color: #fff;
}
.readmore_but5 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #2d2d2d;
}
.readmore_but5:hover {
color: #161616;
border:2px solid #ff;
background-color: #fff;
}
.readmore_but6 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 25px;
border:2px solid #161616;
}
.readmore_but6:hover {
color: #fff;
border:2px solid #161616;
background-color: #161616;
}
.readmore_but7 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fff;
}
.readmore_but7:hover {
color: #fff;
background-color: #161616;
}
.readmore_but8 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 12px 25px;
background-color:#161616;
}
.readmore_but8:hover {
color: #161616;
background-color: #fff;
}
.readmore_but9 {
float: left;
color: #fff;
text-transform: uppercase;
padding: 12px 25px;
background-color:#161616;
}
.readmore_but9:hover {
color: #161616;
background-color: #fdce16;
}
.readmore_but10 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fdce16;
}
.readmore_but10:hover {
color: #fff;
background-color: #161616;
}
.readmore_but11 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 12px 25px;
background-color:#fff;
}
.readmore_but11:hover {
color: #fff;
background-color: #161616;
}
.readmore_but12 {
float: left;
color: #161616;
text-transform: uppercase;
padding: 10px 25px;
border-radius:2px;
border:2px solid #fdce16;
}
.readmore_but12:hover {
color: #161616;
border:2px solid #fdce16;
background-color: #fdce16;
}
.readmore_small {
float: left;
color: #fff;
font-size:12px;
text-transform: uppercase;
padding: 4px 7px;
background-color: #119ee7;
border-radius:2px;
text-transform:none;
}
.readmore_small:hover, .readmore_small.red:hover, .readmore_small.green:hover, .readmore_small.yellow:hover, .readmore_small.violet:hover {
color: #161616;
background-color: #fff;
}
.readmore_small.red {
background-color: #fc4242;
}
.readmore_small.green {
background-color: #94c014;
}
.readmore_small.yellow {
background-color: #fdce16;
}
.readmore_small.violet {
background-color: #b67cec;
}
/*home style 1 styles*/
.section_holder1{
width:100%;
float:left;
padding:150px 0px 80px 0px;
margin:0px;
}
.section_holder1 .box{
position:relative;
width:100%;
float:left;
padding:25px;
margin:0px;
text-align:center;
border:1px solid #b9b9b9;
}
.section_holder1 .box .title_bottom_line{
width:50px;
height:4px;
padding: 0;
margin:10px auto 20px auto;
border-top:1px solid #c9c9c9;
border-bottom:1px solid #c9c9c9;
}
.section_holder1 .diamond {
position: absolute;
width: 100px;
height: 100px;
border: 1px solid #C2C2C2;
background-color: #FFF;
margin: 0px;
padding: 0px;
left: 40px;
top: -36px;
text-align: center;
line-height: 93px;
transform: rotate(-45deg);
transform-origin: 50% 0 0px;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder1 .diamond .icon{
font-size:30px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
text-align:center;
color:#161616;
}
.section_holder1 .box a.readmore{
font: 14px 'Open Sans', sans-serif;
color:#161616;
padding:0px;
margin:0;
text-align:center;
font-weight:normal;
}
.section_holder1 .box:hover a.readmore{
color:#fdce16;
}
.section_holder1 .box:hover .diamond{
background-color:#fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder1 .box.active a.readmore{
color:#fdce16;
}
.section_holder1 .box.active .diamond{
background-color:#fdce16;
border:1px solid #fdce16;
}
/*section 2*/
.section_holder2{
width:100%;
float:left;
padding:0px;
margin:0px;
background: #fdce16 url(../images/site-img05.png) left 25px no-repeat;
}
.section_holder2 .section_title{
font-family: 'Raleway', sans-serif;
float:left;
font-size:45px;
font-weight:bold;
margin:0 0 20px 0;
padding:80px 0 0 0;
color:#161616;
text-transform:uppercase;
}
.section_holder2 .section_title_line{
width:361px;
height:3px;
float:left;
margin:0 0 40px 0;
padding:0px;
background:url(../images/section_title_line1.png) 0px 0px no-repeat;
}
.section_holder2 .img_right{
width:100%;
float:left;
margin:20px 0 0 0;
padding:0;
}
.section_holder2 .img_right img{
width:100%;
float:left;
margin:17px 0 0 0;
padding:0;
}
/*section 3*/
.section_holder3{
width:100%;
float:left;
padding:80px 0 10px 0;
margin:0px;
background: url("../images/parallax_bg1.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_title{
font-family: 'Raleway', sans-serif;
font-size:45px;
font-weight:bold;
margin:0 0 20px 0;
padding:0;
color:#fdce16;
text-align:center;
text-transform:uppercase;
}
.section_title_line{
width:360px;
height:3px;
padding:0px;
margin:0 auto 20px auto;
text-align:center;
background:url(../images/section_title_line2.png) 0px 0px no-repeat;
}
.section_title.two{
color:#161616;
}
.section_title_line.two{
background:url(../images/section_title_line3.png) 0px 0px no-repeat;
}
.section_title.three{
color:#161616;
}
.section_title_line.three{
margin:0 auto 60px auto;
background:url(../images/section_title_line4.png) 0px 0px no-repeat;
}
.section_title_line.four{
margin:0 auto 20px auto;
background:url(../images/section_title_line8.png) 0px 0px no-repeat;
}
.section_title_bottomtext{
width:60%;
padding:0px;
margin:0 auto 60px auto;
text-align:center;
}
.section_title_bottomtext.two{
color:#969696;
}
.section_title_bottomtext.three{
color:#161616;
}
.section_title_bottomtext.port{
width:46%;
margin:0 auto 60px auto;
}
.section_holder3 .title{
padding:0 0 0px 0;
color:#fff;
}
.section_holder3 .subtitle{
font-size:16px;
font-weight:600;
padding:0px;
color:#fff;
}
.section_holder3 p{
color:#868686;
padding:15px 0 0 0;
}
.section_holder3 .divider_line1{
width:100%;
height:1px;
float:left;
background-color:#4e4e4e;
padding:0px;
margin:38px 0 20px 0;
border:none;
}
.section_holder3 .icon.two{
font-size:32px;
float:left;
color:#fff;
padding:0px;
margin:0px 0 0 0;
border:none;
}
.section_holder3 .sharetitle{
font-size:16px;
float:left;
color:#fff;
font-weight:600;
padding:0px 10px 0 0;
margin:0;
text-transform:uppercase;
}
.section_holder3 ul.social_icons{
width:70%;
float:left;
margin:0px 0 0 72px;
padding:0;
}
.section_holder3 ul.social_icons li{
margin:0;
padding:0;
float:left;
}
.section_holder3 ul.social_icons li.iconbg{
width:50px;
height:50px;
background-color: #fff;
margin:0 23px 0 0;
padding:0px;
text-align:center;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder3 ul.social_icons li.iconbg i{
width:50px;
height:50px;
font-size:22px;
text-align:center;
line-height:51px;
color:#161616;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder3 ul.social_icons li.iconbg:hover{
background-color: #fdce16;
}
.section_holder3 ul.social_icons li.iconbg.active{
background-color: #fdce16;
}
.section_holder3 .project_imgbox{
width:535px;
height:405px;
float:right;
padding:15px;
margin:0px;
background-color:#fff;
}
.section_holder3 .imgbox{
width:100%;
float:left;
padding:0px;
margin:0px;
}
/*section 4*/
.section_holder4{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
}
.section_holder4 .ucd_process{
width:190px;
height:190px;
padding:0px;
margin:0 auto;
}
.section_holder4 .ucd_process .phaseimg{
width:190px;
height:190px;
padding:0px;
margin:0;
background: url(../images/site-img06.png) 0 0 no-repeat;
-webkit-transform: translate(1);
-moz-transform: translate(1);
-o-transform: translate(1);
-ms-transform: translate(1);
transform: translate(1);
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.section_holder4 .ucd_process .phaseimg.two{
background: url(../images/site-img07.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.three{
background: url(../images/site-img08.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.four{
background: url(../images/site-img09.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg:hover{
width:190px;
height:190px;
padding:0px;
margin:0;
background: url(../images/site-img10.png) 0 0 no-repeat;
-webkit-transform: translate(1em,0);
-moz-transform: translate(1em,0);
-o-transform: translate(1em,0);
-ms-transform: translate(1em,0);
transform: translate(1em,0);
-webkit-transition: 0.2s ease-in-out;
-moz-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.section_holder4 .ucd_process:hover .phase_title{
color:#fdce16;
}
.section_holder4 .ucd_process .phaseimg.two:hover{
background: url(../images/site-img11.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.three:hover{
background: url(../images/site-img12.png) 0 0 no-repeat;
}
.section_holder4 .ucd_process .phaseimg.four:hover{
background: url(../images/site-img13.png) 0 0 no-repeat;
}
.section_holder4 . .phaseimg.four:hover{
background: url(../images/site-img13.png) 0 0 no-repeat;
}
.section_holder4 .one_fourth:hover .icon{
color:#fdce16;
border:1px solid #fdce16;
}
.section_holder4 .one_fourth:hover h4{
color:#fdce16;
}
.section_holder4 .icon{
width:185px;
height:185px;
padding:0;
font-size:65px;
text-align:center;
line-height:194px;
margin:0 auto 20px auto;
color:#161616;
border-radius:50%;
border:1px solid #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder4 .paddtop{
padding-top:20px;
}
/*section 5*/
.section_holder5{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background:url(../images/site-img14.jpg) 0 0 no-repeat;
}
.section_holder5 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #161616;
}
.section_holder5 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background: url(../images/site-img34.png) 0 0 no-repeat;
}
.section_holder5 .skill_img{
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder5 p{
color:#161616;
}
/*section 6*/
.section_holder6{
position:relative;
width:100%;
float:left;
padding:75px 0 15px 0;
margin:0px;
}
.section_holder6 .team_img_holder {
width:100%;
float:left;
padding:0px;
margin:0px;
}
.section_holder6 .team_img_frame {
position:relative;
width:252px;
height:252px;
background-color:#fff;
margin: 105px 0 0 180px;
padding:0px;
border:1px solid #d9d9d9;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder6 .team_img_frame:hover {
background-color:#fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder6 .team_img_shape {
position:absolute;
width:215px;
height:215px;
background-color:#fff;
margin:40px;
padding:0px;
left:-22px;
top:-22px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder6 .team_img {
background: url(../images/site-img19.jpg) 0px 0px;
width: 310px;
height: 310px;
margin:-45px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder6 .team_img.two {
background: url(../images/site-img18.jpg);
}
.section_holder6 .team_img.three {
background: url(../images/site-img20.jpg);
}
.section_holder6 .team_img.four {
background: url(../images/site-img21.jpg);
}
.section_holder6 .team_img.five {
background: url(../images/site-img22.jpg);
}
.section_holder6 .team_img.six {
background: url(../images/site-img23.jpg);
}
.section_holder6 ul.social_icons{
padding:0px;
margin: 19px 0px 0px 18px;
float:left;
}
.section_holder6 .social_icons li{
padding:0px;
margin:0 5px 0 0;
float:left;
display: inline;
}
.section_holder6 .social_icons li a{
width:38px;
height:38px;
padding:0px;
margin:0px;
float:left;
color:#161616;
font-size:16px;
line-height:34px;
border-radius:50%;
display: inline;
text-align:center;
border:1px solid #d9d9d9;
background-color:#fff;
}
.section_holder6 .social_icons li.one{
margin:-140px 5px 0 0;
}
.section_holder6 .social_icons li.two{
margin: -108px 5px 0px 32px;
}
.section_holder6 .social_icons li.three{
margin: -77px 5px 0px 64px;
}
.section_holder6 .member_info{
width:100%;
float:left;
text-align:center;
padding:0px;
margin:0px;
}
.section_holder6 .top_line{
width:195px;
height:5px;
border-bottom:1px solid #a2a2a2;
border-top:1px solid #a2a2a2;
padding:0px;
margin:20px auto 18px auto;
}
.section_holder6 .team_img_overley {
position:absolute;
width:215px;
height:215px;
background-color:#000;
margin: 138px 0px 0px 203px;
padding:0px;
left:-22px;
opacity:0;
top:-22px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
z-index:100;
transition: opacity 0.3s ease-in-out 0s;
}
/*hover style*/
.section_holder6 .social_icons li a:hover{
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder6 .one_third:hover h5{
color:#fdce16;
}
.section_holder6 .one_third:hover .team_img_frame{
background-color:#fdce16;
border:1px solid #fdce16;
}
.section_holder6 .one_third:hover .top_line{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
}
.section_holder6 .one_third:hover span{
color:#fdce16;
}
.section_holder6 .one_third:hover .team_img_overley{
opacity:0.7;
transition: opacity 0.3s ease-in-out 0s;
}
/*active style*/
.section_holder6 .one_third.active .team_img_overley{
opacity:0.7;
}
.section_holder6 .one_third.active .team_img_frame{
background-color:#fdce16;
border:1px solid #fdce16;
}
.section_holder6 .one_third.active h5{
color:#fdce16;
}
.section_holder6 .one_third.active span{
color:#fdce16;
}
.section_holder6 .one_third.active .top_line{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
}
.section_holder6 .one_third.active .social_icons li.two a{
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 7*/
.section_holder7{
position:relative;
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder7 .img_middle{
width:585px;
height:555px;
float:left;
padding:0;
margin:0px;
}
.section_holder7 .icon_circle{
width:125px;
height:125px;
padding:10px;
text-align:center;
margin:85px auto 20px auto;
border-radius:50%;
border:2px solid #fff;
}
.section_holder7 .icon_circle.two{
margin:200px auto 20px auto;
}
.section_holder7 .circle_inner{
width:100px;
height:100px;
padding:0;
margin:0px;
text-align:center;
border-radius:50%;
background-color:#fff;
}
.section_holder7 .circle_inner i{
padding:0;
margin:0px;
line-height:96px;
font-size:28px;
text-align:center;
color:#161616;
}
.section_holder7 p{
color:#161616;
}
.section_holder7 a.readmore_but1{
margin: 28px 0px 0px 48px;
}
.section_holder7 a.readmore_but1:hover{
color:#161616;
}
.section_holder7 .arrow_left{
position:absolute;
width:285px;
height:110px;
padding:0;
float:left;
margin:0px;
left:106px;
top:442px;
background:url(../images/site-img22.png) left top no-repeat;
z-index:5;
}
.section_holder7 .arrow_right{
position:absolute;
width:215px;
height:165px;
padding:0;
float:left;
margin:0px;
left: -33px;
top: 54px;
background:url(../images/site-img23.png) left top no-repeat;
z-index:5;
}
/*section 8*/
.section_holder8{
position:relative;
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder8 ul.ser_list{
width:100%;
padding:0px;
margin:25px 0 0 0;
float:left;
}
.section_holder8 ul.ser_list li{
padding:0px;
margin:0 0 7px 0;
float:left;
color:#727272;
}
.section_holder8 ul.ser_list li i{
margin-right:5px;
color:#fdce16;
}
.section_holder8 .readmore_but2{
margin-top:35px;
}
.section_holder8 a .services_box {
position: relative;
width: 128px;
height: 128px;
background-color: #FFF;
margin: 49px 0px 0px 0;
padding: 0px;
float: left;
text-align: center;
border: 1px solid #D9D9D9;
transform: rotate(-45deg);
transform-origin: 50% 0 0px;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder8 a .services_box.two{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box.three{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box.four{
margin: 49px 0px 0px 50px;
}
.section_holder8 a .services_box:hover{
background-color: #fdce16;
border:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder8 .inner_box{
position:absolute;
width:120px;
height:120px;
margin: -58px 0px 0px -22px;
padding:0px;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder8 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#161616;
line-height:121px;
text-transform:uppercase;
}
.section_holder8 .title_subscribe i{
padding:0;
margin:0 5px 0 0;
font-size:18px;
}
.section_holder8 .input_holder{
width:100%;
padding:20px;
margin:20px 0 0 0;
font-size:22px;
float:left;
border:1px solid #d9d9d9;
}
.section_holder8 .input_holder .email_input {
background: none repeat scroll 0 0 #FFFFFF;
border: 1px solid #d9d9d9;
color: #999999;
float: left;
font-size: 14px;
font-weight: normal;
height:48px;
line-height: 39px;
padding: 0 7px;
width: 80%;
}
.email_submit{
padding: 12px 34px;
margin:0px 0px 0px 0px;
float:left;
height: 48px;
color:#fff;
border:1px solid #161616;
background-color:#161616;
text-transform:uppercase;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.email_submit:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.email_submit.eight{
padding: 8px 20px;
margin:0px 0px 0px 0px;
float:left;
height: 39px;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 9*/
.section_holder9{
width:100%;
float:left;
padding:75px 0 100px 0;
margin:0px;
background: url("../images/parallax_bg2.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder9 .post_img_holder {
width:100%;
float:left;
padding:0px;
margin: 0px 0 0 -45px;
}
.section_holder9 .post_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin: 252px 0px 0px 137px;
z-index:100;
background-color:#fff;
}
.section_holder9 .post_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder9 .post_img_frame {
position:relative;
width:192px;
height:192px;
background-color:#fff;
margin: 103px 0 0 180px;
padding:0px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_img_shape {
position:absolute;
width:170px;
height:170px;
background-color:#fff;
margin:40px;
padding:0px;
left:-29px;
top:-29px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder9 .post_img {
background: url(../images/site-img25.jpg);
width: 310px;
height: 310px;
margin: -26px 0 0px -73px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder9 .post_img.two {
background: url(../images/site-img24.jpg);
}
.section_holder9 .post_info_holder{
width:66%;
float:left;
padding:15px;
margin: -273px 0px 0px 191px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_info_inner{
width:100%;
float:left;
padding: 0px 0px 30px 80px;
margin:0px;
border:1px solid #d0d0d0;
}
.section_holder9 .martop{
margin:20px 0 0 0;
}
.section_holder9 .bottom_line{
width:140px;
height:5px;
border-bottom:1px solid #969696;
border-top:1px solid #969696;
float:left;
padding:0;
margin:3px 0 10px 0;
}
.section_holder9 .post_info{
width:100%;
float:left;
padding:0;
margin:0;
}
.section_holder9 .info{
font-family: 'Open Sans', sans-serif;
font-size:13px;
float:left;
color:#727272;
font-weight:normal;
padding:0;
margin:0px 5px 0 0;
}
/*hover styles*/
.section_holder9 .post_info_holder:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder9 .post_info_holder:hover .post_info_inner{
border:1px solid #161616;
}
.section_holder9 .post_info_holder:hover .bottom_line{
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder9 .post_info_holder:hover .info{
color:#161616;
}
.section_holder9 .post_info_holder:hover p{
color:#161616;
}
/*active styles*/
.section_holder9 .post_info_holder.active{
background-color:#fdce16;
}
.section_holder9 .post_info_holder.active .post_info_inner{
border:1px solid #161616;
}
.section_holder9 .post_info_holder.active .bottom_line{
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder9 .post_info_holder.active .info{
color:#161616;
}
/*section 10*/
.section_holder10{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder10 .price_table{
position:relative;
width:390px;
float:left;
padding:0;
margin:0px;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder10 .price_table.active{
background-color:#fdce16;
}
.section_holder10 .price_table .top_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img27.png) center top no-repeat;
}
.section_holder10 .price_table .bottom_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img26.png) center bottom no-repeat;
}
.section_holder10 .plan_info_outer{
width:100%;
float:left;
padding:15px;
text-align:center;
margin:0px;
}
.section_holder10 .plan_info{
width:100%;
float:left;
padding:0;
text-align:center;
margin:0px;
border:1px solid #161616;
}
.section_holder10 .price_circle{
position:absolute;
width:140px;
height:140px;
font-size:40px;
padding:0;
color:#fff;
line-height:130px;
text-align:center;
margin: -41px 0px 0px 125px;
border-radius:50%;
background-color:#4f4f4f;
}
.section_holder10 .plan_info .title{
font-size:40px;
font-weight:400;
padding:0;
color:#fff;
text-align:center;
margin:60px 0 10px 0;
}
.section_holder10 .plan_info span{
font-family: 'Open Sans', sans-serif;
font-size:14px;
font-weight:normal;
padding:0;
color:#827c7c;
text-align:center;
margin:0 0 0 0;
}
.section_holder10 .plan_info .bottom_line{
width:140px;
height:4px;
padding:0;
border-bottom:1px solid #4f4f4f;
border-top:1px solid #4f4f4f;
text-align:center;
margin:18px auto 15px auto;
}
.section_holder10 .plan_info ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.section_holder10 .plan_info ul.plan_features li{
width:100%;
float:left;
color:#827c7c;
text-align:center;
padding:15px 0;
margin:0;
border-bottom:1px solid #2d2d2d;
}
.section_holder10 .plan_info .singup_but{
color:#827c7c;
text-align:center;
padding:10px 50px;
margin:40px 0 40px 100px;
float:left;
border:1px solid #2d2d2d;
}
.section_holder10 .plan_info .singup_but:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder10 .plan_info .singup_but.two{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
.section_holder10 .plan_info .singup_but.two:hover{
color:#161616;
border:1px solid #161616;
background-color:#fdce16;
}
/*active styles*/
.section_holder10 .price_table.active{
background-color:#fdce16;
}
.section_holder10 .price_table.active .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.section_holder10 .price_table.active .plan_info .title{
color:#161616;
}
.section_holder10 .price_table.active .plan_info span{
color:#161616;
}
.section_holder10 .price_table.active .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.section_holder10 .price_table.active .plan_info{
border:1px solid #fff;
}
.section_holder10 .price_table.active .price_circle{
background-color:#161616;
}
/*hover styles*/
.section_holder10 .price_table:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder10 .price_table:hover .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.section_holder10 .price_table:hover .plan_info .title{
color:#161616;
}
.section_holder10 .price_table:hover .plan_info span{
color:#161616;
}
.section_holder10 .price_table:hover .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.section_holder10 .price_table:hover .plan_info{
border:1px solid #fff;
}
.section_holder10 .price_table:hover .price_circle{
background-color:#161616;
}
/*section 11*/
.section_holder11{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background: url("../images/parallax_bg3.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
min-height: 520px;
}
.section_holder11 .clint_img_holder {
width:100%;
float:left;
padding:0px;
margin:55px 0px 0px 85px;
}
.section_holder11 .clint_img_frame {
position:relative;
width:120px;
height:120px;
background-color:#fff;
margin:0px;
padding:0px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .clint_img_shape {
position:absolute;
width:96px;
height:96px;
background-color:#fff;
margin:40px;
padding:0px;
left:-28px;
top:-28px;
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
overflow: hidden;
}
.section_holder11 .clint_img {
background: url(../images/site-img28.jpg);
width: 310px;
height: 310px;
margin: 16px 0px 0px -107px;
padding:0 0 0 0;
-ms-transform: rotate(-45deg);
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.section_holder11 .clint_img.two {
background: url(../images/site-img29.jpg);
}
.section_holder11 .clint_img.three {
background: url(../images/site-img30.jpg);
}
.section_holder11 .clint_img.four {
background: url(../images/site-img31.jpg);
}
.section_holder11 .text_holder_outer{
position:relative;
width: 72%;
height:auto;
margin:-168px 0px 0px 156px;
float:left;
padding:12px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder{
width: 100%;
margin:0px;
float:left;
padding:20px 20px 20px 30px;
border:1px solid #fff;
}
.section_holder11 .text_holder span b{
font-weight:normal;
color:#fdce16;
}
/*hover styles*/
.section_holder11 .text_holder_outer:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder_outer:hover p{
color:#161616;
}
.section_holder11 .text_holder_outer:hover span{
color:#161616;
}
.section_holder11 .text_holder_outer:hover span b{
color:#161616;
}
/*active styles*/
.section_holder11 .text_holder_outer.active{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder11 .text_holder_outer.active p{
color:#161616;
}
.section_holder11 .text_holder_outer.active span{
color:#161616;
}
.section_holder11 .text_holder_outer.active span b{
color:#161616;
}
/*section 12*/
.section_holder12{
width:100%;
float:left;
padding:75px 0 23px 0;
margin:0px;
}
.section_holder12 .title_bottom_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line5.png) 0px 0px no-repeat;
}
.section_holder12 .title_bottom_line.right{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line6.png) 0px 0px no-repeat;
}
.section_holder12 .section_title{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
}
.section_holder12 .news_img_holder {
position: relative;
width: 89%;
float: left;
padding: 0px;
margin: 0 0 13px 0;
/*overflow:hidden;*/
}
.section_holder12 .news_img_holder .hoverbox {
position:absolute;
padding:15px;
margin:0px;
float: left;
width:100%;
height:180px;
left:0px;
top:-215px;
z-index:5;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12 .news_img_holder .box_inner {
padding:0px;
margin:0px;
float: left;
width:100%;
height:100%;
border:1px solid #fff;
}
.section_holder12 .news_img_holder .box_inner a.icon{
width:32px;
height:32px;
float:left;
padding:0;
color:#161616;
line-height:32px;
text-align:center;
margin:60px 5px 0 105px;
border-radius:2px;
background-color:#fff;
}
.section_holder12 .news_img_holder .box_inner a.icon:hover{
color:#fff;
background-color:#161616;
}
.section_holder12 .news_img_holder .box_inner a.icon.last{
margin:60px 5px 0 0px;
}
.section_holder12 .news_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin:0px;
z-index:10;
left: 270px;
top: 50px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder12 .img_bottom_strip {
width: 100%;
height: 8px;
float: left;
padding: 0px;
margin: 0px;
background-color: #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .img_bottom_shape {
width: 100%;
height: 20px;
float: left;
padding: 0px;
margin: -3px 0px 0px 103px;
background: url(../images/site-img35.png) 0px 0px no-repeat;
z-index: 100;
}
.section_holder12 .news_info{
width:89%;
float:left;
font-size:13px;
padding:0 0 13px 0;
margin:0px;
}
.section_holder12 .news_info span{
color:#a7a7a7;
margin:0 5px 0 0;
}
.section_holder12 .smalltext{
width:89%;
padding:0;
margin:0;
}
/*hover styles*/
.section_holder12 .news_img_holder:hover .hoverbox {
position:absolute;
left:0px;
top:0px;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12 .news_img_holder:hover .date {
background-color:#161616;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder:hover .date span {
color:#fff;
}
.section_holder12 .news_img_holder:hover .img_bottom_strip {
background-color: #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12 .news_img_holder:hover .img_bottom_shape {
background: url(../images/site-img34.png) 0px 0px no-repeat;
}
/*home style 2 styles*/
.section_holder13{
width:100%;
float:left;
padding:40px 0px 80px 0px;
margin:0px;
}
.section_holder13 .box{
width:390px;
float:left;
padding:15px;
margin:0px;
background-color:#fdce16;
}
.section_holder13 .box.two{
background-color:#f4c40a;
}
.section_holder13 .box.three{
background-color:#f4ba0a;
}
.section_holder13 .box_inner{
width:100%;
float:left;
padding:30px;
margin:0px;
text-align:center;
border:none;
}
.section_holder13 .box_inner .icon{
font-size: 58px;
color:#fff;
margin-bottom:15px;
}
.section_holder13 .box_inner p{
color:#161616;
}
/*hover styles*/
.section_holder13 .box:hover .box_inner {
border:1px solid #fff;
padding:29px;
}
/*section 14*/
.section_holder14{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg4.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder14 .left_img{
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder14 .text_box{
width:100%;
padding:15px;
margin:0 0 15px 0;
float:left;
background-color:#fff;
}
.section_holder14 .box_inner{
width:100%;
padding:15px;
margin:0px;
float:left;
border:1px solid #fff;
}
.section_holder14 .icon_holder{
width:23%;
padding:0px;
margin:0px;
float:left;
}
.section_holder14 .icon{
width:100px;
height:100px;
border-radius:50%;
font-size:35px;
padding:15px;
margin:0px;
color:#161616;
line-height:70px;
text-align:center;
float:left;
border:1px solid #161616;
}
.section_holder14 .text{
width:77%;
padding:0px;
margin:0px;
float:right;
}
/*hover styles*/
.section_holder14 .text_box:hover{
background-color:#fdce16;
}
.section_holder14 .text_box:hover .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box:hover .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box:hover p{
color:#161616;
}
/*active styles*/
.section_holder14 .text_box.active{
background-color:#fdce16;
}
.section_holder14 .text_box.active .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box.active .box_inner{
border:1px solid #fff;
}
.section_holder14 .text_box.active p{
color:#161616;
}
.section_holder14 .readmore_but3{
margin:30px 20px 0 400px;
}
.section_holder14 .readmore_but4{
margin:30px 0 0 0;
}
/*section 15*/
.section_holder15{
width:100%;
float:left;
padding:75px 0 45px 0;
margin:0px;
}
.section_holder15 .icon_holder{
width:15%;
padding:0px;
margin:0px;
float:left;
text-align:center;
}
.section_holder15 .icon_holder .icon{
padding:5px 0 0 0;
font-size:30px;
margin:0px;
float:left;
color:#161616;
text-align:center;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .text_holder{
width:85%;
padding:0px;
margin:0px;
float:right;
}
.section_holder15 .text_holder p{
padding:0px;
margin:0px;
float:left;
}
.section_holder15 .icon_bline{
width:70%;
height:5px;
padding:0px;
margin:10px auto 0 auto;
float:left;
border-bottom:1px solid #161616;
border-top:1px solid #161616;
}
.section_holder15 .one_third{
margin-bottom:30px;
}
/*hover styles*/
.section_holder15 .one_third:hover .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third:hover h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third:hover .icon_bline{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*active styles*/
.section_holder15 .one_third.active .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third.active h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder15 .one_third.active .icon_bline{
border-bottom:1px solid #fdce16;
border-top:1px solid #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 16*/
.section_holder16{
width:100%;
float:left;
padding:75px 0 0px 0;
margin:0px;
background-color:#fdce16;
}
.section_holder16 .img_holder{
width:100%;
float:left;
padding:0;
margin:0px;
}
.punchtext{
width:100%;
float:left;
padding:30px 0;
margin:0px;
background-color:#161616;
}
.punchtext.two{
width:100%;
float:left;
padding:30px 0;
margin:0px;
}
.punchtext .text{
float:left;
font-size:22px;
color:#fff;
padding:0px 0;
margin:0px;
background-color:#161616;
}
.punchtext .readmore_but5{
float:right;
}
/*section 17*/
.section_holder17{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder17 .item_main{
position:relative;
float:left;
padding:0;
margin:0;
}
.section_holder17 .item_main .bottomstrip {
width:80%;
margin:-7px auto 0 auto;
height:10px;
padding:0px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .bottomshape {
width: 80px;
margin: 0px 0px 0px 158px;
float: left;
height: 29px;
padding: 0px;
background: url(../images/site-img35.png) 0px -2px no-repeat;
}
.section_holder17 .item_main .text {
font-family: 'Raleway', sans-serif;
position:absolute;
font-size:30px;
font-weight:300;
color:#fdce16;
margin: 210px 0 0 40px;
float: left;
height: 29px;
padding: 0px;
text-transform:uppercase;
}
.section_holder17 .item_main .text2 {
font-family: 'Raleway', sans-serif;
position:absolute;
font-size:30px;
font-weight:500;
color:#fff;
margin: 238px 0 0 40px;
float: left;
height: 29px;
padding: 0px;
text-align:left;
display:block;
text-transform:uppercase;
border-bottom:1px solid #fdce16;
}
.section_holder17 .item_main .hover_box {
width:396px;
position:absolute;
margin:0px;
float: left;
opacity:0;
height:300px;
padding: 30px;
background: url(../images/site-img36.png) 0px 0px repeat;
z-index:10;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main .hover_box_inner {
width:100%;
margin:0px;
float: left;
height:100%;
padding: 0px;
border:1px solid #fff;
}
.section_holder17 .item_main .hover_box_inner a.circle {
width:70px;
height:70px;
margin: 85px 10px 0px 94px;
float: left;
font-size:24px;
text-align:center;
line-height:75px;
color:#161616;
padding: 0px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .hover_box_inner a.circle:hover {
color:#fff;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main .hover_box_inner .circle.last {
margin: 85px 0px 0px 0px;
}
/*hover styles*/
.section_holder17 .item_main:hover .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main:hover .bottomstrip{
opacity:1;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder17 .item_main:hover .bottomshape{
background: url(../images/site-img34.png) 0px -2px no-repeat;
}
/*active styles*/
.section_holder17 .item_main.active .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder17 .item_main.active .bottomstrip{
opacity:1;
background-color:#161616;
}
.section_holder17 .item_main.active .bottomshape{
background: url(../images/site-img34.png) 0px -2px no-repeat;
}
/*section 18*/
.section_holder18{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg5.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder18 .img_left{
width:100%;
float:left;
padding:0;
margin:0px;
}
/*section 19*/
.section_holder19{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder19.two{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
border:1px solid #e1e1e1;
}
.section_holder19 .img_holder{
position:relative;
width:272px;
height:272px;
float:left;
padding:13.2px;
text-align:center;
margin:0px;
border-radius:50%;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder19 .img_holder .img{
width:100%;
height:245px;
float:left;
padding:0px;
text-align:center;
margin:0px;
border-radius:100%;
background:url(../images/site-img198.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.two{
background:url(../images/site-img199.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.three{
background:url(../images/site-img200.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.four{
background:url(../images/site-img201.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.five{
background:url(../images/site-img202.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.six{
background:url(../images/site-img203.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.seven{
background:url(../images/site-img204.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.eight{
background:url(../images/site-img205.jpg) center top no-repeat;
}
.section_holder19 .img_holder .img.nine{
background:url(../images/site-img206.jpg) center top no-repeat;
}
.section_holder19 .img_holder .bshape{
position:absolute;
width:78px;
height:27px;
float:left;
padding:0px;
margin: 247px 0px 0px 98px;
background:url(../images/site-img58.png);
}
.section_holder19 .member_info{
width:80%;
text-align:center;
padding:10px 0 10px 0;
margin:30px auto 0 auto;
border-bottom:1px solid #969696;
border-top:1px solid #969696;
}
.section_holder19 .img_holder .hover_circle{
position:absolute;
width:245px;
height:245px;
float:left;
opacity:0;
padding:0px;
margin:0px;
border-radius:50%;
background:url(../images/site-img59.png) 0px 0px repeat;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder19 .img_holder ul.social_icon{
position:absolute;
width:100%;
float:left;
padding:0px;
margin: 0px 0px 0px 32px;
z-index:10;
}
.section_holder19 .img_holder ul.social_icon li{
float:left;
padding:0px;
margin:0x;
transition: opacity 0.1s ease-in-out 0s;
-webkit-transition: opacity .1s ease-in-out;
-moz-transition: opacity .1s ease-in-out;
-ms-transition: opacity .1s ease-in-out;
-o-transition: opacity .1s ease-in-out;
transition: opacity .1s ease-in-out;
transition: top 0.1s ease-in-out 0s;
}
.section_holder19 .img_holder ul.social_icon li.one{
position:absolute;
top:20px;
opacity: 0;
}
.section_holder19 .img_holder ul.social_icon li.two{
position:absolute;
top:20px;
opacity: 0;
left:45px;
}
.section_holder19 .img_holder ul.social_icon li.three{
position:absolute;
top:20px;
opacity: 0;
left:90px;
}
.section_holder19 .img_holder ul.social_icon li.four{
position:absolute;
top:20px;
opacity: 0;
left:135px;
}
.section_holder19 .img_holder .social_icon li a{
width:40px;
height:40px;
float:left;
font-size:18px;
padding:0px;
line-height:40px;
color:#161616;
margin:0 5px 0 0;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
background-color:#fff;
z-index:10;
}
/*hover styles*/
.section_holder19 .img_holder .social_icon li a:hover{
background-color:#fdce16;
}
.section_holder19 .one_fourth:hover .hover_circle{
opacity:1;
transition: opacity 0.1s ease-in-out 0s;
}
.section_holder19 .one_fourth:hover .social_icon li.one{
top:106px;
opacity:1;
transition: top .3s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.two{
top:106px;
opacity:1;
transition: top .5s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.three{
top:106px;
opacity:1;
transition: top .7s ease-in-out;
}
.section_holder19 .one_fourth:hover .social_icon li.four{
top:106px;
opacity:1;
transition: top .9s ease-in-out;
}
.section_holder19 .one_fourth:hover .img_holder{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder19 .one_fourth:hover .bshape{
background:url(../images/site-img57.png)
}
/*active styles*/
.section_holder19 .img_holder .social_icon li a.active{
background-color:#fdce16;
}
.section_holder19 .one_fourth.active .hover_circle{
opacity:1;
transition: opacity 0.1s ease-in-out 0s;
}
.section_holder19 .one_fourth.active .social_icon li.one{
top:106px;
opacity:1;
transition: top .3s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.two{
top:106px;
opacity:1;
transition: top .5s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.three{
top:106px;
opacity:1;
transition: top .7s ease-in-out;
}
.section_holder19 .one_fourth.active .social_icon li.four{
top:106px;
opacity:1;
transition: top .9s ease-in-out;
}
.section_holder19 .one_fourth.active .img_holder{
background-color:#fdce16;
}
.section_holder19 .one_fourth.active .bshape{
background:url(../images/site-img57.png)
}
/*section 20*/
.section_holder20{
width:100%;
float:left;
padding:75px 0 95px 0;
margin:0px;
background: url("../images/parallax_bg6.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder20 .price_table{
width:100%;
float:left;
padding:0;
margin:0px;
border-radius:2px;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder20 .arrow_down {
position: absolute;
margin:0 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-top: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.section_holder20 .arrow_up {
position: absolute;
margin:-35px 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-bottom: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.section_holder20 .price_table .title{
width:100%;
font-size:30px;
font-weight:600;
padding:20px 0 20px 0;
color:#161616;
text-align:center;
margin:0px 0 10px 0;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .price_table .price {
color: #161616;
font-size: 45px;
font-weight: bold;
line-height: 45px;
text-align:center;
padding: 8px 0px 8px;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .price_table .price sup {
font-size: 22px;
font-style: normal;
}
.section_holder20 .price_table .price i {
font-size: 16px;
font-style: normal;
font-weight: 500;
}
.section_holder20 .price_table ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.section_holder20 ul.plan_features li{
width:70%;
color:#727272;
text-align:center;
padding:15px 0;
margin:0 auto;
border-bottom:1px solid #e6e5e5;
}
.section_holder20 .plan_info .singup_but{
color:#fff;
text-align:center;
padding:8px 30px;
margin: 25px 0px 25px 69px;
float:left;
border-radius:2px;
background-color:#161616;
}
.section_holder20 .plan_info .singup_but:hover{
color:#161616;
background-color:#fdce16;
}
/*hover styles*/
.section_holder20 .one_fourth:hover .price_table{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder20 .one_fourth:hover .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth:hover .singup_but{
color:#161616;
background-color:#fdce16;
}
.section_holder20 .one_fourth:hover .arrow_up{
border-bottom: 35px solid #161616;
}
.section_holder20 .one_fourth:hover .arrow_down{
border-top: 35px solid #161616;
}
/*active styles*/
.section_holder20 .one_fourth.active .price_table{
background-color:#161616;
}
.section_holder20 .one_fourth.active .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.section_holder20 .one_fourth.active .singup_but{
color:#161616;
background-color:#fdce16;
}
.section_holder20 .one_fourth.active .arrow_up{
border-bottom: 35px solid #161616;
}
.section_holder20 .one_fourth.active .arrow_down{
border-top: 35px solid #161616;
}
/*testimonials styles*/
.section_holder12.two .clint_img{
width:44%;
float:left;
padding:0px;
margin:0px;
}
.section_holder12.two .clint_info{
position:relative;
width:56%;
float:right;
padding:0px;
margin:0px;
}
.section_holder12.two .clint_info span{
color:#fdce16;
}
.section_holder12.two .img_frame{
width:142px;
height:142px;
float:left;
padding:11px;
margin:0px;
border-radius:50%;
background-color:#161616;
}
.section_holder12.two .img{
position:absolute;
width:120px;
float:left;
padding:0px;
margin:0px;
}
.section_holder12.two .bshape{
width:40px;
height:20px;
float:left;
padding:0px;
margin: 131px 0px 0px -90px;
background:url(../images/site-img58.png) 0px 0px no-repeat;
z-index:10;
}
.section_holder12.two .bline{
width:80px;
height:5px;
float:left;
padding:0px;
margin:12px 0 0 0;
border-top:1px solid #a2a2a2;
border-bottom:1px solid #a2a2a2;
}
.section_holder12.two .smalltext{
padding:15px 0 15px 0;
}
.section_holder12.two .clint_hover_box{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
opacity:0;
border-radius:50%;
margin:0 0 0 0px;
background-color: #000;
z-index:5;
transition: opacity 0.3s ease-in-out 0s;
}
/*clint image hover styles*/
.section_holder12.two .clint_img:hover .clint_hover_box{
opacity:0.6;
background-color: #000;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img:hover .img_frame{
background-color: #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img:hover .bshape{
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
/*clint image active styles*/
.section_holder12.two .clint_img.active .clint_hover_box{
opacity:0.6;
background-color: #000;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img.active .img_frame{
background-color: #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder12.two .clint_img.active .bshape{
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
/*latest news styles*/
.section_holder12.two .news_img_holder {
position: relative;
width: 89%;
float: left;
padding: 0px;
margin: 0 0 25px 0;
/*overflow:hidden;*/
}
.section_holder12.two .news_img_holder .hoverbox {
position:absolute;
padding:15px;
margin:0px;
float: left;
width:100%;
height:176px;
left:0px;
top:-202px;
z-index:5;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12.two .news_img_holder .box_inner {
padding:0px;
margin:0px;
float: left;
width:100%;
height:100%;
border:1px solid #fff;
}
.section_holder12.two .news_img_holder .box_inner a.icon{
width:32px;
height:32px;
float:left;
padding:0;
color:#161616;
line-height:32px;
text-align:center;
margin:60px 5px 0 105px;
border-radius:2px;
background-color:#fff;
}
.section_holder12.two .news_img_holder .box_inner a.icon:hover{
color:#fff;
background-color:#161616;
}
.section_holder12.two .news_img_holder .box_inner a.icon.last{
margin:60px 5px 0 0px;
}
.section_holder12.two .news_img_holder .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:85px;
height:70px;
font-size:14px;
color:#161616;
text-align:center;
padding:0px;
margin:0px;
z-index:10;
left: 270px;
top: 50px;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder .date span{
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder12.two .img_bottom_strip {
width: 100%;
height: 8px;
float: left;
padding: 0px;
margin: 0px;
background-color: #fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .img_bottom_shape {
width: 100%;
height: 20px;
float: left;
padding: 0px;
margin: -3px 0px 0px 103px;
background: url(../images/site-img35.png) 0px 0px no-repeat;
z-index: 100;
}
.section_holder12.two .news_info{
width:89%;
float:left;
padding:0 0 13px 0;
margin:0px;
}
.section_holder12.two .news_info span{
font-family: 'Open Sans', sans-serif;
font-size:13px;
padding:0;
color:#a7a7a7;
margin:0 5px 0 0;
}
.section_holder12.two .smalltext{
width:89%;
padding:0;
margin:0;
}
/*hover styles*/
.section_holder12.two .news_img_holder:hover .hoverbox {
position:absolute;
left:0px;
top:0px;
transition: top .3s ease-in-out;
background: url(../images/site-img36.png) left top repeat;
}
.section_holder12.two .news_img_holder:hover .date {
background-color:#161616;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder:hover .date span {
color:#fff;
}
.section_holder12.two .news_img_holder:hover .img_bottom_strip {
background-color: #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder12.two .news_img_holder:hover .img_bottom_shape {
background: url(../images/site-img34.png) 0px 0px no-repeat;
}
/*section 21*/
.section_holder21{
width:100%;
float:left;
padding:50px 0 50px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder21 .smalltext{
color:#161616;
}
.section_holder21 .readmore_but6{
margin:20px 0 0 486px;
}
/*section 22*/
.section_holder22{
width:100%;
float:left;
padding:50px 0 80px 0;
margin:0px;
text-align:center;
}
.section_holder22.two{
padding:75px 0 75px 0;
}
.section_holder22 .icon{
width:240px;
height:240px;
padding:0;
font-size:93px;
text-align:center;
line-height:246px;
margin:0 auto 25px auto;
color:#161616;
border-radius:50%;
border:1px solid #c7c7c7;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder22 .one_third:hover .icon{
border:1px solid #fdce16;
background-color:#fdce16;
color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder22 .one_third:hover h3{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 23*/
.section_holder23{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg7.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder23 a .services_box {
width: 185px;
height: 185px;
background-color: #FFF;
margin: 77px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder23 .inner_box{
width:185px;
height:185px;
margin: -96px 0px 0px -41px;
padding:0px;
text-align:center;
border-radius:50%;
line-height:190px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder23 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#161616;
line-height:121px;
text-transform:uppercase;
}
.section_holder23 a .services_box:hover{
background-color: #161616;
border:1px solid #161616;
}
.section_holder23 a .services_box:hover .title{
color: #fff;
}
.section_holder23 a .services_box.active{
background-color: #161616;
border:1px solid #161616;
}
.section_holder23 a .services_box.active .title{
color: #fff;
}
/*section 24*/
.section_holder24{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg8.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_title_medium{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
text-transform:uppercase;
}
.title_medium_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line9.png) 0px 0px no-repeat;
}
.section_holder24 ul.circles{
width:100%;
float:left;
padding:0;
margin:30px 0 0 0;
}
.section_holder24 .circles li{
width:142px;
float:left;
color:#161616;
padding:0;
text-align:center;
margin:0 55px 0 0;
}
.section_holder24 .circles li.last{
margin:0 0 0 0;
}
.section_holder24 .circles li .circle_outer{
width:140px;
height:140px;
float:left;
padding:8.5px;
margin:0 0 15px 0;
border-radius:50%;
border:2px solid #fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_inner{
width:120px;
height:120px;
float:left;
font-size:36px;
color:#161616;
padding:0;
margin:0px;
text-align:center;
line-height:123px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .bline{
width:100%;
height:5px;
float:left;
padding:0;
margin:30px 0 30px 0;
border-top:1px solid #161616;
border-bottom:1px solid #161616;
}
.section_holder24 .readmore_but7{
margin-right:10px;
}
.section_holder24 .circles li .circle_outer:hover{
border:2px solid #161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_outer:hover .circle_inner{
color:#fdce16;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder24 .circles li .circle_outer.active{
border:2px solid #161616;
}
.section_holder24 .circles li .circle_outer.active .circle_inner{
color:#fdce16;
background-color:#161616;
}
/*blog styles*/
.section_holder24 .blog_post{
position:relative;
width:89%;
float:left;
padding:15px;
margin:0px;
background-color:#fff;
}
.section_holder24 .blog_post_inner{
width:100%;
float:left;
padding:0px;
margin:0px;
border:1px solid #d9d9d9;
}
.section_holder24 .contbox{
width:100%;
float:left;
padding:15px;
margin:0px;
}
.section_holder24 .post_img{
width:100%;
float:left;
padding:0px;
margin:0px;
}
.section_holder24 .blog_post .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:13px;
color:#161616;
text-align:center;
padding:0px;
margin: 55px 0px 0px 169px;
z-index:100;
background-color:#fff;
}
.section_holder24 .blog_post .date span{
font-family: 'Open Sans', sans-serif;
font-size:24px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder24 .blog_post .comments{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:24px;
color:#a3a3a3;
text-align:center;
padding:0px;
margin: 130px 0px 0px 169px;
z-index:100;
background-color:#161616;
}
.section_holder24 .blog_post .comments span{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
display:block;
color:#a3a3a3;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
/*section 25*/
.section_holder25{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background:url(../images/site-img66.jpg) 0px 0px repeat-x;
}
.section_holder25 .img{
position:relative;
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder25 .title_strip{
width:80%;
height:40px;
float:left;
padding: 7px 0px 0px 0px;
text-align:center;
margin:10px 10% 15px 10%;
border-radius:30px;
border:1px solid #d9d9d9;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder25 .img_bottom_strip{
width:100%;
height:10px;
float:left;
padding:0;
margin:0;
background-color:#fdce16;
}
.section_holder25 .bottom_shape{
width:80px;
height:20px;
float:left;
padding:0;
margin: -3px 0px 0px 119px;
background:url(../images/site-img35.png) top center no-repeat;
}
.section_holder25 .hover_box{
position:absolute;
width:100%;
height:175px;
float:left;
opacity:0;
padding:15px;
margin:0px;
background:url(../images/site-img59.png) 0px 0px repeat;
z-index:10;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .hover_box .innerbox{
width:100%;
height:100%;
float:left;
padding:0;
margin:0px;
border:1px solid #fdce16;
}
/*hover styles*/
.section_holder25 .one_third:hover .hover_box {
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .one_third:hover .title_strip {
border:1px solid #fdce16;
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder25 .one_third.active .hover_box {
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder25 .one_third.active .title_strip {
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 26*/
.section_holder26{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
border-top:1px solid #e7e7e7;
}
.section_holder26 .icon{
padding:0;
font-size:64px;
text-align:center;
margin:0 auto 20px auto;
color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .readmore_but9{
margin:70px 10px 0 434px;
}
.section_holder26 .readmore_but10{
margin:70px 0 0 0;
}
/*hover styles*/
.section_holder26 .one_fourth:hover .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth:hover h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth.active .icon{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder26 .one_fourth.active h4{
color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
/*section 27*/
.section_holder27{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg9.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder27 .left {
width: 43%;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .right {
width: 57%;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .left .img {
width:445px;
margin:0px;
float:left;
padding: 0px;
}
.section_holder27 .section_title {
font-family: "Raleway",sans-serif;
font-size: 45px;
font-weight: bold;
margin: 0px 0px 20px;
text-align:left;
padding:0px 0px 0px;
color: #161616;
text-transform: uppercase;
}
.section_holder27 .section_title_line {
width: 361px;
height: 3px;
margin: 0px 0px 44px 0px;
padding: 0px;
text-align:left;
background:url(../images/section_title_line1.png) 0px 0px no-repeat;
}
.section_holder27 ul.circles{
width:100%;
float:left;
padding:0;
margin:50px 0 40px 0;
}
.section_holder27 .circles li{
float:left;
padding:0;
margin:0 17px 0 0;
}
.section_holder27 ul.circles li a{
width:110px;
height:110px;
float:left;
font-size:30px;
color:#161616;
padding:0;
margin:0px;
text-align:center;
line-height:112px;
border-radius:50%;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder27 ul.circles li a:hover{
color:#fdce16;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder27 ul.circles li a.active{
color:#fdce16;
background-color:#161616;
}
.section_holder27 .readmore_but8{
margin:0 10px 0 0;
}
/*section 28*/
.section_holder28{
width:100%;
float:left;
padding:115px 0 115px 0;
margin:0px;
background: url("../images/parallax_bg10.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder28 .title {
font-family: "Raleway",sans-serif;
font-size: 60px;
font-weight: 600;
margin:0px;
text-align: center;
padding:0 0 35px 0;
color: #fff;
text-transform: uppercase;
}
.section_holder28 .title span {
color: #fdce16;
}
.section_holder28 .cont {
width:60%;
margin:0 auto;
text-align: center;
padding:0px;
color: #fff;
}
.section_holder28 .readmore_but4 {
margin:40px 0 0 500px;
}
/*section 29*/
.section_holder29{
width:100%;
float:left;
padding:75px 0 20px 0;
margin:0px;
text-align:center;
background: url("../images/parallax_bg11.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder29 .image_holder{
width:13%;
padding:0px;
margin:40px auto 0 auto;
}
.section_holder29 .image_holder .clint_img{
width:100%;
padding:0px;
margin:0;
float:left;
}
.section_holder29 .image_holder .img_frame{
width:142px;
height:142px;
float:left;
padding:11px;
margin:0px;
border-radius:50%;
z-index:10;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder29 .img{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
margin:0px;
}
.section_holder29 .bshape{
width:40px;
height:20px;
float:left;
padding:0px;
margin: 132px 0px 0px -86px;
background:url(../images/site-img58.png) 0px 0px no-repeat;
z-index:10;
}
.section_holder29 .clint_hover_box{
position:absolute;
width:120px;
height:120px;
float:left;
padding:0px;
opacity:0;
border-radius:50%;
margin:0 0 0 0px;
background-color: #000;
z-index:100;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder29 .bline{
width:80px;
height:5px;
float:left;
padding:0px;
margin:12px 0 8px 39px;
border-top:1px solid #161616;
border-bottom:1px solid #161616;
}
.section_holder29 .name{
text-align:center;
color:#161616;
font-weight:600;
padding:0;
margin:0px;
}
.section_holder29 .comp{
text-align:center;
color:#161616;
font-size:14px;
font-weight:normal;
padding:0;
margin:0px;
}
.section_holder29 .cont{
width:80%;
text-align:center;
color:#161616;
font-weight:normal;
padding:20px 0 0 0;
margin:0 auto;
}
/*hover styles*/
.section_holder29 .image_holder:hover .clint_hover_box {
opacity:0.5;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder29 .image_holder:hover .img_frame {
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder29 .image_holder:hover .bshape{
background:url(../images/site-img58_hover.png) 0px 0px no-repeat;
}
/*section 30*/
.section_holder30{
width:100%;
float:left;
padding:0px 0 0px 0;
margin:0px;
}
.section_holder30.two{
width:100%;
float:left;
padding:60px 0 0px 0;
margin:0px;
}
.section_holder30.three{
width:100%;
float:left;
padding:25px 0 30px 0;
margin:0px;
}
.section_holder30 .section_title {
font-size: 30px;
font-weight: bold;
float: left;
color: #161616;
padding: 0px 0px 14px;
margin: 0px;
}
.section_holder30 .title_bottom_line {
width: 100%;
height: 3px;
float: left;
padding: 0px;
margin: 0px 0px 40px;
background:url(../images/section_title_line10.png) 0px 0px no-repeat;
}
.section_holder30 .clint_logo{
position:relative;
width:175px;
height:60px;
padding:0;
float:left;
margin:0px;
}
.section_holder30.three .clint_logo{
position:relative;
width:175px;
height:60px;
padding:0;
float:left;
margin:0 20px 0 0;
}
.section_holder30 .clint_logo .hover_line{
position: absolute;
width:175px;
height:60px;
padding:0;
opacity:0;
float:left;
margin:0px;
border:2px solid #fdce16;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder30 .clint_logo:hover .hover_line{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
/*index4 top searchbar*/
/* search input field */
.nav_search input[type=search] {
background: #fff url(../images/search-icon.png) no-repeat 7px 10px;
border: solid 1px #d9d9d9;
padding: 5px 10px 5px 32px;
margin:18px 0 0 0;
width: 30px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
.nav_search input[type=search]:focus {
width: 130px;
background-color: #fff;
border-color: #fdce16;
/*
-webkit-box-shadow: 0 0 5px rgba(109,207,246,.5);
-moz-box-shadow: 0 0 5px rgba(109,207,246,.5);
box-shadow: 0 0 5px rgba(109,207,246,.5);*/
}
/* placeholder */
.nav_search input:-moz-placeholder {
color: #999;
}
.nav_search input::-webkit-input-placeholder {
color: #999;
}
.nav_search input[type=search] {
width: 36px;
float:right;
padding-left: 10px;
color: transparent;
cursor: pointer;
}
.nav_search input[type=search]:hover {
background-color: #fff;
}
.nav_search input[type=search]:focus {
width: 250px;
padding-left: 32px;
color: #000;
background-color: #fff;
cursor: auto;
}
.nav_search input:-moz-placeholder {
color: transparent;
}
.nav_search input::-webkit-input-placeholder {
color: transparent;
}
/*section 31*/
.section_holder31{
width:100%;
float:left;
padding:75px 0 40px 0;
margin:0px;
background: #fdce16 url(../images/site-img77.jpg) 0px 0px repeat-x;
}
.section_holder31 .img_holder{
width:100%;
float:left;
padding:15px;
margin:0px;
background-color:#FFF;
}
.section_holder31 .readmore_but5{
float:left;
color:#161616;
margin:30px 0 0 0;
}
/*section 32*/
.section_holder32{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background-color:#161616;
}
.section_holder32 a .services_box {
width: 185px;
height: 185px;
border:1px solid #414040;
margin: 77px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder32 .inner_box{
width:185px;
height:185px;
margin: -96px 0px 0px -41px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
line-height:190px;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder32 .inner_box .title{
font-size:22px;
text-align:center;
font-size:14px;
font-weight:600;
line-height:51px;
color:#fff;
line-height:121px;
text-transform:uppercase;
}
.section_holder32 a .services_box:hover{
background-color: #fdce16;
border:1px solid #fdce16;
}
.section_holder32 a .services_box:hover .title{
color: #161616;
}
.section_holder32 a .services_box.active{
background-color: #fdce16;
border:1px solid #fdce16;
}
.section_holder32 a .services_box.active .title{
color: #161616;
}
/*section 33*/
.section_holder33{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder33 .left{
width:36%;
float:left;
padding:0;
margin:0px;
}
.section_holder33 .right{
width:64%;
float:right;
padding:0 0 0 40px;
margin:0px;
text-align:center;
}
.section_holder33 .left .title_box {
width: 295px;
height: 295px;
background-color:#fdce16;
margin: 154px 0px 12px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder33 .left .inner_box{
width: 295px;
height: 295px;
margin: -148px 0px 0px -61px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
}
.section_holder33 .left .inner_box .title{
font-size:45px;
text-align:center;
font-weight:bold;
line-height:51px;
color:#161616;
padding:75px 0 0 0;
text-transform:uppercase;
}
.section_holder33 .left .title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0px;
background:url(../images/section_title_line11.png) 20px 0px no-repeat;
}
.section_holder33 .left .cont{
width:100%;
float:left;
color:#161616;
padding:20px 0 0 0;
margin:0px;
}
/*team styles*/
.section_holder33 .right .member{
position:relative;
width:100%;
float:left;
padding:0;
margin:0 0 18px 0;
border:1px solid #d9d9d9;
}
.section_holder33 .right .member_hover{
position:absolute;
width:100%;
height:100%;
float:left;
opacity:0;
padding:0;
margin:0;
background:url(../images/site-img36.png) 0px 0px repeat;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .member_hover ul.social_icons{
width:100%;
float:left;
padding:0;
margin: 145px 0px 0px 21px;
}
.section_holder33 .right .member_hover .social_icons li{
float:left;
padding:0;
margin:0;
}
.section_holder33 .right .member_hover .social_icons li a{
width:40px;
height:40px;
float:left;
font-size:18px;
color:#161616;
line-height:40px;
padding:0;
margin:0 5px 0 0;
background-color:#fff;
}
.section_holder33 .right .member_hover .social_icons li a:hover{
color:#fff;
background-color:#161616;
}
.section_holder33 .right .member_hover .social_icons li a.active{
color:#fff;
background-color:#161616;
}
/*team hover styles*/
.section_holder33 .right .one_third:hover .member_hover{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .one_third:hover .name{
color:#fdce16;
}
.section_holder33 .right .one_third:hover .desig{
color:#fdce16;
}
/*active hover styles*/
.section_holder33 .right .one_third.active .member_hover{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder33 .right .one_third.active .name{
color:#fdce16;
}
.section_holder33 .right .one_third.active .desig{
color:#fdce16;
}
/*section 34*/
.section_holder34{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: #fdce16 url(../images/site-img83.jpg) 0px 0px repeat-x;
}
.section_holder34 .img_left_holder{
width:98%;
float:left;
padding:0;
margin:20px 0 0 0;
}
.section_holder34 .text_holder_main{
width:100%;
float:left;
padding:0;
margin:0 0 40px 0;
}
.section_holder34 .text_holder_main.first{
margin:20px 0 40px 0;
}
.section_holder34 .icon_holder{
width:25%;
float:left;
padding:0;
margin:0px;
}
.section_holder34 .text_holder{
width:75%;
float:right;
padding:0;
margin:0px;
}
.section_holder34 .icon_holder .icon_box {
width: 85px;
height: 85px;
background-color:#fff;
margin:0px;
padding: 0px;
float: left;
text-align: center;
transform: rotate(-45deg);
transform-origin: 69px 30px 0;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder34 .icon_holder .icon_box .inner_box{
width: 85px;
height: 85px;
margin:0px;
padding:0px;
color:#fff;
text-align:center;
border-radius:50%;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: 0 100%;
transform-origin: 50% 50%;
}
.section_holder34 .icon_holder .icon_box .inner_box i{
margin:0px;
padding:0px;
font-size:24px;
line-height:78px;
color:#161616;
text-align:center;
}
.section_holder34 .text_holder .title{
float:left;
font-size:20px;
font-weight:400;
color:#161616;
padding:0 0 20px 0;
margin:0px;
}
/*section 35*/
.section_holder35{
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
.onhalf_title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line12.png) 0px 0px no-repeat;
}
.onhalf_title_medium{
font-size:30px;
font-weight:bold;
float:left;
color:#161616;
padding:0 0 14px 0;
margin:0px;
text-transform:uppercase;
}
/*section 36*/
.section_holder36{
width:100%;
float:left;
padding:75px 0 30px 0;
margin:0px;
background: url("../images/parallax_bg12.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder36 .icon{
width:105px;
height:105px;
padding:0;
font-size:30px;
color:#161616;
line-height:102px;
text-align:center;
margin:0 auto;
border-radius:50%;
background-color:#fff;
}
.section_holder36 .title{
padding:20px 0 0 0;
font-size:34px;
color:#fff;
font-weight:500;
text-transform:uppercase;
text-align:center;
margin:0 auto;
}
.section_holder36 .cont{
width:60%;
padding:30px 0 0 0;
color:#b4b3b3;
text-align:center;
margin:0 auto;
}
.section_holder36 .readmore_but4{
margin: 31px 0px 0px 513px;
}
/*section 37*/
.section_holder37{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder37 .left{
width:30%;
float:left;
padding:0;
margin:0px;
text-align:center;
}
.section_holder37 .right{
width:70%;
float:right;
padding:0px;
margin:0px;
}
.section_holder37 .right .text_holder{
width:100%;
float:left;
padding:30px;
margin:0px;
border:1px solid #a2a2a2;
}
.section_holder37 .img{
position:relative;
width:145px;
height:145px;
padding:12px;
margin:0 auto 10px auto;
border-radius:50%;
background-color:#161616;
}
.section_holder37 .left .line{
width:55px;
height:5px;
padding:0px;
border-top:1px solid #a3a3a3;
border-bottom:1px solid #a3a3a3;
margin:0 auto 10px auto;
}
.section_holder37 .right .cont{
padding:0;
margin:0;
}
.section_holder37 .right .line{
width:100%;
display:block;
height:1px;
padding:0;
margin:5px 0 0 0;
border:none;
background-color:#a2a2a2;
}
.section_holder37 .img .hover_circle{
position: absolute;
width:120px;
height:120px;
float:left;
opacity:0;
padding:0px;
margin:0;
border-radius:50%;
transition: opacity 0.3s ease-in-out 0s;
background:url(../images/site-img59.png) 0px 0px repeat;
}
/*hover styles*/
.section_holder37 .left:hover .hover_circle{
opacity:0.8;
padding:0px;
margin:0;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder37 .left:hover .img{
background-color:#fdce16;
}
/*active styles*/
.section_holder37 .left.active .hover_circle{
opacity:0.8;
padding:0px;
margin:0;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder37 .left.active .img{
background-color:#fdce16;
}
/*home section 38*/
.section_holder38 {
float: left;
width: 100%;
text-align: left;
padding: 75px 0 75px 0px;
background: url("../images/parallax-bg13.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
position:relative;
min-height: 550px;
}
.section_holder38 .contitle{
text-align:center;
font-size: 47px;
font-weight: 700;
}
.section_holder38 .title_left{
font-size:40px;
font-weight:700;
padding:0px;
margin:0px;
float:left;
color:#fff;
text-transform:uppercase;
}
.section_holder38 .address{
width:45%;
padding:0px;
margin:95px 0 0 0;
float:left;
border-right:1px solid #323233;
}
.section_holder38 .address .info{
font-size:14px;
font-weight:normal;
padding:0px;
margin:0 0 20px 0;
float:left;
color:#727272;
}
.section_holder38 .address .info i{
font-size:20px;
padding:5px 10px 0 0;
margin:0px;
float:left;
color:#fff;
}
.section_holder38 .address .info.two i{
font-size:14px;
padding:5px 10px 0 0;
margin:0px;
float:left;
color:#fff;
}
.section_holder38 .newsletter_holder{
width:45%;
font-size:14px;
font-weight:normal;
padding:0px;
margin:95px 0 0 0;
float:right;
color:#727272;
}
.section_holder38 .newsletter_holder .title{
font-family: 'Open Sans', sans-serif;
font-size:16px;
font-weight:600;
padding:0px;
margin:20px 0 30px 0;
float:left;
text-transform:none;
color:#fff;
}
.section_holder38 .form_holder{
width:485px;
padding:25px;
margin:0px;
float:right;
background: url(../images/site-img112.png) 0 0 repeat;
}
.less1 {
width: 75%;
margin: 0 auto;
}
.readmore_but1:hover {
color: #2fbb6a;
}
/*shop styles*/
.shop_top_nav .right {
float: left;
width: 100%;
padding:8px 0 8px 0px;
}
.shop_top_nav .left {
float: left;
width: 40%;
font-size:13px;
padding-top:8px;
}
.shop_top_nav .left a {
font-size:13px;
color:#727272;
float:left;
padding:0 10px 0 0;
}
.shop_top_nav .left a i {
color:#fdce16;
}
.shop_top_nav .left a:hover {
color:#727272;
}
.shop_toplist li a{
padding:0 20px 0 0;
margin:0px;
font-size:13px;
text-align:left;
float:left;
color:#727272;
border:none;
}
.shop_toplist li a:hover{
color:#272727;
}
.top_search_holder{
padding:0px;
margin:-40px 0 0 0;
float:right;
}
/* shop search input field */
.shop_search input[type=search] {
background: #fff url(../images/search-icon.png) no-repeat 2px 6px;
border: solid 1px #d9d9d9;
padding: 0px 10px 0px 32px;
margin:18px 0 0 0;
width: 30px;
-webkit-border-radius: 10em;
-moz-border-radius: 10em;
border-radius: 10em;
-webkit-transition: all .5s;
-moz-transition: all .5s;
transition: all .5s;
}
.shop_search input[type=search]:focus {
width: 130px;
background-color: #fff;
border-color: #fdce16;
}
/* placeholder */
.shop_search input:-moz-placeholder {
color: #999;
}
.shop_search input::-webkit-input-placeholder {
color: #999;
}
.shop_search input[type=search] {
width: 27px;
float:right;
padding-left: 10px;
color: transparent;
cursor: pointer;
}
.shop_search input[type=search]:hover {
background-color: #fff;
}
.shop_search input[type=search]:focus {
width: 260px;
padding-left: 32px;
color: #000;
background-color: #fff;
cursor: auto;
}
.shop_search input:-moz-placeholder {
color: transparent;
}
.shop_search input::-webkit-input-placeholder {
color: transparent;
}
.shop_punchtext{
width:100%;
float:left;
padding:20px 0;
margin:0px;
background-color:#fdce16;
}
.shop_punchtext .title{
float:left;
font-size:24px;
color:#161616;
font-weight:300;
padding:8px 0 0 0;
margin:0px;
}
.shop_punchtext .readmore_but8{
float:right;
}
/*shop title medium*/
.shop_title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 40px 0;
background:url(../images/section_title_line6.png) 0px 0px no-repeat;
}
.shop_title_medium{
font-size:22px;
font-weight:600;
float:left;
color:#161616;
padding:0 0 5px 0;
margin:0px;
text-transform:uppercase;
}
/*section 39*/
.section_holder39{
position:relative;
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
.section_holder39.two{
padding:40px 0 10px 0;
}
/*grid view*/
.pro_container {
padding:0 0 30px 0;
margin:0px;
float:left;
width:100%;
}
.pro_container ul {
padding:0px;
margin:0px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
text-align: center;
width: 22.7%;
}
.pro_container.two .grid li {
width: 28.7%;
}
.pro_container .grid li.last {
margin-right:0px;
}
.pro_container.two .grid li {
float: left;
margin: 0 35px 40px 0;
padding: 0;
width: 28.7%;
}
/*for tabbed style*/
.pro_container2 {
padding:0px;
margin:0px;
float:left;
width:100%;
}
.pro_container2 ul {
padding:0px;
margin: 48px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container2 .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
width: 22.7%;
text-align: center;
}
.pro_container2 .grid li.last {
margin-right:0px;
}
/*for tabbed style 2*/
.pro_container3 {
padding:0px;
margin:0px;
float:left;
width:100%;
}
.pro_container3 ul {
padding:0px;
margin:50px 0px 0px 0px;
float:left;
list-style: none;
}
.pro_container3 .grid li {
float: left;
margin: 0 35px 0 0;
padding: 0;
width: 22.7%;
}
.pro_container3 .grid li.last {
margin-right:0px;
}
.grid li .proimage {
padding:0px;
margin:0px 0px 15px 0px;
float:left;
border: 1px solid #eaeaea;
background-color:#F30;
}
.grid li .proimage img {
width:100%;
}
.grid li .proprice{
font-size:16px;
padding:10px 0 22px 0;
margin:0px;
text-align:center;
color:#fdce16;
}
.grid li .addbut{
font-size:14px;
padding:7px 13px;
margin: 0px;
color:#161616;
border-radius:2px;
background-color:#fdce16;
}
.grid li .addbut:hover{
color:#fff;
background-color:#272727;
}
.grid li .addbut.two {
margin:0px;
}
/*list view*/
.pro_container .list li {
width: 98%;
padding:20px 0px 20px 0px;
margin:0px;
float:left;
border-bottom: 1px solid #eaeaea;
}
.pro_container .list li.last {
border-bottom: none;
}
.list li .proimage {
padding:0px;
margin:0px 20px 15px 0px;
float:left;
width:15%;
border: 1px solid #eaeaea;
}
.list li .proimage img {
width:100%;
}
.list li .proprice{
font-size:16px;
padding:0 0 22px 0;
margin:0px;
color:#fdce16;
}
.list li h4{
padding:0px 0px 15px 0px;
margin:0px;
}
.list li .addbut{
font-size:14px;
padding:7px 13px;
margin:0px;
color:#fff;
border-radius:2px;
background-color:#fdce16;
}
.list li .addbut:hover{
background-color:#272727;
}
/* view controls*/
.viewcontrols_holder{
position: absolute;
width:70px;
padding:0px;
float:right;
margin: -72px 0px 0px 1079px;
}
#viewcontrols a.grid{
margin: 0 4px 0 0px;
color:#161616;
padding:0px;
cursor:pointer;
}
#viewcontrols a.list{
color:#161616;
cursor:pointer;
}
#viewcontrols a.grid.grid-active{
color:#fdce16;
}
#viewcontrols a.list.list-active{
color:#fdce16;
}
/*section 40*/
.section_holder40{
width:100%;
float:left;
padding:100px 0 100px 0;
margin:0px;
background: url("../images/parallax-bg14.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder40 .title {
font-size: 35px;
color: #fff;
font-weight: 400;
padding: 0px;
margin: 0px 0px 0px;
}
.section_holder40 .title .strong {
font-size: 35px;
color: #fff;
font-weight: 700;
padding: 0px;
margin: 0px;
}
.section_holder40 .subtext {
width: 60%;
font-family: "Open Sans",sans-serif;
font-size: 18px;
color: #fff;
font-weight: 400;
padding: 19px 0px 0px;
float: left;
margin: 0px;
}
.section_holder40 .cont {
width: 50%;
color: #727272;
font-weight: 400;
padding: 30px 0px 0px;
float: left;
margin: 0px;
}
.section_holder40 .readmore_but4 {
margin:35px 0px 0px 0px;
float: left;
}
/*section 41*/
.section_holder41{
width:100%;
float:left;
padding:75px 0 50px 0;
margin:0px;
}
/*shop banner*/
.section_holder42 {
width:100%;
float:left;
padding:50px 0 50px 0;
margin:0px;
background: url("../images/parallax-bg15.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder42 .banner_left {
float: left;
width: 70%;
padding:40px 0 0 0;
margin:0px;
background:url(../images/shop-img41.jpg) right 60px no-repeat;
}
.section_holder42 .banner_left .img_holder {
width:330px;
height:280px;
float: left;
padding:0;
margin:0 15px 0 0;
}
.section_holder42 .banner_left .medium_text {
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
color:#fff;
float: left;
padding:0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_left .big_text {
font-family: 'Open Sans', sans-serif;
font-size:45px;
font-weight:700;
color:#fff;
float: left;
padding:30px 0 13px 0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_left .big_text span {
color:#fdce16;
}
.section_holder42 .banner_left .verysmall_text {
font-family: 'Open Sans', sans-serif;
font-size:13px;
font-weight:600;
color:#fff;
float: left;
padding:40px 0 0 0;
margin:0px;
text-transform:uppercase;
}
.section_holder42 .banner_right {
float: right;
width: 30%;
height:360px;
padding:0;
margin:0px;
background:url(../images/site-img118.png) center center no-repeat;
}
.section_holder42 .banner_right .medium_text {
font-family: 'Open Sans', sans-serif;
font-size:18px;
font-weight:600;
color:#161616;
float: left;
padding:4px;
margin:0 0 0 78px;
background-color:#fdce16;
text-transform:uppercase;
}
.section_holder42 .banner_right .big_text {
font-family: 'Open Sans', sans-serif;
font-size:30px;
font-weight:700;
color:#272727;
float: left;
padding:4px;
margin: 169px 0 0 78px;
text-transform:uppercase;
background-color:#fff;
}
.section_holder42 .banner_left .more_but{
font-size:14px;
padding:7px 13px;
margin: 25px 200px 0 0px;
color:#161616;
float:left;
border-radius:2px;
display:block;
background-color:#fdce16;
}
.section_holder42 .banner_left .more_but:hover{
color:#272727;
background-color:#fff;
}
/* section 43*/
.section_holder43 {
float: left;
width: 100%;
padding:75px 0 50px 0;
margin:0px;
background-color:#fdce16;
}
.section_holder43 .title {
padding:0px;
margin:0 0 30px 0;
float:left;
font-size:35px;
font-weight:300;
color:#272727;
}
.section_holder43 .title .strong {
padding:0px;
margin:0px;
float:left;
font-size:35px;
font-weight:600;
color:#272727;
}
.section_holder43 .left {
float: left;
width: 18%;
padding:0px;
margin:0px;
}
.section_holder43 .right {
float: left;
width: 82%;
padding:0px;
margin:0px;
}
.section_holder43 .img_main {
float: left;
width: 180px;
height:180px;
padding:10px;
margin:0px;
border-radius:100%;
background-color:#fff;
}
.section_holder43 .img {
float: left;
width: 160px;
height:160px;
padding:10px;
margin:0px;
border-radius:100%;
background:url(../images/site-img119.jpg) 0 0 no-repeat;
background:-size:100%;
}
.section_holder43 .img.two {
background:url(../images/site-img119.jpg) 0 0 no-repeat;
}
.section_holder43 .right .cont {
padding-top:20px;
color:#161616;
}
.section_holder43 .right .name {
display:block;
font-size:14px;
font-weight:600;
color:#161616;
padding:30px 0 0 0;
margin:0px;
float:left;
color:#161616;
}
.section_holder43 .right .desig {
font-weight:normal;
color:#161616;
padding:0;
margin:0px;
float:left;
color:#161616;
}
/* section 44*/
.section_holder44 {
float: left;
width: 100%;
padding:75px 0 65px 0;
margin:0px;
}
.section_holder44 .title {
font-size:20px;
padding: 0px;
margin:0 0 30px 0;
float: left;
font-weight: 600;
}
.section_holder44 .holder_main {
float: left;
width: 100%;
padding:0px;
margin:0 0 20px 0;
}
.section_holder44 .left {
float: left;
width: 13%;
padding:0px;
margin:0px;
}
.section_holder44 .right {
float: left;
width: 87%;
padding:0px;
margin:0px;
}
.section_holder44 .icon {
float: left;
width:32px;
height:32px;
font-size:14px;
color:#fff;
padding:0px;
text-align:center;
line-height:30px;
margin:8px 0 0 0;
border-radius:100%;
background-color:#fdce16;
}
.section_holder44 .right .title {
font-size:16px;
font-weight:400;
color:#161616;
padding:0px;
margin:0px;
}
.section_holder44 .right .cont {
float: left;
padding:0px;
margin:0px;
}
/*shop preview fullwidth*/
/* section 45*/
.header_medium {
float: left;
width: 100%;
height:300px;
padding:0;
margin:0px;
background:url(../images/site-img120.jpg) 0px 0px no-repeat;
}
.header_medium.two{
background:url(../images/site-img126.jpg) center top no-repeat;
}
.header_medium .bigtext {
font: 14px 'Open Sans', sans-serif;
float: right;
font-size:42px;
color:#fff;
width: 100%;
padding:110px 0 0 0;
text-align:right;
font-weight:bold;
margin:0px;
}
.header_medium.two .bigtext {
font: 14px 'Open Sans', sans-serif;
float: right;
font-size:42px;
color:#fff;
padding:95px 0 0 0;
text-align:center;
font-weight:bold;
margin:0px;
text-transform:uppercase;
}
.header_medium.two .smalltext {
font: 14px 'Open Sans', sans-serif;
font-size:42px;
color:#fff;
padding:100px 0 0 0;
text-align:center;
font-weight:200;
margin:0px;
text-transform:uppercase;
}
.header_medium.two .smalltext span {
color:#fdce16;
}
.header_medium .bigtext span {
color:#fdce16;
}
/* section 46*/
.section_holder46 {
float: left;
width: 100%;
padding:25px 0 10px 0;
margin:0px;
border-bottom:1px solid #e9e9e9;
}
.pagetitle {
float: left;
width: 50%;
font-size: 30px;
text-align: left;
font-weight: normal;
color: #161616;
margin:0px;
padding: 0px;
}
.pagenation {
float: right;
width: 50%;
font-size: 14px;
text-align: right;
font-weight: normal;
color: #999;
margin: 5px 0px 0px;
padding: 0px;
}
.pagenation a {
color: #161616;
}
/* section 47 */
.section_holder47{
width:100%;
padding:75px 0 75px 0;
margin:0px;
float:left;
}
.section_holder47.two{
padding:50px 0 50px 0;
}
.product_preview_left{
width:45%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.product_info_right{
width:55%;
padding:0px 0 0px 0;
margin:0px;
float:right;
}
.product_info_right .smalltext{
padding:30px 0 30px 0;
margin:0px;
float:left;
}
.section_holder47 .product_title{
font-family: 'Raleway', sans-serif;
padding:0;
margin:0px;
float:left;
font-size:32px;
color:#272727;
font-weight:400;
}
.section_holder47 .product_title .strong{
font-weight:600;
}
.section_holder47 .line{
width:100%;
height:1px;
float:left;
padding:0px;
margin:17px 0 0 0;
background-color:#eaeaea;
}
.product_info_right .price{
font-family: 'Open Sans', sans-serif;
width:70%;
float:left;
padding:25px 0 0 0;
margin:0;
font-size:36px;
color:#fdce16;
}
.product_info_right .rating_right span.stars {
color:#e52e47;
padding: 0px 0px;
margin: 0px 0px 0px 0px;
display:block;
}
.product_info_right .rating_right{
width:30%;
float:right;
padding:25px 0 0 0;
margin:0;
font-size:14px;
color:#727272;
}
.product_info_right .rating_right span.stars i {
color:#fdce16;
font-size:16px;
margin-right:5px;
}
.product_info_right .quantity_box {
width:100px;
height:35px;
color:#272727;
font-size:16px;
}
.product_info_right .add_but {
font-size:14px;
padding:7px 13px;
margin: -33px 8px 0 20px;
color:#161616;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.product_info_right .add_but:hover {
color:#fff;
background-color:#272727;
}
.product_info_right .aproduct_id {
padding:0 0 10px 0;
margin:0px;
float:left;
font-size:14pxpx;
color:#727272;
}
.product_info_right .aproduct_id span {
padding:0 8px 0 0;
margin:0px;
float:left;
font-size:14pxpx;
color:#272727;
font-weight:400;
}
/*quantity*/
.product_quantity {
width:124px;
height:42px;
font-family:"ProximaNova Bold", Helvetica, Arial;
}
.number_minus {
width:40px;
height:40px;
border:1px solid #eaeaea;
float:left;
text-align:center;
}
.product_input {
width:40px;
height:40px;
border:1px solid #eaeaea;
border-left:0px solid black;
float:left;
}
.number_plus {
width:40px;
height:40px;
border:1px solid #eaeaea;
border-left:0px solid #eaeaea;
float:left;
text-align:center;
}
.product_input input {
width:30px;
height:34px;
padding:0;
text-align:center;
font-family:"ProximaNova Bold", Helvetica, Arial;
border: none;
}
.product_input input:focus {
border:1px solid #eaeaea;
border: none;
}
.number_minus a, .number_plus a {
display: block;
width: 100%;
height: 100%;
color:#272727;
padding-top: 5px;
}
/*social icons*/
.section_holder47 ul.social_icons{
padding:0px;
margin:0px;
float:left;
}
.section_holder47 .social_icons li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.section_holder47 .social_icons li a{
width:45px;
height:45px;
padding:0px;
margin-top:0px;
float:left;
color:#161616;
display: inline;
text-align:center;
}
.section_holder47 .social_icons li a i{
color:#161616;
font-size:18px;
line-height:45px;
}
/* section 48 */
.section_holder48{
width:100%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.section_holder48.two{
width:100%;
padding:0px 0 0px 0;
margin:0px;
float:left;
}
.section_holder48 .review_img {
padding: 0px;
margin: 0px;
float: left;
width: 11%;
}
.section_holder48 .text_holder {
width: 89%;
padding: 0px;
float: right;
margin: 0px;
}
.section_holder48 .name {
width: 80%;
font-size: 16px;
color: #272727;
float: left;
font-weight: 400;
padding: 0px;
margin: 0px 0px 20px;
display: block;
}
.section_holder48 .stars {
width: 10%;
padding: 0px;
float: right;
font-size: 16px;
color: #fdce16;
margin: 0px;
}
.section_holder48 .text {
font-size: 14px;
color: #727272;
font-weight: 400;
padding: 25px;
float: left;
margin: 0px;
display: block;
border-radius: 4px;
background-color: #F3F3F3;
}
.section_holder48 .review_like {
width: 80%;
margin: 0px;
padding: 15px 0px 0px;
float: right;
text-align: right;
font-size: 14px;
color: #727272;
}
.section_holder48 .review_like a {
color: #fdce16;
}
.section_holder48 .line {
width: 100%;
padding: 0px;
margin: 45px 0px;
float: left;
height: 1px;
background-color: #EAEAEA;
}
.section_holder48 .form_title {
padding: 0px;
font-size: 20px;
font-weight: 500;
color: #fdce16;
margin: 0px;
text-transform: none;
}
/*section 49*/
.section_holder49{
width:100%;
float:left;
padding:30px 0 50px 0;
margin:0px;
}
.section_holder49.two{
width:100%;
float:left;
padding:30px 0 0px 0;
margin:0px;
}
/*section 50*/
.section_holder50{
width:100%;
float:left;
padding:0px 0 0px 0;
margin:0px;
}
.section_holder50.two{
padding:30px 0 0px 0;
}
/*preview with sidebar*/
.product_info_right.two{
width:48%;
}
.product_preview_left.two {
width: 52%;
}
.product_info_right.two .price {
width: 100%;
}
.product_info_right.two .rating_right {
width: 100%;
}
.section_holder48.two .text_holder {
width: 84%;
}
.section_holder48.two .stars {
width: 15%;
}
.pro_container2.two .grid li {
float: left;
margin: 0px 35px 40px 0px;
padding: 0px;
width: 29.7%;
}
/*product preview sidebar*/
.pro_sidebar_title {
width:100%;
font-size:18px;
padding: 0px;
float:left;
margin: 0px 0px 20px 0px;
font-weight: 500;
color: #161616;
display:block;
}
/*product sidebar search*/
.pro_sidebar_search {
width:100%;
padding: 50px 0 40px 0;
float:left;
margin:0px;
}
.pro_sidebar_search .search {
background: none repeat scroll 0px 0px #FFF;
border: 0px none;
float: left;
width: 100%;
padding:0px;
margin:0;
}
.pro_sidebar_search .search .serch_input{
border: 0px none;
color: #161616;
float: left;
font-size: 13px;
font-weight: normal;
height: 40px;
line-height: 39px;
padding: 0px 7px;
width: 70%;
border-left:1px solid #d9d9d9;
border-top:1px solid #d9d9d9;
border-bottom:1px solid #d9d9d9;
}
.pro_sidebar_search .search .search_submit {
padding: 5px 10px;
margin: 0px;
float: left;
height: 40px;
background-color:#fff;
border:1px solid #d9d9d9;
}
/*products sidebar categories*/
.categories_holder {
width:100%;
padding: 0px 0 40px 0;
float:left;
margin:0px;
}
.categories_holder ul.list {
width:100%;
padding:0;
float:left;
margin:0px;
}
.categories_holder .list li {
width:100%;
padding:0;
float:left;
margin:0px;
border-bottom:1px solid #d9d9d9;
}
.categories_holder .list li.last {
border-bottom:none;
}
.categories_holder .list li a {
color:#727272;
padding:12px 0;
float:left;
margin:0px;
}
.categories_holder .list li.first a {
padding:0px 0 12px 0;
}
.categories_holder .list li a:hover {
color:#fdce16;
}
/*products sidebar top rated products*/
.toprated_products {
width:100%;
padding: 0px 0 40px 0;
float:left;
margin:0px;
}
.product_holder {
width:100%;
padding:0;
float:left;
margin:0 0 20px 0;
}
.product_holder.last {
margin:0 0 0px 0;
}
.toprated_products .left {
width:32%;
padding:0;
float:left;
margin:0px;
}
.toprated_products .left .img {
width:80px;
height:80px;
padding:0;
float:left;
margin:0px;
border:1px solid #d9d9d9;
}
.toprated_products .right {
width:68%;
padding:0;
float:right;
margin:0px;
}
.toprated_products .right .title {
color:#161616;
padding:0 0 10px 0;
font-size:15px;
font-weight:normal;
float:left;
margin:0px;
}
.toprated_products .right .stars {
width: 100%;
padding: 0px;
margin: 0px;
float:left;
}
.toprated_products .right .stars i {
padding: 0 5px 0 0;
font-size: 16px;
color: #FDCE16;
margin: 0px;
}
.toprated_products .right .price {
padding: 0px;
margin: 0px;
color:#161616;
float:left;
}
/*hover styles*/
.product_holder:hover .img{
border:1px solid #fdce16;
}
.product_holder:hover .title{
color:#fdce16;
}
/*active styles*/
.product_holder.active .img{
border:1px solid #fdce16;
}
.product_holder.active .title{
color:#fdce16;
}
/* product tags */
.products_tags {
width:100%;
padding:0;
float:left;
margin:0px;
}
.products_tags ul.tags{
width:100%;
padding:0;
float:left;
margin:0px;
}
.products_tags .tags li{
padding:0;
float:left;
margin:0px;
}
.products_tags .tags li a {
float: left;
padding: 5px 12px;
margin: 0 6px 6px 0;
color: #161616;
background-color: #fdce16;
border-radius: 2px;
}
.products_tags .tags li a:hover {
color: #fff;
background-color: #161616;
}
/*sidebar latest posts*/
.sidebar_latest_posts {
width:100%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder {
width:100%;
padding:0;
float:left;
margin:0 0 30px 0;
}
.sidebar_latest_posts .post_holder .left {
width:32%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder .left .img {
width:80px;
padding:0;
float:left;
margin:0px;
border:1px solid #d9d9d9;
}
.sidebar_latest_posts .post_holder .right {
width:68%;
padding:0;
float:right;
margin:0px;
}
.sidebar_latest_posts .post_holder .right .info {
width:100%;
padding:0;
float:left;
margin:0px;
}
.sidebar_latest_posts .post_holder .right .info span {
color:#727272;
padding:0 8px 0 0;
font-size:13px;
}
/*sidebar latest posts hover styles*/
.sidebar_latest_posts .post_holder:hover .img {
border:1px solid #fdce16;
}
.sidebar_latest_posts .post_holder:hover h6 {
color:#fdce16;
}
/*active styles*/
.sidebar_latest_posts .post_holder.active .img {
border:1px solid #fdce16;
}
.sidebar_latest_posts .post_holder.active h6 {
color:#fdce16;
}
/*sidebar featured works*/
.sidebar_featured_works{
width:100%;
padding:25px 0 0 0;
float:left;
margin:0px;
}
.sidebar_featured_works ul.works {
width:100%;
padding:0;
float:left;
margin:0;
}
.sidebar_featured_works ul.works li {
padding:0;
float:left;
margin:0;
}
.sidebar_featured_works .works li a {
width:65px;
padding:0;
float:left;
margin:0 6px 6px 0;
}
.sidebar_featured_works .works li a:hover {
opacity:0.8;
}
/* section 52 */
.section_holder52{
width:100%;
padding:60px 0 0 0px;
margin:0px;
float:left;
}
.section_holder52 .post_img{
position:relative;
width:100%;
padding:0;
margin:0px;
float:left;
}
.section_holder52 .img{
width:96%;
padding:0;
margin:0px;
float:right;
}
.section_holder52 .bottom_strip{
width:96%;
height:14px;
padding:0;
margin:0px;
float:right;
background-color:#fdce16;
}
.section_holder52 .bottom_shape{
width:80px;
height:27px;
padding:0;
margin: -10px 0px 0px 379px;
float:left;
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
.section_holder52 .post_img .date{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:13px;
color:#161616;
text-align:center;
padding:0px;
margin: 83px 0px 0px -32px;
z-index:100;
background-color:#fdce16;
}
.section_holder52 .post_img .date span{
font-family: 'Open Sans', sans-serif;
font-size:24px;
font-weight:600;
display:block;
color:#161616;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder52 .post_img .comments{
font-family: 'Open Sans', sans-serif;
position:absolute;
width:75px;
height:75px;
font-size:24px;
color:#a3a3a3;
text-align:center;
padding:0px;
margin: 158px 0px 0px -32px;
z-index:100;
background-color:#161616;
}
.section_holder52 .post_img .comments span{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
display:block;
color:#a3a3a3;
text-align:center;
padding:12px 0 0 0;
margin:0px;
}
.section_holder52 .post_text{
width:96%;
padding:0;
margin:0px;
float:right;
}
.section_holder52 .post_text .toppadd{
padding-top:15px;
}
.section_holder52 .post_text .divider_line{
width:100%;
height:1px;
border:none;
padding:0;
margin:50px 0 50px 0;
float:left;
background-color:#e7e7e7;
}
.section_holder52 .comment_info{
width:100%;
padding:20px;
margin:0 0 20px 0;
float:left;
border:1px solid #e7e7e7;
}
.section_holder52 .comment_info .left{
width:20%;
padding:0px;
margin:0;
float:left;
}
.section_holder52 .comment_info .right{
width:80%;
padding:0px;
margin:0;
text-align:left;
float:right;
}
.section_holder52 .comment_info .left .img{
width:130px;
height:135px;
padding:0px;
margin:0;
float:left;
border:1px solid #fff;
}
.section_holder52 .comment_info .right .name{
width:80%;
float:left;
}
.section_holder52 .comment_info .right .date{
width:20%;
color:#fdce16;
text-align:right;
float:right;
}
.section_holder52 .comment_info .right a.more{
font-size:14px;
color:#fdce16;
font-weight:500;
padding:5px 0 0 0;
margin:0;
float:left;
text-decoration:underline;
}
.section_holder52 .comment_title{
font-size:26px;
color:#161616;
font-weight:600;
padding:40px 0 30px 0;
margin:0;
float:left;
}
.section_holder52 .comment_info .right a.readmore{
font-size:14px;
color:#161616;
font-weight:normal;
padding:5px 15px;
margin:15px 0 0 0;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.section_holder52 .comment_info .right a.readmore:hover{
color:#fff;
background-color:#161616;
}
.section_holder52 .comment_info.two{
width:81%;
margin:0 0 20px 0;
float:right;
}
.section_holder52 .comment_info.two .right {
width: 76%;
}
.section_holder52 .form_title {
padding:40px 0 0px 0;
font-size: 26px;
font-weight: 600;
color: #161616;
margin: 0px;
text-transform: none;
}
.section_holder52 a.loadmore_but{
width:100%;
font-size:16px;
color:#161616;
font-weight:600;
padding:20px 15px;
margin:40px 0 40px 0;
text-align:center;
float:left;
border-radius:2px;
text-transform:uppercase;
background-color:#fdce16;
}
.section_holder52 a.loadmore_but:hover{
color:#fff;
background-color:#161616;
}
/*hover styles*/
.section_holder52 .comment_info:hover{
border:1px solid #fdce16;
}
.section_holder52 .comment_info:hover .name{
color:#fdce16;
}
/*sidebar social icons*/
.sidebar_social_icons{
width:100%;
padding:0px;
margin:25px 0 0 0;
float:left;
}
.sidebar_social_icons ul.social_icons{
padding:0px;
margin:0px;
float:left;
}
.sidebar_social_icons .social_icons li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.sidebar_social_icons .social_icons li a{
width:45px;
height:45px;
padding:0px;
margin:0px;
float:left;
color:#161616;
display: inline;
text-align:center;
background-color:#fff;
border:1px solid #d9d9d9;
}
.sidebar_social_icons .social_icons li a:hover{
background-color:#fdce16;
border:1px solid #fdce16;
}
.sidebar_social_icons .social_icons li a i{
color:#161616;
font-size:18px;
line-height:45px;
}
/*section 53*/
.section_holder53{
width:100%;
padding:0px;
margin:60px 0 60px 0;
float:left;
}
.section_holder53 .post_holder{
width:96%;
padding:0px;
margin:0px;
float:right;
}
.section_holder53 .post_img{
position:relative;
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder53 .post_holder .bottom_strip {
width: 100%;
height: 14px;
padding: 0px;
margin: 0px 0px 0px 0px;
float: right;
background-color: #FDCE16;
}
.section_holder53 .bottom_shape {
width: 80px;
height: 27px;
padding: 0px;
margin: -10px 0px 0px 492px;
float: left;
background:url(../images/site-img57.png) 0px 0px no-repeat;
}
.section_holder53 .post_holder a h2:hover {
color: #fdce16;
}
.section_holder53 .post_holder .date {
font-family: "Open Sans",sans-serif;
position: absolute;
width:100px;
height: 100px;
font-size: 16px;
color: #161616;
text-align: center;
padding: 0px;
margin: 128px 0px 0px -40px;
z-index: 100;
background-color: #FDCE16;
}
.section_holder53 .post_holder .date span {
font-family: "Open Sans",sans-serif;
font-size: 40px;
font-weight: 600;
display: block;
color: #161616;
text-align: center;
padding: 25px 0px 10px 0px;
margin: 0px;
}
.section_holder53 .post_holder .comments {
font-family: "Open Sans",sans-serif;
position: absolute;
width:100px;
height:100px;
font-size: 40px;
color: #A3A3A3;
text-align: center;
padding: 0px;
margin: 228px 0px 0px -40px;
z-index: 100;
background-color: #161616;
}
.section_holder53 .post_holder .comments span {
font-family: "Open Sans",sans-serif;
font-size: 30px;
font-weight: 600;
display: block;
color: #A3A3A3;
text-align: center;
padding: 12px 0px 10px 0px;
margin: 0px;
}
.section_holder53 .post_holder .readmore_but12 {
margin: 35px 0 0 0;
float:left;
}
.section_holder53 .divider_line {
width:95%;
height:1px;
margin:40px 0;
padding:0px;
border:none;
float:right;
background-color:#e7e7e7;
}
/*post hover box*/
.section_holder53 .post_img .hover_box{
position:absolute;
width:100%;
height:100%;
padding:30px;
margin:0px;
float:left;
opacity:0;
transition: opacity 0.3s ease-in-out 0s;
background:url(../images/site-img59.png) 0px 0px repeat;
}
.section_holder53 .post_img .hover_box .box_inner{
width:100%;
height:100%;
padding:0px;
margin:0px;
float:left;
border:1px solid #fdce16;
}
.section_holder53 .post_img .hover_box .box_inner .icon{
width:70px;
height:70px;
padding:0px;
margin:200px 10px 0 442px;
float:left;
font-size:24px;
color:#161616;
text-align:center;
line-height:65px;
border-radius:2px;
background-color:#fff;
}
.section_holder53 .post_img .hover_box .box_inner .icon.last{
margin:200px 10px 0 0;
}
.section_holder53 .post_img .hover_box .box_inner .icon:hover{
background-color:#fdce16;
}
/*hover styles*/
.section_holder53 .post_img:hover .hover_box{
opacity:1;
transition: opacity 0.3s ease-in-out 0s;
}
.section_holder53 .video_frame iframe {
float: right;
width: 100%;
height: 550px;
margin: 0px;
}
.section_holder53 .double_line {
float:right;
width:95%;
height:5px;
margin:50px 0 0 0;
border-top:1px solid #e7e7e7;
border-bottom:1px solid #e7e7e7;
}
/*bottom pagenation*/
.pagenation_bottom {
float:right;
width:95%;
height:5px;
margin:0;
}
.pagenation_bottom a.next_prv {
float:left;
margin:0 30px 0 0;
color:#161616;
font-size:14px;
padding:15px 0 0 0;
}
.pagenation_bottom a.next_prv i {
color:#fdce16;
}
.pagenation_bottom a.next_prv:hover {
color:#fdce16;
}
.pagenation_bottom ul.page_number {
width:40%;
float:right;
margin:0;
padding:0;
}
.pagenation_bottom ul.page_number li {
float:right;
margin:0;
padding:0;
}
.pagenation_bottom .page_number li a {
width:23px;
height:23px;
float:right;
text-align:center;
color:#161616;
margin:15px 5px 0 0;
padding:0;
background-color:#fff;
}
.pagenation_bottom .page_number li a:hover {
background-color:#fdce16;
}
.pagenation_bottom .page_number li a.active {
background-color:#fdce16;
}
/*blog 3columns*/
.section_holder53.two {
padding: 30px 0 30px 0;
}
.section_holder53.two .post_holder .date {
width:72px;
height: 72px;
font-size: 13px;
text-align: center;
padding: 0px;
margin: 96px 0px 0px -25px;
}
.section_holder53.two .post_holder .date span {
font-size: 24px;
padding: 13px 0px 0px;
}
.section_holder53.two .post_holder .comments {
width:72px;
height:72px;
font-size: 24px;
text-align: center;
margin: 168px 0px 0px -25px;
}
.section_holder53.two .post_holder .comments span {
font-size: 18px;
padding: 12px 0px 0px 0px;
}
.section_holder53.two .bottom_shape {
margin: -10px 0px 0px 109px;
}
.section_holder53.two .post_holder{
width:92%;
border:1px solid #d9d9d9;
}
.section_holder53.two .post_img .hover_box {
height: 100%;
padding:22px;
}
.section_holder53.two .post_holder .text_holder{
width:100%;
padding:0px;
margin:0px;
float:left;
padding: 22px 30px 30px 30px;
}
.section_holder53.two .post_img .hover_box .box_inner .icon{
width:40px;
height:40px;
margin:117px 10px 0px 88px;
font-size:14px;
line-height:40px;
}
.section_holder53.two .post_img .hover_box .box_inner .icon.last{
margin:117px 10px 0 0;
}
/*blog standard*/
.section_holder53.three {
padding: 0px 0 30px 0;
}
.section_holder53.three .post_holder .date {
width:72px;
height: 72px;
font-size: 13px;
text-align: center;
padding: 0px;
margin: 96px 0px 0px -25px;
}
.section_holder53.three .post_holder .date span {
font-size: 24px;
padding: 13px 0px 0px;
}
.section_holder53.three .post_holder .comments {
width:72px;
height:72px;
font-size: 24px;
text-align: center;
margin: 168px 0px 0px -25px;
}
.section_holder53.three .post_holder .comments span {
font-size: 18px;
padding: 12px 0px 0px 0px;
}
.section_holder53.three .bottom_shape {
margin: -10px 0px 0px 362px;
}
.section_holder53.three .post_holder{
width:97%;
border:none;
}
.section_holder53.three .post_img .hover_box {
height: 100%;
padding:22px;
}
.section_holder53.three .post_img .hover_box .box_inner .icon{
width:40px;
height:40px;
margin: 147px 10px 0px 330px;
font-size:14px;
line-height:40px;
}
.section_holder53.three .post_img .hover_box .box_inner .icon.last{
margin:147px 10px 0 0;
}
.section_holder53.three .divider_line {
width: 97%;
}
.section_holder53.three .video_frame iframe {
float: right;
width: 100%;
height:380px;
margin: 0px;
}
/*inner portfolio pages styles*/
/*section54*/
.section_holder54{
width:100%;
padding:60px 0 75px 0;
float:left;
margin:0px;
}
.section_holder54 .title_medium{
font-size:20px;
padding:0 0 25px 0;
font-weight:600;
margin:0px;
float:left;
}
.section_holder54 .title_medium.two{
padding:40px 0 25px 0;
}
.section_holder54 .cont{
padding:0;
margin:0px;
float:left;
}
.section_holder54 a.add_but{
font-size:14px;
padding:10px 30px;
font-weight:normal;
color:#161616;
margin:30px 0 0 0;
float:left;
border-radius:2px;
background-color:#fdce16;
}
.section_holder54 a.add_but i{
font-size:14px;
color:#fff;
padding-right:8px;
}
.section_holder54 a.add_but:hover{
color:#fff;
background-color:#161616;
}
.section_holder54 .project_info{
width:100%;
padding:0px;
margin:0px;
float:left;
}
.section_holder54 .project_info span{
width:100%;
padding:10px 0;
margin:0px;
float:left;
border-bottom:1px solid #d9d9d9;
}
.section_holder54 .project_info span.last{
border-bottom:none;
}
.section_holder54 .project_info span .left{
width:40%;
padding:0px;
margin:0px;
float:left;
}
.section_holder54 .project_info span .left span{
padding:0px;
margin:0px;
border-bottom:none;
float:left;
}
.section_holder54 .project_info span .right{
width:60%;
padding:0px;
margin:0px;
float:right;
}
.section_holder54 .project_info span .right span{
padding:0px;
margin:0px;
border-bottom:none;
float:left;
}
/*tags*/
.section_holder54 .project_info span .right ul.tags {
width: 100%;
padding: 0px;
float: left;
margin: 0px;
}
.section_holder54 .project_info span .right .tags li {
padding: 0px;
float: left;
margin: 0px;
}
.section_holder54 .project_info span .right .tags li a {
float: left;
padding: 5px 12px;
margin: 0px 6px 6px 0px;
color: #161616;
background-color: #FDCE16;
border-radius: 2px;
}
.section_holder54 .project_info span .right .tags li a:hover {
color: #fff;
background-color: #161616;
}
/*section55*/
.section_holder55{
width:100%;
padding:60px 0 75px 0;
float:left;
text-align:center;
margin:0px;
}
/*inner about page*/
/*section56*/
.section_holder56{
width:100%;
padding:75px 0 75px 0;
float:left;
margin:0px;
}
.section_holder56 .img_left{
width:100%;
padding:0;
float:left;
margin:0px;
}
.section_holder56 .subtitle {
color: #5c5c5c;
}
/*section 57*/
.section_holder57{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background: url("../images/parallax_bg8.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder57.two{
padding:75px 0 75px 0;
}
.section_holder57 .box{
width:100%;
padding:45px;
margin:0;
text-align:center;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box .icon{
width:105px;
height:105px;
padding:0;
font-size:30px;
text-align:center;
line-height:108px;
margin:0 auto 15px auto;
color:#161616;
border-radius:100%;
border:1px solid #c7c7c7;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .line{
width:50px;
height:5px;
margin:0 auto 20px auto;
border-top:1px solid #d9d9d9;
border-bottom:1px solid #d9d9d9;
}
/*box hover */
.section_holder57 .box:hover{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box:hover .icon{
color:#fff;
}
.section_holder57 .box:hover h5{
color:#fff;
}
/*box active */
.section_holder57 .box.active{
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder57 .box.active .icon{
color:#fff;
}
.section_holder57 .box.active h5{
color:#fff;
}
/*section 58*/
.section_holder58{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder58 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder58 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background: url(../images/site-img35.png) 0 0 no-repeat;
}
.section_holder58 .img{
width:100%;
float:left;
padding:0;
margin:0px;
}
/*services page*/
/*section 59*/
.section_holder59{
width:100%;
float:left;
padding:75px 0 65px 0;
margin:0px;
background: url("../images/parallax_bg9.jpg");
background-attachment: fixed;
background-origin: initial;
background-clip: initial;
background-size: cover;
background-repeat:no-repeat;
background-position:100% 0;
background-position: center;
}
.section_holder59 .left {
width: 43%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .right {
width: 57%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .left .img {
width: 100%;
margin: 0px;
float: left;
padding: 0px;
}
.section_holder59 .right .title {
font-family: "Raleway",sans-serif;
font-size: 45px;
font-weight: bold;
margin:0px;
text-align: left;
padding: 0 0 40px 0;
color: #161616;
text-transform: uppercase;
}
.section_holder59 .right ul.list {
width:100%;
float:left;
margin:40px 0 0 0;
padding: 0px;
}
.section_holder59 .right ul.list li {
float:left;
color:#161616;
font-size:14px;
line-height:35px;
margin:0px;
padding: 0px;
}
.section_holder59 .readmore_but1 {
margin:15px 0 0 80px;
}
.section_holder59 .readmore_but1:hover {
color:#161616;
}
/*subscribe*/
/*section 60*/
.section_holder60{
width:100%;
float:left;
padding: 50px 0px 16px 0px;
margin:0px;
background-color:#161616;
}
.section_holder60 .title {
text-transform:uppercase;
color:#fff;
}
.section_holder60 .title b {
text-transform:none;
color:#727272;
}
.section_holder60 .email_input {
background: none repeat scroll 0 0 #292929;
border: 1px solid #4f4f4f;
color: #747474;
float: left;
font-size: 14px;
font-weight: normal;
height:60px;
line-height: 39px;
padding: 15px;
width: 80%;
}
.section_holder60 .email_submit{
padding: 12px 34px;
margin:0px 0px 0px 0px;
float:left;
height: 60px;
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
text-transform:uppercase;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder60 .email_submit:hover{
color:#161616;
border:1px solid #fff;
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.section_holder60 .email_submit.eight{
padding: 8px 20px;
margin:0px 0px 0px 0px;
float:left;
height: 39px;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*section 61*/
.section_holder61{
width:100%;
float:left;
padding:75px 0 20px 0;
margin:0px;
}
.section_holder61.two{
padding:75px 0 75px 0;
}
.section_holder61 .img{
width:100%;
float:left;
padding:0;
margin:0px;
}
.section_holder61 .img:hover{
opacity:0.9;
}
.section_holder61 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder61 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder61 .subtitle {
color: #5C5C5C;
}
.clintlogo_topline {
width:100%;
height:1px;
margin: 0;
padding:0px;
border:none;
float:left;
background-color:#e7e7e7;
}
/*team page styles*/
/*section 62*/
.section_holder62{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder62 .left{
width:50%;
float:left;
padding:0;
text-align:center;
margin:0px;
}
.section_holder62 .right{
width:50%;
float:right;
padding:0;
text-align:center;
margin:0px;
}
.section_holder62 .member_img{
width:440px;
padding:0;
margin:0 auto;
}
.section_holder62 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: 0px;
float: left;
background-color: #FDCE16;
}
.section_holder62 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder62 .cont {
width:75%;
margin:0 auto;
}
.section_holder62 ul.social_icons {
width:100%;
padding:0px;
margin:25px 0 0 175px;
float:left;
}
.section_holder62 ul.social_icons li {
padding:0px;
margin:0px;
float:left;
}
.section_holder62 ul.social_icons li a {
width:40px;
height:40px;
color:#161616;
padding:0px;
margin:0 5px 0 0;
font-size:16px;
line-height:36px;
float:left;
text-align:center;
border:1px solid #d9d9d9;
border-radius:100%;
}
.section_holder62 ul.social_icons li a:hover {
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.section_holder62 ul.social_icons li a.active {
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
/*hover styles*/
.section_holder62 .left:hover h2, .section_holder62 .left:hover b{
color:#fdce16;
}
.section_holder62 .right:hover h2, .section_holder62 .right:hover b{
color:#fdce16;
}
.section_holder62 .left.active h2, .section_holder62 .left.active b{
color:#fdce16;
}
/*section 63*/
.section_holder63{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
border:1px solid #e1e1e1;
}
/*section 64*/
.section_holder64{
width:100%;
float:left;
padding:60px 0 60px 0;
margin:0px;
}
.punchline_text_box {
width:100%;
float: left;
padding: 25px 30px;
margin: 15px 0 30px 0;
border-width: 1px 1px 1px 5px;
border-style: solid;
border-color: #EEE #EEE #EEE #fdce16;
-moz-border-top-colors: none;
-moz-border-right-colors: none;
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
border-image: none;
color: #999;
}
a.knowmore_but {
float: right;
padding: 13px 20px;
margin: 0px 0px 0px 50px;
font-size: 14px;
color: #161616;
font-weight: 600;
background-color: #fdce16;
border-radius: 3px;
}
a.knowmore_but:hover {
color: #fff;
background-color: #161616;
}
.punchline_text_box .left {
float: left;
width: 70%;
}
.punchline_text_box .right {
float: left;
width: 30%;
}
/*404 error page*/
/*section 65*/
.section_holder65{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
text-align:center;
background-color:#fdce16;
}
.section_holder65 .title{
font-size:60px;
padding:30px 0 20px 0;
font-weight:400;
margin:0px;
line-height: 65px;
}
.error_search_holder{
width:100%;
float:left;
padding:75px 0 90px 0;
margin:0px;
text-align:center;
}
.error_search_holder .search_box{
width:60%;
height:55px;
padding:0;
margin:0 auto 50px auto;
border:1px solid #d9d9d9;
text-align:center;
}
.error_search_holder .search_box .serch_input{
border: 0px none;
color: #161616;
float: left;
font-size: 16px;
font-weight: normal;
height: 53px;
line-height: 39px;
padding: 0px 15px;
width: 94%;
}
.error_search_holder .search_box .search_submit {
padding:15px;
margin: 11px 0px 0px 0px;
float: left;
width:20px;
height: 20px;
text-align:center;
background:url(../images/site-img166.png) 4px 4px no-repeat;
border:none;
}
.error_search_holder a.but {
font-size:16px;
color:#161616;
font-weight:600;
padding:20px 40px;
margin:0px;
background-color:#fdce16;
}
.error_search_holder a.but:hover {
color:#fff;
background-color:#161616;
}
/*contact styles*/
/*section 66*/
.section_holder66{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
}
.section_holder66.two{
width:100%;
float:left;
padding:35px 0 10px 0;
margin:0px;
}
.address_info {
float: left;
background-color: #fff;
border: 1px solid #d9d9d9;
padding: 20px 20px 10px;
width: 100%;
margin-bottom: 40px;
}
.address_info.two {
float: left;
background-color: #fff;
border: none;
padding: 20px 20px 10px;
width: 100%;
margin-bottom: 40px;
}
.address_info a {
color:#fdce16;
}
.address_info a:hover {
color:#161616;
}
.google-map {
width: 100%;
padding:20px;
height: 300px;
border: 1px solid #d9d9d9;
}
.google-map.two {
width: 100%;
padding:0px;
height: 350px;
border:none;
}
.section_holder66 .bottom_strip {
width: 100%;
height: 10px;
padding: 0px;
margin: -7px 0 0 0;
float: left;
background-color: #FDCE16;
}
.section_holder66 .bottom_shape {
width: 80px;
height: 20px;
padding: 0px;
margin: -6px 0px 0px 240px;
float: left;
background:url(../images/site-img35.png) 0px 0px no-repeat;
}
.section_holder66 .bottom_shape.two {
margin: -6px 0px 0px 320px;
}
/*section 67*/
.section_holder67{
width:100%;
float:left;
padding:40px 0 80px 0;
margin:0px;
}
/*section 68*/
.section_holder68{
width:100%;
float:left;
padding:40px 0 40px 0;
margin:0px;
}
/*footer*/
.footer{
width:100%;
float:left;
padding:75px 0 75px 0;
margin:0px;
background-color:#161616;
}
.footer_logo{
width:140px;
height:40px;
float:left;
padding:0;
margin:0 0 30px 0;
}
.footer .address{
font-family: 'Open Sans', sans-serif;
font-size:14px;
color:#666666;
float:left;
padding:0 0 15px 0;
margin:0px;
}
.footer .title{
font-family: 'Open Sans', sans-serif;
font-size:20px;
font-weight:600;
color:#fff;
float:left;
padding:0 0 15px 0;
margin:0px;
}
.footer .title_line{
width:100%;
height:3px;
float:left;
padding:0;
margin:0 0 30px 0;
background:url(../images/section_title_line7.png) 0px 0px no-repeat;
}
.footer .recent_posts{
float: left;
width: 100%;
padding:15px 0px 15px 0px;
margin:0px;
border-bottom:1px solid #2e2e2e;
}
.footer .recent_posts.first{
padding:0px 0px 15px 0px;
}
.footer .recent_posts.last{
border-bottom:none;
}
.footer .recent_posts:hover .post .title a{
color:#fdce16;
}
.footer .recent_posts:hover .imgholder{
width:64px;
height:64px;
border:2px solid #fdce16;
}
.footer .recent_posts.active .post .title a{
color:#fdce16;
}
.footer .recent_posts.active .imgholder{
width:64px;
height:64px;
border:2px solid #fdce16;
}
.footer .recent_posts .img{
width:30%;
padding:0px;
margin:0;
float:left;
}
.footer .recent_posts .imgholder{
width:64px;
height:64px;
padding:0px;
margin:0;
float:left;
border:2px solid #161616;
}
.footer .recent_posts .post{
width:70%;
padding:0px;
margin:0px;
float:right;
}
.footer .recent_posts .post .title{
font-size:14px;
color:#fff;
padding:0px;
margin:0px;
float:left;
}
.footer .recent_posts .post .title a{
color:#fff;
}
.footer .recent_posts .post .smalltext{
padding:0;
margin:0px;
float:left;
}
.footer .recent_posts .post .info{
color: #666666;
font-size: 13px;
margin: 0 5px 0 0;
padding:0px;
float:left;
}
/*hover styles*/
.footer ul.recent_posts li:hover .imgholder .line{
opacity:1;
}
.footer ul.recent_posts li:hover a.title{
color:#fdce16;
}
/*active styles*/
.footer ul.recent_posts li.active .imgholder .line{
opacity:1;
}
.footer ul.recent_posts li.active a.title{
color:#fdce16;
}
/* Tags */
.footer ul.tags{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer ul.tags li{
margin:0;
float:left;
padding:0px;
}
.footer ul.tags li a{
font-size:14px;
font-weight:normal;
margin:6px 6px 0 0;
float:left;
padding:4px 12px;
color:#666666;
border:1px solid #383838;
}
.footer ul.tags li a:hover{
color:#fdce16;
border:1px solid #fdce16;
}
.footer ul.tags li a.active{
color:#fdce16;
border:1px solid #fdce16;
}
/* flickr */
#flickr_badge_wrapper {
padding: 0px;
margin: 0px;
width: 100%;
}
#flickr_badge_wrapper img {
width: 70px;
height: 70px;
margin-right: 8px;
margin-bottom: 8px;
border: 0px solid #999 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
#flickr_badge_wrapper img:hover {
border: 2px solid #fdce16 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
#flickr_www {
display:block;
padding:0 10px 0 10px !important;
}
#flickr_badge_uber_wrapper a:hover,
#flickr_badge_uber_wrapper a:link,
#flickr_badge_uber_wrapper a:active,
#flickr_badge_uber_wrapper a:visited {
text-decoration:none !important;
background:inherit !important;
color:#3993ff;
}
#flickr_badge_wrapper {
margin-top: 25px;
}
#flickr_badge_source {
padding:0 !important;
}
/* divider line */
.footer .divider_line{
width:100%;
height:1px;
margin:30px 0 30px 0;
float:left;
padding:0px;
background-color:#2e2e2e;
}
/* social icons */
.footer .social_icons_holder{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons{
width:100%;
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons li{
margin:0;
float:left;
padding:0px;
}
.footer .social_icons_holder ul.social_icons li a{
width:50px;
height:50px;
font-size:20px;
text-align:center;
margin:0 15px 0 0;
line-height:50px;
color:#fff;
float:left;
padding:0px;
background-color:#161616;
border:1px solid #454545;
}
.footer .social_icons_holder ul.social_icons li a.last{
margin:0 0px 0 0;
}
.footer .social_icons_holder ul.social_icons li a:hover{
color:#161616;
background-color:#fdce16;
border:1px solid #fdce16;
}
.footer .social_icons_holder ul.social_icons li a.active{
color:#161616;
background-color:#fdce16;
border:1px solid #fdce16;
}
.footer .quick_links_holder{
width:100%;
height:50px;
margin:0 auto;
float:left;
padding:15px 30px 0 30px;
border-right:1px solid #2e2e2e;
border-left:1px solid #2e2e2e;
}
.footer ul.quick_links{
width:100%;
margin:0;
float:left;
padding:0;
}
.footer ul.quick_links li{
margin:0;
float:left;
padding:0;
}
.footer ul.quick_links li a{
color:#666;
margin:0;
float:left;
padding:0 15px 0 0;
}
.footer ul.quick_links li a.last{
padding:0 0 0 0;
}
.footer ul.quick_links li a:hover{
color:#fdce16;
}
/*newletter*/
.footer .email_input {
background: none repeat scroll 0 0 #FFFFFF;
border: 0 none;
color: #999999;
float: left;
font-size: 13px;
font-weight: normal;
height: 39px;
line-height: 39px;
padding: 0 7px;
width: 70%;
}
.footer .email_submit{
padding:0 10px 0 10px;
margin:0px;
float:left;
height: 39px;
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.email_submit.eight{
border:1px solid #fdce16;
background-color:#fdce16;
color:#161616;
}
.newsletter .email_input {
background: none repeat scroll 0px 0px #FFF;
border: 0px none;
color: #999;
float: left;
font-size: 13px;
font-weight: 600;
height: 39px;
line-height: 39px;
padding: 0px 7px;
width: 60%;
}
/*copyright*/
.copyrights{
width:100%;
height:85px;
font-size:14px;
color:#858585;
margin:0;
float:left;
padding:26px 0 0 0;
background-color:#2e2e2e;
}
/* scroll up */
.scrollup{
width:40px;
height:40px;
opacity:1;
position:fixed;
bottom:22px;
right:20px;
display:none;
text-indent:-9999px;
background:#fdce16 url(../images/scroll-top-arrow.png) no-repeat 15px 16px;
z-index: 999;
}
/*------------------*/
/* element styles
/*------------------------------------------------------*/
/*------------------*/
/*image hovers */
/*------------------------------------------------------*/
/*style1*/
.img_ho_st_holder {
position:relative;
width:100%;
padding:20px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
}
.img_ho_st_title {
font: 24px 'Open Sans', sans-serif;
padding:0 0 20px 0;
display:block;
width:100%;
margin:0px;
font-weight:300;
color:#161616;
float:left;
}
.img_ho_st1 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st1 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:0px;
z-index:10;
background-color: #119ee7;
transition: left .3s ease-in-out;
}
.img_ho_st1 .text.red {
background-color: #fc4242;
}
.img_ho_st1 .text.green {
background-color: #3fc35f;
}
.img_ho_st1 .text.violet {
background-color: #b460e4;
}
.img_ho_st1 .imgbox {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:0px;
z-index:100;
transition: top .3s ease-in-out;
}
.img_ho_st1 .text .title {
color:#fff;
margin:15px 0 0 19px;
}
.img_ho_st1 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st1 .text a {
color:#FFF;
margin:15px 15px 0 19px;
}
.img_ho_st1 .text a:hover {
color:#161616;
}
.img_ho_st1:hover .imgbox {
position: absolute;
top:220px;
transition: top .3s ease-in-out;
}
/*style 2*/
.img_ho_st2 {
opacity:1;
width:100%;
height:220px;
margin:0px;
position: relative;
left:0px;
top:0px;
margin:0px;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.img_ho_st2 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st2 .text {
position:absolute;
background: #000;
width:100%;
height:220px;
text-align: center;
color: #fff;
top:0;
left:0;
opacity: 0;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.img_ho_st2 .text:hover {
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img112.png) left top repeat;
}
.img_ho_st2 .text a.hov_circle {
position: absolute;
width:50px;
height:50px;
left:63px;
top:0px;
padding:0px;
margin:0px;
background-color:#119ee7;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
overflow:hidden;
transition-property: background-color, color;
transition: top .3s ease-in-out;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle:hover, .img_ho_st2 .text a.hov_circle.two:hover {
background-color:#fff;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle:hover i, .img_ho_st2 .text a.hov_circle.two:hover i {
color:#272727;
transition-property:color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.img_ho_st2 .text a.hov_circle.two {
left:118px;
top:0px;
transition: top .5s ease-in-out;
background-color:#8dba13;
}
.img_ho_st2 .text a.hov_circle i {
color:#fff;
font-size:20px;
text-align:center;
line-height:50px;
}
.img_ho_st2 .text:hover .hov_circle {
transition: top .3s ease-in-out;
left:63px;
top:95px;
}
.img_ho_st2 .text:hover .hov_circle.two {
transition: top .5s ease-in-out;
left:118px;
top:95px;
}
/*style 3*/
.img_ho_st3 {
opacity:1;
width:100%;
height:220px;
margin:0px;
position: relative;
left:0px;
top:0px;
margin:0px;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.img_ho_st3 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st3 .text {
width:100%;
height:220px;
position:absolute;
background: #000;
color: #fff;
top:0;
left:0;
opacity: 0;
overflow:hidden;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.img_ho_st3 .text:hover {
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img112.png) left top repeat;
}
.img_ho_st3 .text h3 {
position:absolute;
color:#fff;
font-size:16px;
font-weight:600;
left:5px;
top:220px;
margin:15px 0 0 19px;
transition: top .4s ease-in-out;
}
.img_ho_st3 .text p {
position:absolute;
color:#fff;
font-size:14px;
font-weight:normal;
left:5px;
line-height:18px;
top:255px;
text-align:left;
margin:15px 0 0 19px;
transition: top .6s ease-in-out;
}
.img_ho_st3 .text a {
position:absolute;
font-weight:normal;
left:0px;
top:320px;
text-align:left;
margin:0px 0 0 19px;
transition: top .7s ease-in-out;
overflow:hidden;
}
.img_ho_st3 .text:hover h3 {
position:absolute;
left:5px;
top:20px;
transition: top .4s ease-in-out;
}
.img_ho_st3 .text:hover p {
position:absolute;
left:5px;
top:50px;
transition: top .6s ease-in-out;
}
.img_ho_st3 .text:hover a {
position:absolute;
left:0px;
top:136px;
transition: top .7s ease-in-out;
}
/*style 4*/
.img_ho_st4 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st4 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st4 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:165px;
z-index:100;
background: url(../images/site-img175.png) left top repeat;
transition: top .3s ease-in-out;
}
.img_ho_st4 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st4 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st4 .text a {
margin:8px 15px 0 19px;
}
.img_ho_st4:hover .text {
position: absolute;
top:20px;
transition: top .3s ease-in-out;
}
.imghover_sec4 .container{
border-top:1px solid #e1e1e1;
padding-top:50px;
}
/*style 5*/
.img_ho_st5 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st5 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st5 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:-270px;
top:0px;
z-index:100;
transition: left .5s ease-in-out;
background: url(../images/site-img175.png) left top repeat;
}
.img_ho_st5 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st5 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st5 .text a {
margin:8px 15px 0 19px;
}
.img_ho_st5:hover .text {
position: absolute;
left:0px;
transition: left .5s ease-in-out;
}
/*style 6*/
.img_ho_st6 {
position: relative;
width:100%;
height:220px;
padding:0px;
margin:0px;
float:left;
overflow:hidden;
}
.img_ho_st6 .imgbox {
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
}
.img_ho_st6 .text {
position:absolute;
padding:0px;
margin:0px;
float: left;
width:100%;
height:220px;
left:0px;
top:220px;
z-index:100;
transition: top .3s ease-in-out;
background: url(../images/site-img175.png) left top repeat;
}
.img_ho_st6 .text h3 {
color:#fff;
font-size:16px;
font-weight:600;
margin:15px 0 0 19px;
}
.img_ho_st6 .text p {
color:#fff;
font-weight:normal;
margin:5px 15px 0 19px;
}
.img_ho_st6 .text a.readmore_small {
margin:10px 0px 0 18px;
padding:4px 15px;
}
.img_ho_st6 .text a.readmore_small.green {
margin:10px 0px 0 5px;
}
.img_ho_st6:hover .text {
position: absolute;
top:170px;
transition: top .3s ease-in-out;
}
/*------------------*/
/*button styles */
/*------------------------------------------------------*/
a.but_st1 {
padding: 0px;
margin: 0px 10px 10px 0px;
float: left;
border-radius: 2px;
color: #FFF;
text-transform:uppercase;
text-decoration: none;
background-color:#fdce16;
}
/*large styles*/
a.but_st1.large{
font-size:20px;
padding:20px 50px;
}
a.but_st1.large.yellow{
background-color:#fdce16;
}
a.but_st1.large.yellow:hover{
background-color:#161616;
}
a.but_st1.large.red{
background-color:#fc4242;
}
a.but_st1.large.red:hover{
background-color:#161616;
}
a.but_st1.large.blue{
background-color:#13bfff;
}
a.but_st1.large.blue:hover{
background-color:#161616;
}
a.but_st1.large.lightgreen{
background-color:#a5d549;
}
a.but_st1.large.lightgreen:hover{
background-color:#161616;
}
a.but_st1.large.violet{
background-color:#c762cb;
}
a.but_st1.large.violet:hover{
background-color:#161616;
}
a.but_st1.large.green{
background-color:#3fc35f;
}
a.but_st1.large.green:hover{
background-color:#161616;
}
a.but_st1.large.pink{
background-color:#fc5eac;
}
a.but_st1.large.pink:hover{
background-color:#161616;
}
a.but_st1.large.orange{
background-color:#ff9d12;
}
a.but_st1.large.orange:hover{
background-color:#161616;
}
/*large stroke styles*/
a.but_st1.large{
font-size:20px;
padding:20px 50px;
}
a.but_st1.large.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.large.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.large.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.large.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.large.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.large.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.large.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.large.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.large.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.large.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.large.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.large.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.large.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.large.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.large.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.large.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*buttons medium styles*/
/*medium styles*/
a.but_st1.medium{
font-size:16px;
padding:15px 35px;
}
a.but_st1.medium.yellow{
background-color:#fdce16;
}
a.but_st1.medium.yellow:hover{
background-color:#161616;
}
a.but_st1.medium.red{
background-color:#fc4242;
}
a.but_st1.medium.red:hover{
background-color:#161616;
}
a.but_st1.medium.blue{
background-color:#13bfff;
}
a.but_st1.medium.blue:hover{
background-color:#161616;
}
a.but_st1.medium.lightgreen{
background-color:#a5d549;
}
a.but_st1.medium.lightgreen:hover{
background-color:#161616;
}
a.but_st1.medium.violet{
background-color:#c762cb;
}
a.but_st1.medium.violet:hover{
background-color:#161616;
}
a.but_st1.medium.green{
background-color:#3fc35f;
}
a.but_st1.medium.green:hover{
background-color:#161616;
}
a.but_st1.medium.pink{
background-color:#fc5eac;
}
a.but_st1.medium.pink:hover{
background-color:#161616;
}
a.but_st1.medium.orange{
background-color:#ff9d12;
}
a.but_st1.medium.orange:hover{
background-color:#161616;
}
/*medium stroke styles*/
a.but_st1.medium.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.medium.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.medium.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.medium.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.medium.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.medium.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.medium.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.medium.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.medium.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.medium.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.medium.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.medium.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.medium.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.medium.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.medium.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.medium.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*buttons small styles*/
/*button small styles*/
a.but_st1.small{
font-size:14px;
padding:11px 20px;
}
a.but_st1.small.yellow{
background-color:#fdce16;
}
a.but_st1.small.yellow:hover{
background-color:#161616;
}
a.but_st1.small.red{
background-color:#fc4242;
}
a.but_st1.small.red:hover{
background-color:#161616;
}
a.but_st1.small.blue{
background-color:#13bfff;
}
a.but_st1.small.blue:hover{
background-color:#161616;
}
a.but_st1.small.lightgreen{
background-color:#a5d549;
}
a.but_st1.small.lightgreen:hover{
background-color:#161616;
}
a.but_st1.small.violet{
background-color:#c762cb;
}
a.but_st1.small.violet:hover{
background-color:#161616;
}
a.but_st1.small.green{
background-color:#3fc35f;
}
a.but_st1.small.green:hover{
background-color:#161616;
}
a.but_st1.small.pink{
background-color:#fc5eac;
}
a.but_st1.small.pink:hover{
background-color:#161616;
}
a.but_st1.small.orange{
background-color:#ff9d12;
}
a.but_st1.small.orange:hover{
background-color:#161616;
}
/*small button stroke styles*/
a.but_st1.small.two.yellow{
border:2px solid #fdce16;
background-color:#fff;
color:#fdce16;
}
a.but_st1.small.two.yellow:hover{
color:#fff;
border:2px solid #fdce16;
background-color:#fdce16;
}
a.but_st1.small.two.red{
border:2px solid #fc4242;
background-color:#fff;
color:#fc4242;
}
a.but_st1.small.two.red:hover{
color:#fff;
border:2px solid #fc4242;
background-color:#fc4242;
}
a.but_st1.small.two.blue{
border:2px solid #13bfff;
background-color:#fff;
color:#13bfff;
}
a.but_st1.small.two.blue:hover{
color:#fff;
border:2px solid #13bfff;
background-color:#13bfff;
}
a.but_st1.small.two.lightgreen{
border:2px solid #a5d549;
background-color:#fff;
color:#a5d549;
}
a.but_st1.small.two.lightgreen:hover{
color:#fff;
border:2px solid #a5d549;
background-color:#a5d549;
}
a.but_st1.small.two.violet{
border:2px solid #c762cb;
background-color:#fff;
color:#c762cb;
}
a.but_st1.small.two.violet:hover{
color:#fff;
border:2px solid #c762cb;
background-color:#c762cb;
}
a.but_st1.small.two.green{
border:2px solid #3fc35f;
background-color:#fff;
color:#3fc35f;
}
a.but_st1.small.two.green:hover{
color:#fff;
border:2px solid #3fc35f;
background-color:#3fc35f;
}
a.but_st1.small.two.pink{
border:2px solid #fc5eac;
background-color:#fff;
color:#fc5eac;
}
a.but_st1.small.two.pink:hover{
color:#fff;
border:2px solid #fc5eac;
background-color:#fc5eac;
}
a.but_st1.small.two.orange{
border:2px solid #ff9d12;
background-color:#fff;
color:#ff9d12;
}
a.but_st1.small.two.orange:hover{
color:#fff;
border:2px solid #ff9d12;
background-color:#ff9d12;
}
/*Full width button styles*/
a.but_fullwidth {
padding: 0px;
margin: 10px 0px 0px;
float: left;
width: 100%;
height: 65px;
text-align: center;
line-height: 67px;
font-size: 18px;
border-radius: 4px;
color: #FFF;
font-weight: 500;
text-transform:uppercase;
background-color:#a5d549;
}
a.but_fullwidth:hover {
color:#fff;
background-color:#161616;
}
a.but_fullwidth.two{
background-color:#c762cb;
}
a.but_fullwidth.two:hover {
color:#fff;
background-color:#161616;
}
a.but_fullwidth.three{
background-color:#13bfff;
}
a.but_fullwidth.three:hover {
color:#fff;
background-color:#161616;
}
/*------------------*/
/*Call to Action */
/*------------------------------------------------------*/
.call_to_action{
width:100%;
float:left;
border:1px solid #e7e7e7;
border-radius:4px;
padding: 25px 25px;
margin:0 0 15px 0;
}
.call_to_action .left{
padding:0px;
margin:0px;
float:left;
width:82%;
}
.call_to_action .right{
width:18%;
padding:0px;
margin:0px;
float:right;
}
.call_to_action a.but_st1.small, .call_to_action a.but_st1.medium, .call_to_action a.but_st1.large{
float:right;
}
.call_to_action a.but_st1.small{
margin-top:10px;
}
.call_to_action a.but_st1.medium{
margin-top:10px;
}
.call_to_action p{
width:100%;
text-align:left;
}
.call_to_action span.title_big{
width:100%;
text-align:left;
padding:0px;
margin:0px;
line-height:45px;
font-size:24px;
color:#119ee7;
}
.call_to_action span.title_big.two{
font-size:18px;
line-height:0px;
}
.call_to_action span.title_big.three{
font-size:18px;
line-height:0px;
color:#272727;
}
.call_to_action span.title_big.four{
font-size:34px;
line-height:50px;
color:#272727;
}
.call_to_action span.title_big.three strong{
color:#fc4242;
}
/*------------------*/
/*list styles */
/*------------------------------------------------------*/
/*lists style 1*/
.list_st1{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st1 .icon{
width:32px;
height:32px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:32px;
color:#fff;
border-radius:100%;
background-color:#119ee7;
}
.list_st1 .text{
padding: 5px 0 0 42px;
margin:0px;
display:block;
}
<!--list style 2-->
.list_st1.two{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st1.two .icon{
width:32px;
height:32px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:32px;
color:#119ee7;
border-radius:100%;
border:1px solid #119ee7;
background-color:#fff;
}
.list_st1.two .text{
padding: 0px 0 0 42px;
margin:0px;
display:block;
}
/*list style3*/
.list_st3{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st3 .icon{
width:18px;
height:18px;
padding:0px;
margin:3px 0px 0px 0px;
float:left;
font-size:12px;
text-align:center;
line-height:15px;
color:#119ee7;
border-radius:100%;
border:1px solid #119ee7;
}
.list_st3 .text{
padding: 0px 0 0 28px;
margin:0px;
display:block;
}
/*list style 4*/
ol.list_st4 {
list-style-type: none;
list-style-type: decimal !ie; /*IE 7- hack*/
margin: 0;
margin-left: 18px;
padding: 0;
counter-reset: li-counter;
}
ol.list_st4 li{
position: relative;
margin: 0px;
padding-left: 20px;
min-height: 3em;
list-style-type:none;
}
ol.list_st4 li:before {
position: absolute;
top: 0;
left: -15px;
width: 28px;
height: 28px;
font-size: 14px;
line-height: 30px;
text-align: center;
color: #f5f5f5;
border-radius: 50%;
background-color: #464646;
content: counter(li-counter);
counter-increment: li-counter;
}
/*list style 5*/
.list_st5{
width:100%;
padding:0px;
margin:0px 0px 10px 0px;
float:left;
}
.list_st5.two{
padding:0px 0px 10px 0px;
border-bottom:1px solid #d1d1d1;
}
.list_st5.two.last{
padding:0px 0px 10px 0px;
border-bottom:none;
}
.list_st5 .icon{
width:40px;
height:40px;
padding:0px;
margin:0px 10px 0px 0px;
float:left;
text-align:center;
line-height:39px;
color:#fff;
border-radius:100%;
}
.list_st5 .text{
padding: 5px 0 0 42px;
margin:0px;
display:block;
}
.list_st5 .icon.red{
background-color:#fc4242;
}
.list_st5 .icon.blue{
background-color:#2f92ee;
}
.list_st5 .icon.green{
background-color:#3fc35f;
}
.list_st5 .icon.violet{
background-color:#b659fe;
}
.list_st5 .icon.orange{
background-color:#ff881e;
}
/*------------------*/
/*message boxes */
/*------------------------------------------------------*/
/*message boxes*/
.messagebox_title{
padding-bottom:30px;
}
.info-box{
background-color:#34b0ff;
}
.success-box{
background-color:#7ebd24;
}
.error-box{
background-color:#fa482b;
}
.download-box {
background-color:#F30;
}
.warning-box {
background-color:#f7c929;
}
.mboxes_close{
width:15px;
height:15px;
padding:0px;
margin:0px;
float:right;
text-align:right;
}
.mboxes_close i{
color:#fff;
font-size:16px;
font-weight:500;
}
.success-box,.error-box, .warning-box, .info-box span{
color:#fff;
font-size:16px;
font-weight:400;
}
.success-box,.error-box, .warning-box, .info-box{
padding:20px;
margin-bottom:30px;
border-radius:4px;
}
/*------------------*/
/*pricing tables */
/*------------------------------------------------------*/
/*pricing style 1*/
.price_table_st1{
width:100%;
float:left;
padding:0;
margin:0px;
border-radius:2px;
background-color:#fff;
border:1px solid #d9d9d9;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st1_arrow_down {
position: absolute;
margin:0 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-top: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.price_table_st1_arrow_up {
position: absolute;
margin:-35px 0 0 29px;
border-left: 95px solid transparent;
border-right: 95px solid transparent;
border-bottom: 35px solid #fff;
font-size: 0px;
line-height: 0;
}
.price_table_st1 .title{
width:100%;
font-size:30px;
font-weight:600;
padding:20px 0 20px 0;
color:#161616;
text-align:center;
margin:0px 0 10px 0;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .price {
color: #161616;
font-size: 45px;
font-weight: bold;
line-height: 45px;
text-align:center;
padding: 8px 0px 8px;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .price sup {
font-size: 22px;
font-style: normal;
}
.price_table_st1 .price i {
font-size: 16px;
font-style: normal;
font-weight: 500;
}
.price_table_st1 ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.price_table_st1 ul.plan_features li{
width:70%;
color:#727272;
text-align:center;
padding:15px 0;
margin:0 auto;
border-bottom:1px solid #e6e5e5;
}
.price_table_st1 .plan_info .singup_but{
color:#fff;
text-align:center;
padding:8px 30px;
margin: 25px 0px 25px 69px;
float:left;
border-radius:2px;
background-color:#161616;
}
.price_table_st1 .plan_info .singup_but:hover{
color:#161616;
background-color:#fdce16;
}
/*hover styles*/
.price_table_st1:hover{
background-color:#161616;
border:none;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st1:hover .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.price_table_st1:hover .singup_but{
color:#161616;
background-color:#fdce16;
}
.price_table_st1:hover .price_table_st1_arrow_up{
border-bottom: 35px solid #161616;
}
.price_table_st1:hover .price_table_st1_arrow_down{
border-top: 35px solid #161616;
}
/*active styles*/
.price_table_st1.active{
background-color:#161616;
border:none;
}
.price_table_st1.active .title{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .price{
color:#fff;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .plan_features li{
color:#727272;
border-bottom:1px solid #403f3f;
}
.price_table_st1.active .singup_but{
color:#161616;
background-color:#fdce16;
}
.price_table_st1.active .price_table_st1_arrow_up{
border-bottom: 35px solid #161616;
}
.price_table_st1.active .price_table_st1_arrow_down{
border-top: 35px solid #161616;
}
/*pricing style 2*/
.price_table_st2{
position:relative;
width:390px;
float:left;
padding:0;
margin:0px;
background-color:#161616;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st2.active{
background-color:#fdce16;
}
.price_table_st2 .top_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img27.png) center top no-repeat;
}
.price_table_st2 .bottom_shape{
width:390px;
height:57px;
float:left;
padding:0;
margin:0px;
background:url(../images/site-img26.png) center bottom no-repeat;
}
.price_table_st2 .plan_info_outer{
width:100%;
float:left;
padding:15px;
text-align:center;
margin:0px;
}
.price_table_st2 .plan_info{
width:100%;
float:left;
padding:0;
text-align:center;
margin:0px;
border:1px solid #161616;
}
.price_table_st2 .price_circle{
position:absolute;
width:140px;
height:140px;
font-size:40px;
padding:0;
color:#fff;
line-height:130px;
text-align:center;
margin: -41px 0px 0px 125px;
border-radius:50%;
background-color:#4f4f4f;
}
.price_table_st2 .plan_info .title{
font-size:40px;
font-weight:400;
padding:0;
color:#fff;
text-align:center;
margin:60px 0 10px 0;
}
.price_table_st2 .plan_info span{
font-family: 'Open Sans', sans-serif;
font-size:14px;
font-weight:normal;
padding:0;
color:#827c7c;
text-align:center;
margin:0 0 0 0;
}
.price_table_st2 .plan_info .bottom_line{
width:140px;
height:4px;
padding:0;
border-bottom:1px solid #4f4f4f;
border-top:1px solid #4f4f4f;
text-align:center;
margin:18px auto 15px auto;
}
.price_table_st2 .plan_info ul.plan_features{
width:100%;
float:left;
text-align:center;
padding:0;
margin:0;
}
.price_table_st2 .plan_info ul.plan_features li{
width:100%;
float:left;
color:#827c7c;
text-align:center;
padding:15px 0;
margin:0;
border-bottom:1px solid #2d2d2d;
}
.price_table_st2 .plan_info .singup_but{
color:#827c7c;
text-align:center;
padding:10px 50px;
margin:40px 0 40px 100px;
float:left;
border:1px solid #2d2d2d;
}
.price_table_st2 .plan_info .singup_but:hover{
color:#161616;
border:1px solid #fdce16;
background-color:#fdce16;
}
.price_table_st2 .plan_info .singup_but.two{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
.price_table_st2 .plan_info .singup_but.two:hover{
color:#161616;
border:1px solid #161616;
background-color:#fdce16;
}
/*active styles*/
.price_table_st2.active{
background-color:#fdce16;
}
.price_table_st2.active .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.price_table_st2.active .plan_info .title{
color:#161616;
}
.price_table_st2.active .plan_info span{
color:#161616;
}
.price_table_st2.active .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.price_table_st2.active .plan_info{
border:1px solid #fff;
}
.price_table_st2.active .price_circle{
background-color:#161616;
}
/*hover styles*/
.price_table_st2:hover{
background-color:#fdce16;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.price_table_st2:hover .singup_but{
background-color:#161616;
border:1px solid #161616;
color:#fff;
}
.price_table_st2:hover .plan_info .title{
color:#161616;
}
.price_table_st2:hover .plan_info span{
color:#161616;
}
.price_table_st2:hover .plan_info ul.plan_features li{
border-bottom:1px solid #fee273;
color:#161616;
}
.price_table_st2:hover .plan_info{
border:1px solid #fff;
}
.price_table_st2:hover .price_circle{
background-color:#161616;
}
/*Typography */
/*dropcaps*/
.highlit {
font-size: 14px;
font-weight: 400;
line-height: 10px;
padding: 0px;
color:#fff;
background-color:#119ee7;
}
.highlit2{
color:#fff;
background-color:#a7d02b;
}
.highlit3 {
color:#fff;
background-color:#fc4242;
}
/*------------------*/
/*content boxes */
/*------------------------------------------------------*/
.contbox_st1 {
width: 100%;
float: left;
padding: 25px;
margin: 0px;
border-radius: 2px;
border: 1px solid #E1E1E1;
}
.marbottom{
margin-bottom:30px;
}
.contbox_st1:hover img {
opacity:0.8;
}
/*------------------*/
/*data tables */
/*------------------------------------------------------*/
/* tables */
.table-style {
float: left;
width: 100%;
tab
}
.table-list {
padding: 0; border-spacing: 0;
float: left;
background-color: #fff;
border: 1px solid #dddddd;
margin-bottom:20px;
width: 100%;
}
.table-list th {
padding: 18px 10px;
color:#161616;
font-weight:400;
font-size:16px;
text-align:center;
background-color: #fdce16;
}
.table-list td {
padding: 13px 10px;
text-align: center;
background-color: #f5f5f5;
}
/*
.table-list tr {
border-bottom: 1px solid #e1e1e1;
}*/
.table-list td.hilit {
padding: 13px 10px;
text-align: center;
background-color: #fff;
}
/*table style 2*/
.table-style {
float: left;
width: 100%;
}
.table-list2 {
float: left;
background-color: #fff;
margin-bottom:20px;
width: 100%;
}
.table-list2 th {
padding: 18px 10px;
color:#fff;
font-weight:400;
font-size:16px;
text-align:center;
background-color: #272727;
}
.table-list2 td {
padding: 13px 10px;
text-align: center;
background-color: #f5f5f5;
border:1px solid #e1e1e1;
}
.table-list2 tr {
border-bottom: 1px solid #e1e1e1;
}
.table-list2 td.hilit {
padding: 13px 10px;
text-align: center;
background-color: #fff;
}
.table-list2 tr:hover td {
background-color: #FC0;
color:#fff;
}
/*------------------*/
/*social icon styles */
/*------------------------------------------------------*/
ul.social_icon_st1{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st1 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st1 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
background-color:#fdce16;
}
ul.social_icon_st1 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 2*/
ul.social_icon_st2{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st2 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st2 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
border:1px solid #d9d9d9;
background-color:#fff;
}
ul.social_icon_st2 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 3*/
ul.social_icon_st3{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st3 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st3 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#fff;
line-height:39px;
float:left;
border-radius:100%;
background-color:#fc4242;
}
ul.social_icon_st3 li a:hover{
color:#fff;
background-color:#161616;
}
/*style 4*/
ul.social_icon_st4{
width:100%;
padding:0px;
margin:0px;
float:left;
}
ul.social_icon_st4 li{
padding:0px;
margin:0px;
float:left;
text-align:center;
}
ul.social_icon_st4 li a{
width:40px;
height:40px;
padding:0px;
margin:0 5px 5px 0;
text-align:center;
font-size:16px;
color:#161616;
line-height:39px;
float:left;
border-radius:100%;
background-color:#fff;
border:1px solid #d9d9d9;
}
ul.social_icon_st4 li a:hover{
color:#fff;
border:1px solid #161616;
background-color:#161616;
}
/*style5*/
ul.social_icon_st5{
padding:0px;
margin:0px;
float:left;
}
.social_icon_st5 li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.social_icon_st5 li a{
width:45px;
height:45px;
padding:0px;
float:left;
color:#fff;
margin:0 0 5px 0;
font-size:18px;
line-height:43px;
display: inline;
text-align:center;
background-color:#119ee7;
}
.social_icon_st5 li a i{
color:#fff;
font-size:16px;
line-height:30px;
}
.social_icon_st5 li a.twitter{
background-color:#46c0ff;
}
.social_icon_st5 li a.twitter:hover{
background-color:#272727;
}
.social_icon_st5 li a.facebook{
background-color:#2e68be;
}
.social_icon_st5 li a.facebook:hover{
background-color:#272727;
}
.social_icon_st5 li a.googleplus{
background-color:#e74a35;
}
.social_icon_st5 li a.googleplus:hover{
background-color:#272727;
}
.social_icon_st5 li a.in{
background-color:#097fc3;
}
.social_icon_st5 li a.in:hover{
background-color:#272727;
}
.social_icon_st5 li a.dribble{
background-color:#f44193;
}
.social_icon_st5 li a.dribble:hover{
background-color:#272727;
}
/*style6*/
ul.social_icon_st6{
padding:0px;
margin:0px;
float:left;
}
.social_icon_st6 li{
padding:0px;
margin-right:5px;
float:left;
display: inline;
}
.social_icon_st6 li a{
width:45px;
height:45px;
padding:0px;
margin:0 0 5px 0;
float:left;
color:#fff;
font-size:18px;
line-height:43px;
display: inline;
text-align:center;
border-radius:100%;
background-color:#119ee7;
}
.social_icon_st6 li a i{
color:#fff;
font-size:16px;
line-height:30px;
}
.social_icon_st6 li a.twitter{
background-color:#46c0ff;
}
.social_icon_st6 li a.twitter:hover{
background-color:#272727;
}
.social_icon_st6 li a.facebook{
background-color:#2e68be;
}
.social_icon_st6 li a.facebook:hover{
background-color:#272727;
}
.social_icon_st6 li a.googleplus{
background-color:#e74a35;
}
.social_icon_st6 li a.googleplus:hover{
background-color:#272727;
}
.social_icon_st6 li a.in{
background-color:#097fc3;
}
.social_icon_st6 li a.in:hover{
background-color:#272727;
}
.social_icon_st6 li a.dribble{
background-color:#f44193;
}
.social_icon_st6 li a.dribble:hover{
background-color:#272727;
}
/*------------------*/
/*icon boxes */
/*------------------------------------------------------*/
/*icon boxes*/
.icon_boxes_st1{
width:100%;
padding:15px;
margin:0px;
float:left;
text-align:center;
border-radius:4px;
border:1px solid #e1e1e1;
}
.icon_boxes_st1 i{
background-color: #fdce16;
border: 1px solid #fdce16;
border-radius: 100%;
color: #161616;
font-size: 40px;
height: 100px;
line-height: 105px;
margin-bottom: 20px;
text-align: center;
vertical-align: middle;
width: 100px;
}
.icon_boxes_st1 .icon_box_title1{
padding:0px;
margin:0px;
color:#272727;
font-size:20px;
margin-bottom:10px;
}
/*icon boxes style2 */
.icon_boxes_st2{
width:100%;
padding:15px;
margin:0px;
float:left;
text-align:center;
}
.icon_boxes_st2.two{
background: none;
}
.icon_boxes_st2 i{
color: #161616;
font-size: 35px;
line-height: 105px;
margin:0px;
text-align: center;
vertical-align: middle;
}
.icon_boxes_st2 .icon_box_title1{
padding:0px;
margin:0px;
color:#272727;
font-weight:400;
font-size:24px;
text-transform:none;
margin-bottom:10px;
}
/*icon boxes style 3*/
ul.icon_boxes_st3 {
float: left;
width: 100%;
padding: 0px;
margin:0px;
list-style-type:none;
}
.icon_boxes_st3 li {
padding: 0px;
margin: 0px;
}
.icon_boxes_st3 li p {
margin-bottom: 20px;
}
.icon_boxes_st3 li.icon {
float: left;
width:16%;
color:#ff9f07;
font-size: 35px;
padding: 0px;
margin: 0px;
line-height:80px;
}
.icon_boxes_st3 li.cont {
float: left;
width:84%;
padding: 0px;
margin: 0px;
}
/*icon boxes style 5*/
.icon_boxes_st5{
margin:0px;
float:left;
width:100%;
text-align:center;
}
.icon_boxes_st5 i{
background-color: #119ee7;
border: 1px solid #119ee7;
border-radius: 100%;
color: #FFFFFF;
font-size: 30px;
height: 80px;
line-height: 81px;
margin-bottom: 20px;
text-align: center;
vertical-align: middle;
width: 80px;
}
.icon_boxes_st5:hover i{
background-color: #fff;
color: #119ee7;
border: 1px solid #119ee7;
}
/*------------------*/
/*team member styles */
/*------------------------------------------------------*/
/*team member style 2 */
.team_st2 {
position: relative;
width:100%;
height:400px;
padding:20px;
margin:0px;
float:left;
overflow:hidden;
transition: top .3s ease-in-out;
}
.teamst2_holder {
width:100%;
height:400px;
padding:0px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
transition: top .3s ease-in-out;
}
.team_st2 .imgbox {
padding: 0px;
margin: 0px;
float: left;
width: 100%;
top:0px;
height: 220px;
overflow:hidden;
transition: top 0.3s ease-in-out 0s;
}
.team_st2 .text {
position:absolute;
padding:20px;
margin:0px;
float: left;
width:100%;
height:150px;
left:0px;
top:220px;
z-index:100;
transition: top .3s ease-in-out;
background-color:#fff;
border-top:1px solid #e1e1e1;
}
.team_st2:hover .text {
position: absolute;
top:150px;
transition: top .3s ease-in-out;
}
.team_st2 strong{
font-size:16px;
font-weight:400;
padding:0px;
margin:15px 0 15px 0;
color:#272727;
text-align:center;
}
.team_st2 .desig{
font-size:14px;
font-weight:400;
padding:0px;
margin:0px;
float:left;
color:#fdce16;
text-align:left;
}
/*team style 1*/
.team_st1 {
padding:0px;
margin:0px;
float: left;
width: 100%;
text-align:center;
}
.team_st1 .imgholder {
position: relative;
padding:0px;
margin-bottom:20px;
float: left;
overflow:hidden;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
}
.team_st1 .teamst1_imgholder{
width:250px;
height:250px;
float:left;
padding:15px;
margin:0px;
border:1px solid #e1e1e1;
border-radius:50%;
}
.team_st1 .imgholder .hoverbox{
position:absolute;
padding:0px;
margin:0px;
float: left;
width: 210px;
height:210px;
left:19px;
top:22px;
opacity:0;
background-color:#000;
border-radius:50%;
transition: top .3s ease-in-out;
z-index:2;
-webkit-transition: opacity .50s ease-in-out;
-moz-transition: opacity .50s ease-in-out;
-ms-transition: opacity .50s ease-in-out;
-o-transition: opacity .50s ease-in-out;
transition: opacity .50s ease-in-out;
}
.team_st1 .imgholder:hover .hoverbox{
opacity: 1;
-webkit-transition: opacity .25s ease-in-out;
-moz-transition: opacity .25s ease-in-out;
-ms-transition: opacity .25s ease-in-out;
-o-transition: opacity .25s ease-in-out;
transition: opacity .25s ease-in-out;
background:url(../images/site-img175.png) left top repeat;
}
.team_st1 .imgholder .hoverbox a{
position: absolute;
left:47px;
top:112px;
background-color:#F30;
padding:10px;
margin-right:5px;
transition: top .5s ease-in-out;
}
.team_st1 .imgholder a.hov_circle {
position: absolute;
width:50px;
height:50px;
left:87px;
top:87px;
padding:0px;
margin:0px;
background-color:#fff;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
overflow:hidden;
transition-property: background-color, color;
transition: top .3s ease-in-out;
transition-timing-function: ease-out;
vertical-align:middle;
}
.team_st1 .imgholder a.hov_circle i {
color:#272727;
font-size:20px;
text-align:center;
line-height:50px;
}
.team_st1 .imgholder a.hov_circle:hover{
background-color:#1197ee;
}
.team_st1 .imgholder a.hov_circle:hover i{
color:#fff;
}
.team_st1 strong{
font-size:16px;
font-weight:400;
padding:0px;
margin:0px;
color:#272727;
text-align:center;
}
.team_st1 .desig{
font-size:14px;
font-weight:400;
padding:0px;
margin:0px;
color:#727272;
text-align:center;
}
.team_st1 p{
font-size:14px;
font-weight:normal;
padding-top:10px;
margin:0px;
color:#727272;
text-align:center;
}
.team_st1 ul.social_icon_st4{
margin-left:39px;
}
/*------------------*/
/*latest posts elements styles */
/*------------------------------------------------------*/
/*posts styles 5*/
.latest_post_st5{
margin:0px;
padding: 0px;
float:left;
}
.latest_post_st5 .imgholder{
margin:0px 0px 25px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .imgholder:hover{
opacity:0.8;
}
.latest_post_st5 .imgholder.port{
margin:0px 0px 25px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .infoholder{
margin:0px 0px 20px 0px;
padding: 0px;
float:left;
}
.latest_post_st5 .info{
font-size:14px;
color:#727272;
margin:0px 15px 0px 0px;
display:block;
font-weight:normal;
padding:0px;
float:left;
}
/*latest posts style 3*/
.latest_post_st3{
padding:15px;
margin:0px;
float:left;
border:1px solid #e1e1e1;
}
.latest_post_st3:hover img{
opacity:0.8;
}
.latest_post_st3_imgholder{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_txtholder{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_txt{
padding:0px;
margin:0px;
float:left;
}
.latest_post_st3_info{
padding:0px;
margin:0px;
display: block;
float:left;
font-size: 13px;
}
.latest_post_st3_info .paddright{
padding-right:10px;
}
.latest_post_st3_info span i{
padding:0px;
margin:0px;
color:#727272;
font-size: 13px;
}
/*------------------*/
/*dividers styles */
/*------------------------------------------------------*/
/*divider lines*/
.divider_line_small {
width: 12%;
margin: 0 auto 65px auto;
height: 25px;
border-top: 1px solid #000;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.divider_line_small.two {
width: 12%;
margin: 0 auto 0 0;
height: 25px;
float:left;
border-top: 1px solid #000;
}
.divider_line_small.three {
width: 49%;
margin: 0 auto 0 0;
height: 25px;
float:left;
border-top: 1px solid #000;
}
.divider_line_small.four {
margin: 0 auto 25px auto;
}
.divider_line_small_white {
width: 12%;
margin: 0 auto 80px auto;
height: 25px;
border-top: 1px solid #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
.divider_line_small_white.two {
position:absolute;
width: 12%;
margin: 0 auto 80px 482px;
height: 25px;
padding:0px;
border-top: 1px solid #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.8;
}
.divider_line_small_white.three {
margin: 0 auto 50px 482px;
}
.divider_line1 {
float: left;
width: 100%;
padding-top: 0px;
margin-bottom: 0px;
border-bottom: 1px solid #e5e5e5;
}
.divider_dashed2 {
float: left;
width: 100%;
margin: 59px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed3 {
float: left;
width: 100%;
height:5px;
margin: 10px 0px 59px 0px;
border-top: 1px dashed #d7d7d7;
border-bottom: 1px dashed #d7d7d7;
}
.divider_dashed4 {
float: left;
width: 100%;
margin: 15px 0px 59px 0px;
border-top: 1px dashed #d7d7d7;
}
.divider_dashed5 {
float: left;
width: 100%;
height:5px;
margin: 20px 0px 59px 0px;
border-top: 2px solid #d7d7d7;
}
.divider_dashed6 {
float: left;
width: 100%;
height:5px;
margin: 20px 0px 59px 0px;
border-top: 1px solid #d7d7d7;
border-bottom: 1px solid #d7d7d7;
}
.divider_dashed7 {
float: left;
width: 100%;
margin: 50px 0px 0px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed8 {
float: left;
width: 100%;
margin: 53px 0px 45px 0px;
border-top: 1px dotted #d7d7d7;
}
.divider_dashed9 {
float: left;
width: 100%;
margin: 40px 0px 48px 0px;
border-top: 1px dotted #d7d7d7;
}
/*------------------*/
/*widget styles */
/*------------------------------------------------------*/
/*text widget */
.text_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*posts widget */
.posts_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.posts_widget .left{
width:32%;
padding:0px;
margin:0;
float:left;
}
.posts_widget .right{
width:68%;
padding:0px;
margin:0;
float:right;
}
.posts_widget .right .title{
padding:0px;
margin:0;
}
.posts_widget .right .title:hover{
color:#fdce16;
}
.posts_widget .right .info{
font-size:13px;
padding:0px;
margin:0;
}
.posts_widget .right a.more_but{
font-size:14px;
padding:5px 5px;
margin:18px 0 18px 0;
float:left;
color:#fdce16;
border:1px solid #fdce16;
}
.posts_widget .right a.more_but:hover{
color:#161616;
background-color:#fdce16;
}
/*portfolio widget */
.portfolio_widget{
width:100%;
padding: 30px 30px 0px 30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*twitter widget */
.twitter_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.twitter_widget .icon{
width:32px;
height:32px;
padding:0px;
font-size:14px;
color:#161616;
text-align:center;
line-height:33px;
margin:0 10px 0 0;
float:left;
border-radius:100%;
background-color:#fdce16;
}
.twitter_widget .title{
width:85%;
padding:5px 0 0 0;
margin:0;
float:right;
}
.twitter_widget .hilite{
color:#fdce16;
}
/*social widget */
.social_widget{
width:100%;
padding:30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
/*testimonials widget */
.testimonials_widget{
width:100%;
padding:0px;
margin:0 0 40px 0;
float:left;
}
.testimonials_widget .box{
width:100%;
padding:30px;
margin:0 0 25px 0;
float:left;
border:1px solid #d9d9d9;
}
.testimonials_widget .left{
width:30%;
padding:0px;
margin:0;
float:left;
}
.testimonials_widget .right{
width:70%;
padding:0px;
margin:0;
float:left;
}
.testimonials_widget .right .name{
font-size:16px;
display:block;
color:#161616;
padding:0px;
margin:0;
}
.testimonials_widget .right .comp{
padding:0px;
margin:0;
}
.testimonials_widget .right .comp span{
color:#fdce16;
}
.testimonials_widget .arrow_down {
position: absolute;
margin: 0px 0px 0px 37px;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 10px solid #d9d9d9;
font-size: 0px;
line-height: 0;
}
/*flickr widget */
.flickr_widget{
width:100%;
padding: 30px 30px 17px 30px;
margin:0 0 40px 0;
float:left;
border:1px solid #d9d9d9;
}
.flickr_widget img {
width: 65px;
height: 65px;
margin-right: 8px;
margin-bottom: 8px;
border: 0px solid #999 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.flickr_widget img:hover {
border: 2px solid #FDCE16 !important;
transition-property: background-color, color;
transition-duration: 0.3s;
transition-timing-function: ease-out;
}
.one_full .tabs7 li a h3{
font-size: 22px;
line-height: 40px;
}
.one_full .tabs-content7 .tabs-panel7 h4{
font-size: 16px;
font-weight: bold;
}
.section_holder68 .container h3 {
font-size: 22px;
}
h1 {
font-weight: bold;
} | 0.336113 | 0.074131 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://udn.com/NEWS/mainpage.shtml"),url-prefix("http://udn.com/NEWS/main.html") {
div[id^="focus_ad_"],
div[id="ads"],
div[id="area_1_box"],
div[id="area_2_box"],
div[id="area_3_box"],
div[id^="banner_"],
div[id="sitemap"]
{display:none!important;}
div[id="sidemenu_box"]>div[class="box_line"]{height:100% !important;}
div[id="container"]{height:1160px !important;}
}
@-moz-document domain("udn.com") /*,url-prefix("http://udn.com/NEWS/")*/
{
/* Header */
#header>#LOGO14550,#header>#family,#header>#searchbar,#header>#infobar>a,#header>#infobar>kanhanbypass,#header>#infobar>img,#header>#memberbar,
/*本文上方"熱門關鍵字"*/
table.mainbg>tbody>tr>td>table>tbody>tr+tr>td>div+div,
div[style="float: right; padding-top: 2px;"], /*for mag*/
/*本文上方"最新 | 發燒 | 哇新聞"*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr:not(:last-child),
/*本文上方"讚"*/
#bq,
/*本文下方廣告*/
div#story+iframe,
/*本文下方"歷史新聞"*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr:first-child+tr+tr+tr+tr,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
/*本文下方一堆東東*/
/* table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr+tr+tr+tr+tr+tr+tr, */ /*991119相關新聞取消下拉選單,改回舊版*/
/* table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr, */ /*for mag*/ /*991125相關新聞取消下拉選單,改回舊版*/
/*本文右側*/
table.mainbg>tbody>tr>td+td, /*width:240*/
div#header+table>tbody>tr>td+td, /*for mag,width:240*/
td[width="240"][valign="top"][height="100%"], /*for udn運動大聯盟@mag,width:240*/
/*本文左側選單下方廣告*/
#sidemenu_ad,
/* TOP */
#gotop,
/* footer */
#footer,
/*本文中空白*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr:first-child+tr+tr,
/*相關新聞:*/
/*div#other>table>tbody>tr>td[width="13%"]*/
td[width="13%"][nowrap=""],
/*新聞臉譜標題*/
div[class="bg_homeitem"],
/*新聞臉譜圖示*/
form[name="grad"] table,
div[id="other"],td>p /* ,td>p+table *//*20110601 mag 本文會不見*/,div+br,
td[background="/2010/images/linedot.gif"],
img[src="/2010/images/spacer_002.gif"],
/*相關Blog標題及項目*/
div[class="title"],
td[background="/2010/images/list_bg.gif"],
td[background="/2010/images/starimg/list_bg.gif"],
/* div[class="story_categpry_title"], */
td[class="story_category"]
{display:none!important;}
/*本文外框高度*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table {height:0 !important;}
/*本文寬度*/
td[width="578"],table[width="578"] {width:100% !important;}
/*相關新聞項目寬度*/
div[id^=r] {width:360px !important;}
/*右側選單字體放大*/
ul#sidemenu a,
/*相關新聞項目字體放大*/
a[class="story_category"]
{font-size:15px !important;}
a[class="story_category"]:hover {background-color:yellow !important;}
/*左側選單Hightlight*/
a[href="/NEWS/DOMESTIC"],a[href="http://udn.com/NEWS/DOMESTIC"], /*地方新聞*/
a[href="/NEWS/MAINLAND"],
a[href="/NEWS/WORLD"],
a[href="/NEWS/FINANCE"],
a[href="http://mag.udn.com/mag/digital/index.jsp"],
a[href="http://udn.com/NEWS/FASHION"],
a[href="/NEWS/FASHION"],
a[href="http://udn.com/NEWS/LIFE"],
a[href="/NEWS/LIFE"],
a[href="http://travel.udn.com/mag/travel/index.jsp"],
a[href="http://udn.com/NEWS/READING"]
{color:blue !important;font-weight:bold !important;}
a[href="http://udn.com/NEWS/SPORTS"],a[href="/NEWS/SPORTS"] {color:red !important;font-weight:bold !important;} /*運動大聯盟*/
/*相關新聞下拉選單字體放大*/
#jumpMenu {font-size:15px !important;width:100% !important;}
/**/
body {background:none !important;}
}
@-moz-document url-prefix("http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID="), /*for udn數位資訊@mag*/
url-prefix("http://travel.udn.com/mag/travel/storypage.jsp") /*for udn旅遊休閒@travel*/
{
/*本文上方"瀏覽人數"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table,
/*本文下方"歷史新聞"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr,
/* table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr, *//*udn旅遊休閒的相關新聞會不見*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr
/*本文下方一堆東東*/
/*
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr
*/
/*相關blog*/
,table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table+table+table
{display:none!important;}
div#story {width:100% !important;}
}
@-moz-document url-prefix("http://mag.udn.com/mag/sports/storypage.jsp?f_ART_ID="), /*for udn運動大聯盟@mag*/
url-prefix("http://mag.udn.com/mag/car/storypage.jsp"), /*for udn發燒車訊@mag*/
url-prefix("http://mag.udn.com/mag/happylife/storypage.jsp?f_ART_ID=") /*for udn消費流行@mag*/
{
/*本文上方"瀏覽人數"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table,
/*本文下方"歷史新聞"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr,
/*本文下方一堆東東*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr+tr+tr+tr+tr+tr+tr,
/*相關blog*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table+table+table,
/*本文左側選單下方廣告*/
td[width="142"]>table>tbody>tr>td>table>tbody>tr:not(:first-child)
{display:none!important;}
table[style="table-layout: fixed; width: 550px;"] {width:100% !important;} /*回應文章寬度*/
} | data/usercss/40359.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url-prefix("http://udn.com/NEWS/mainpage.shtml"),url-prefix("http://udn.com/NEWS/main.html") {
div[id^="focus_ad_"],
div[id="ads"],
div[id="area_1_box"],
div[id="area_2_box"],
div[id="area_3_box"],
div[id^="banner_"],
div[id="sitemap"]
{display:none!important;}
div[id="sidemenu_box"]>div[class="box_line"]{height:100% !important;}
div[id="container"]{height:1160px !important;}
}
@-moz-document domain("udn.com") /*,url-prefix("http://udn.com/NEWS/")*/
{
/* Header */
#header>#LOGO14550,#header>#family,#header>#searchbar,#header>#infobar>a,#header>#infobar>kanhanbypass,#header>#infobar>img,#header>#memberbar,
/*本文上方"熱門關鍵字"*/
table.mainbg>tbody>tr>td>table>tbody>tr+tr>td>div+div,
div[style="float: right; padding-top: 2px;"], /*for mag*/
/*本文上方"最新 | 發燒 | 哇新聞"*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr:not(:last-child),
/*本文上方"讚"*/
#bq,
/*本文下方廣告*/
div#story+iframe,
/*本文下方"歷史新聞"*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr:first-child+tr+tr+tr+tr,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr+tr, /*for mag*/
/*本文下方一堆東東*/
/* table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr+tr+tr+tr+tr+tr+tr, */ /*991119相關新聞取消下拉選單,改回舊版*/
/* table[width="578"]>tbody>tr>td>table>tbody>tr>td>table+table+table+table>tbody>tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr, */ /*for mag*/ /*991125相關新聞取消下拉選單,改回舊版*/
/*本文右側*/
table.mainbg>tbody>tr>td+td, /*width:240*/
div#header+table>tbody>tr>td+td, /*for mag,width:240*/
td[width="240"][valign="top"][height="100%"], /*for udn運動大聯盟@mag,width:240*/
/*本文左側選單下方廣告*/
#sidemenu_ad,
/* TOP */
#gotop,
/* footer */
#footer,
/*本文中空白*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table>tbody>tr>td>table>tbody>tr+tr+tr+tr>td>table+table>tbody>tr:first-child+tr+tr,
/*相關新聞:*/
/*div#other>table>tbody>tr>td[width="13%"]*/
td[width="13%"][nowrap=""],
/*新聞臉譜標題*/
div[class="bg_homeitem"],
/*新聞臉譜圖示*/
form[name="grad"] table,
div[id="other"],td>p /* ,td>p+table *//*20110601 mag 本文會不見*/,div+br,
td[background="/2010/images/linedot.gif"],
img[src="/2010/images/spacer_002.gif"],
/*相關Blog標題及項目*/
div[class="title"],
td[background="/2010/images/list_bg.gif"],
td[background="/2010/images/starimg/list_bg.gif"],
/* div[class="story_categpry_title"], */
td[class="story_category"]
{display:none!important;}
/*本文外框高度*/
table.mainbg>tbody>tr>td>table+table>tbody>tr>td+td+td>table {height:0 !important;}
/*本文寬度*/
td[width="578"],table[width="578"] {width:100% !important;}
/*相關新聞項目寬度*/
div[id^=r] {width:360px !important;}
/*右側選單字體放大*/
ul#sidemenu a,
/*相關新聞項目字體放大*/
a[class="story_category"]
{font-size:15px !important;}
a[class="story_category"]:hover {background-color:yellow !important;}
/*左側選單Hightlight*/
a[href="/NEWS/DOMESTIC"],a[href="http://udn.com/NEWS/DOMESTIC"], /*地方新聞*/
a[href="/NEWS/MAINLAND"],
a[href="/NEWS/WORLD"],
a[href="/NEWS/FINANCE"],
a[href="http://mag.udn.com/mag/digital/index.jsp"],
a[href="http://udn.com/NEWS/FASHION"],
a[href="/NEWS/FASHION"],
a[href="http://udn.com/NEWS/LIFE"],
a[href="/NEWS/LIFE"],
a[href="http://travel.udn.com/mag/travel/index.jsp"],
a[href="http://udn.com/NEWS/READING"]
{color:blue !important;font-weight:bold !important;}
a[href="http://udn.com/NEWS/SPORTS"],a[href="/NEWS/SPORTS"] {color:red !important;font-weight:bold !important;} /*運動大聯盟*/
/*相關新聞下拉選單字體放大*/
#jumpMenu {font-size:15px !important;width:100% !important;}
/**/
body {background:none !important;}
}
@-moz-document url-prefix("http://mag.udn.com/mag/digital/storypage.jsp?f_ART_ID="), /*for udn數位資訊@mag*/
url-prefix("http://travel.udn.com/mag/travel/storypage.jsp") /*for udn旅遊休閒@travel*/
{
/*本文上方"瀏覽人數"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table,
/*本文下方"歷史新聞"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr,
/* table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr, *//*udn旅遊休閒的相關新聞會不見*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr+tr+tr+tr+tr
/*本文下方一堆東東*/
/*
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr+tr+tr+tr+tr+tr+tr+tr+tr+tr+tr
*/
/*相關blog*/
,table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table+table+table
{display:none!important;}
div#story {width:100% !important;}
}
@-moz-document url-prefix("http://mag.udn.com/mag/sports/storypage.jsp?f_ART_ID="), /*for udn運動大聯盟@mag*/
url-prefix("http://mag.udn.com/mag/car/storypage.jsp"), /*for udn發燒車訊@mag*/
url-prefix("http://mag.udn.com/mag/happylife/storypage.jsp?f_ART_ID=") /*for udn消費流行@mag*/
{
/*本文上方"瀏覽人數"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table,
/*本文下方"歷史新聞"*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr,
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr:first-child+tr+tr+tr+tr,
/*本文下方一堆東東*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table>tbody>tr+tr+tr+tr+tr+tr+tr,
/*相關blog*/
table[width="578"]>tbody>tr>td>table>tbody>tr>td>table:first-child+table+table+table+table,
/*本文左側選單下方廣告*/
td[width="142"]>table>tbody>tr>td>table>tbody>tr:not(:first-child)
{display:none!important;}
table[style="table-layout: fixed; width: 550px;"] {width:100% !important;} /*回應文章寬度*/
} | 0.096567 | 0.099034 |
.kontext {
width: 100%;
height: 100%;
}
.kontext .layer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
visibility: hidden;
/*box-shadow: 0px 0px 120px rgba( 0, 0, 0, 0.8 );*/
}
.kontext .layer.show {
visibility: visible;
}
.kontext.capable {
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.kontext.capable .layer {
-webkit-transform: translateZ( -100px );
-moz-transform: translateZ( -100px );
transform: translateZ( -100px );
}
.kontext.capable .layer.show {
-webkit-transform: translateZ( 0px );
-moz-transform: translateZ( 0px );
transform: translateZ( 0px );
}
.kontext.capable.animate .layer.show.right {
-webkit-animation: show-right 1s forwards ease;
-moz-animation: show-right 1s forwards ease;
animation: show-right 1s forwards ease;
}
.kontext.capable.animate .layer.hide.right {
-webkit-animation: hide-right 1s forwards ease;
-moz-animation: hide-right 1s forwards ease;
animation: hide-right 1s forwards ease;
}
.kontext.capable.animate .layer.show.left {
-webkit-animation: show-left 1s forwards ease;
-moz-animation: show-left 1s forwards ease;
animation: show-left 1s forwards ease;
}
.kontext.capable.animate .layer.hide.left {
-webkit-animation: hide-left 1s forwards ease;
-moz-animation: hide-left 1s forwards ease;
animation: hide-left 1s forwards ease;
}
/* CSS animation keyframes */
@-webkit-keyframes show-right {
0% { -webkit-transform: translateZ( -200px ); }
40% { -webkit-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -webkit-transform: translateZ( 0px ); }
}
@-webkit-keyframes hide-right {
0% { -webkit-transform: translateZ( 0px ); visibility: visible; }
40% { -webkit-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -webkit-transform: translateZ( -200px ); visibility: hidden; }
}
@-moz-keyframes show-right {
0% { -moz-transform: translateZ( -200px ); }
40% { -moz-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -moz-transform: translateZ( 0px ); }
}
@-moz-keyframes hide-right {
0% { -moz-transform: translateZ( 0px ); visibility: visible; }
40% { -moz-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -moz-transform: translateZ( -200px ); visibility: hidden; }
}
@keyframes show-right {
0% { transform: translateZ( -200px ); }
40% { transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { transform: translateZ( 0px ); }
}
@keyframes hide-right {
0% { transform: translateZ( 0px ); visibility: visible; }
40% { transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { transform: translateZ( -200px ); visibility: hidden; }
}
@-webkit-keyframes show-left {
0% { -webkit-transform: translateZ( -200px ); }
40% { -webkit-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -webkit-transform: translateZ( 0px ); }
}
@-webkit-keyframes hide-left {
0% { -webkit-transform: translateZ( 0px ); visibility: visible; }
40% { -webkit-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -webkit-transform: translateZ( -200px ); visibility: hidden; }
}
@-moz-keyframes show-left {
0% { -moz-transform: translateZ( -200px ); }
40% { -moz-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -moz-transform: translateZ( 0px ); }
}
@-moz-keyframes hide-left {
0% { -moz-transform: translateZ( 0px ); visibility: visible; }
40% { -moz-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -moz-transform: translateZ( -200px ); visibility: hidden; }
}
@keyframes show-left {
0% { transform: translateZ( -200px ); }
40% { transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { transform: translateZ( 0px ); }
}
@keyframes hide-left {
0% { transform: translateZ( 0px ); visibility: visible; }
40% { transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { transform: translateZ( -200px ); visibility: hidden; }
}
/* Dimmer */
.kontext .layer .dimmer {
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
visibility: hidden;
background: transparent;
z-index: 100;
}
.kontext.capable.animate .layer .dimmer {
-webkit-transition: background 0.7s ease;
-moz-transition: background 0.7s ease;
transition: background 0.7s ease;
}
.kontext.capable.animate .layer.hide .dimmer {
visibility: visible;
background: rgba( 0, 0, 0, 0.8 );
} | www/src/css/kontext.css | .kontext {
width: 100%;
height: 100%;
}
.kontext .layer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
visibility: hidden;
/*box-shadow: 0px 0px 120px rgba( 0, 0, 0, 0.8 );*/
}
.kontext .layer.show {
visibility: visible;
}
.kontext.capable {
-webkit-perspective: 1000px;
-moz-perspective: 1000px;
perspective: 1000px;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.kontext.capable .layer {
-webkit-transform: translateZ( -100px );
-moz-transform: translateZ( -100px );
transform: translateZ( -100px );
}
.kontext.capable .layer.show {
-webkit-transform: translateZ( 0px );
-moz-transform: translateZ( 0px );
transform: translateZ( 0px );
}
.kontext.capable.animate .layer.show.right {
-webkit-animation: show-right 1s forwards ease;
-moz-animation: show-right 1s forwards ease;
animation: show-right 1s forwards ease;
}
.kontext.capable.animate .layer.hide.right {
-webkit-animation: hide-right 1s forwards ease;
-moz-animation: hide-right 1s forwards ease;
animation: hide-right 1s forwards ease;
}
.kontext.capable.animate .layer.show.left {
-webkit-animation: show-left 1s forwards ease;
-moz-animation: show-left 1s forwards ease;
animation: show-left 1s forwards ease;
}
.kontext.capable.animate .layer.hide.left {
-webkit-animation: hide-left 1s forwards ease;
-moz-animation: hide-left 1s forwards ease;
animation: hide-left 1s forwards ease;
}
/* CSS animation keyframes */
@-webkit-keyframes show-right {
0% { -webkit-transform: translateZ( -200px ); }
40% { -webkit-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -webkit-transform: translateZ( 0px ); }
}
@-webkit-keyframes hide-right {
0% { -webkit-transform: translateZ( 0px ); visibility: visible; }
40% { -webkit-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -webkit-transform: translateZ( -200px ); visibility: hidden; }
}
@-moz-keyframes show-right {
0% { -moz-transform: translateZ( -200px ); }
40% { -moz-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -moz-transform: translateZ( 0px ); }
}
@-moz-keyframes hide-right {
0% { -moz-transform: translateZ( 0px ); visibility: visible; }
40% { -moz-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -moz-transform: translateZ( -200px ); visibility: hidden; }
}
@keyframes show-right {
0% { transform: translateZ( -200px ); }
40% { transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { transform: translateZ( 0px ); }
}
@keyframes hide-right {
0% { transform: translateZ( 0px ); visibility: visible; }
40% { transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { transform: translateZ( -200px ); visibility: hidden; }
}
@-webkit-keyframes show-left {
0% { -webkit-transform: translateZ( -200px ); }
40% { -webkit-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -webkit-transform: translateZ( 0px ); }
}
@-webkit-keyframes hide-left {
0% { -webkit-transform: translateZ( 0px ); visibility: visible; }
40% { -webkit-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -webkit-transform: translateZ( -200px ); visibility: hidden; }
}
@-moz-keyframes show-left {
0% { -moz-transform: translateZ( -200px ); }
40% { -moz-transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { -moz-transform: translateZ( 0px ); }
}
@-moz-keyframes hide-left {
0% { -moz-transform: translateZ( 0px ); visibility: visible; }
40% { -moz-transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { -moz-transform: translateZ( -200px ); visibility: hidden; }
}
@keyframes show-left {
0% { transform: translateZ( -200px ); }
40% { transform: translate( -40%, 0 ) scale( 0.8 ) rotateY( 20deg ); }
100% { transform: translateZ( 0px ); }
}
@keyframes hide-left {
0% { transform: translateZ( 0px ); visibility: visible; }
40% { transform: translate( 40%, 0 ) scale( 0.8 ) rotateY( -20deg ); }
100% { transform: translateZ( -200px ); visibility: hidden; }
}
/* Dimmer */
.kontext .layer .dimmer {
display: block;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
visibility: hidden;
background: transparent;
z-index: 100;
}
.kontext.capable.animate .layer .dimmer {
-webkit-transition: background 0.7s ease;
-moz-transition: background 0.7s ease;
transition: background 0.7s ease;
}
.kontext.capable.animate .layer.hide .dimmer {
visibility: visible;
background: rgba( 0, 0, 0, 0.8 );
} | 0.619586 | 0.139543 |
:root{
/* # Color Themes */
/* ## Dark Theme */
--bg-color: #141518;
--primary-color: #FF5722;
--primary-color2: #f78c65;
--surface-color1: #191D22;
--surface-color2: #1E262E;
--surface-color3: #26323E;
--error-color: #CF6679;
--secondary-color: #22cbff;
--secondary-color2: #74dafe;
/* ### Oncolors */
--onprimary-color: #000000dd;
--onprimary-color2: #0a0a0a99;
--onprimary-color3: #00000060;
--onsurface-color: #FFFFFFdd;
--onsurface-color2: #FFFFFF99;
--onsurface-color3: #FFFFFF60;
--onerror-color: #000000dd;
/* ## Light Theme */
/* ## backup */
--bg-color-black: #121212;
--surface-color1-black: #1B1B1B;
--surface-color2-black: #252525;
--surface-color3-black: #343434;
--surface-color-minalpha:#6a9ed30a;
}
/* # Utilities */
/* ## General */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background: var(--bg-color);
color: var(--onsurface-color);
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin: 0 auto;
padding: 0 40px;
overflow: auto;
}
.flex {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.flexitem {
background-color: var(--surface-color1);
padding: 20px;
margin: 10px;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.webcontainer {
max-width: 1100px;
}
/* ## Content */
h1 {
color: var(--primary-color);
margin: 0.7em 0;
font-size: 2.5em;
font-weight: 800;
}
h2 {
color: var(--onsurface-color);
margin: 0.7em 0;
font-size: 2em;
font-weight: 700;
}
h3 {
color: var(--onsurface-color);
margin: 0.8em 0;
font-size: 1.5em;
font-weight: 700;
}
h4 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.2em;
font-weight: 700;
}
h5 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.2em;
font-weight: 700;
}
h6 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.1em;
font-weight: 700;
}
p {
margin: 1em 0;
}
a {
color: var(--secondary-color);
text-decoration: none;
}
ul {
list-style-type: none;
}
img {
width: 100%;
}
/* ## Buttons */
.btn,
a .btn {
background: var(--primary-color);
color: var(--onprimary-color);
display: inline-block;
padding: 10px 30px;
border: none;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
text-decoration: none;
cursor: pointer;
}
.btn:hover,
.btn:active {
background: var(--primary-color2);
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.2);
}
/* ### Navbuttons */
.nav-btn {
background: var(--surface-color3);
color: var(--onsurface-color2);
min-width: 50px;
max-height: 100%;
border-radius: 0;
padding: 20px 10px;
text-align: center;
}
.active.nav-btn {
color: var(--primary-color);
}
.nav-btn:hover {
background: var(--surface-color2);
color: var(--primary-color2);
}
/* ## Bottomnavbar */
.bottomnavbar {
background: var(--surface-color3);
position: fixed;
bottom: 0;
width: 100%;
padding: 0;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.nav {
flex-direction: row;
align-items: flex-end;
}
/* ## Forms */
label {
color: var(--onsurface-color3);
display: block;
margin: 0 0 5px 0;
font-variant: small-caps;
}
input {
background: var(--surface-color2);
color: var(--onsurface-color2);
padding: 8px 8px;
border:2px solid var(--surface-color2);
border-radius: 5px;
outline: none;
font-size: 1em;
}
input[type="text"]:focus, input[type="text"]:hover {
color: var(--onsurface-color);
border:2px solid var(--primary-color);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* ## Table */
td {
padding: 5px 15px;
}
tfoot td {
text-align: center;
font-weight: 700;
}
tbody tr:nth-child(odd) {
background: var(--surface-color2);
}
table .btn {
background: var(--surface-color3);
color: var(--onsurface-color2);
padding: 5px 10px;
}
table .btn:hover,
table .btn:active {
background: var(--onsurface-color3);
box-shadow: 0 3px 13px rgba(114, 81, 81, 0.2);
}
/* ## Errors */
.errors {
color: var(--error-color);
}
/* # Sections */
/* ## Songdetails Section */
.songdetails .item {
margin: 20px 0;
padding: 0;
}
.songdetails h4 {
color: var(--onsurface-color);
margin: 0;
padding: 0;
}
.songdetails p {
color: var(--onsurface-color2);
padding: 0;
margin: 0;
font-variant: small-caps;
}
/* ## Songcreate Section */
.songcreate .datafield-item {
margin: 20px 0;
}
.songcreate p {
color: var(--onsurface-color2);
padding: 0;
margin: 0;
font-variant: small-caps;
}
.template {
/* color */
/* position */
/* display */
/* box model */
/* box attributes*/
/* text */
/* other */
/* animation */
} | public/css/style.css | :root{
/* # Color Themes */
/* ## Dark Theme */
--bg-color: #141518;
--primary-color: #FF5722;
--primary-color2: #f78c65;
--surface-color1: #191D22;
--surface-color2: #1E262E;
--surface-color3: #26323E;
--error-color: #CF6679;
--secondary-color: #22cbff;
--secondary-color2: #74dafe;
/* ### Oncolors */
--onprimary-color: #000000dd;
--onprimary-color2: #0a0a0a99;
--onprimary-color3: #00000060;
--onsurface-color: #FFFFFFdd;
--onsurface-color2: #FFFFFF99;
--onsurface-color3: #FFFFFF60;
--onerror-color: #000000dd;
/* ## Light Theme */
/* ## backup */
--bg-color-black: #121212;
--surface-color1-black: #1B1B1B;
--surface-color2-black: #252525;
--surface-color3-black: #343434;
--surface-color-minalpha:#6a9ed30a;
}
/* # Utilities */
/* ## General */
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background: var(--bg-color);
color: var(--onsurface-color);
font-family: Arial, Helvetica, sans-serif;
}
.container {
margin: 0 auto;
padding: 0 40px;
overflow: auto;
}
.flex {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
}
.flexitem {
background-color: var(--surface-color1);
padding: 20px;
margin: 10px;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.webcontainer {
max-width: 1100px;
}
/* ## Content */
h1 {
color: var(--primary-color);
margin: 0.7em 0;
font-size: 2.5em;
font-weight: 800;
}
h2 {
color: var(--onsurface-color);
margin: 0.7em 0;
font-size: 2em;
font-weight: 700;
}
h3 {
color: var(--onsurface-color);
margin: 0.8em 0;
font-size: 1.5em;
font-weight: 700;
}
h4 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.2em;
font-weight: 700;
}
h5 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.2em;
font-weight: 700;
}
h6 {
color: var(--onsurface-color);
margin: 1em 0;
font-size: 1.1em;
font-weight: 700;
}
p {
margin: 1em 0;
}
a {
color: var(--secondary-color);
text-decoration: none;
}
ul {
list-style-type: none;
}
img {
width: 100%;
}
/* ## Buttons */
.btn,
a .btn {
background: var(--primary-color);
color: var(--onprimary-color);
display: inline-block;
padding: 10px 30px;
border: none;
border-radius: 5px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
text-decoration: none;
cursor: pointer;
}
.btn:hover,
.btn:active {
background: var(--primary-color2);
box-shadow: 0 3px 13px rgba(0, 0, 0, 0.2);
}
/* ### Navbuttons */
.nav-btn {
background: var(--surface-color3);
color: var(--onsurface-color2);
min-width: 50px;
max-height: 100%;
border-radius: 0;
padding: 20px 10px;
text-align: center;
}
.active.nav-btn {
color: var(--primary-color);
}
.nav-btn:hover {
background: var(--surface-color2);
color: var(--primary-color2);
}
/* ## Bottomnavbar */
.bottomnavbar {
background: var(--surface-color3);
position: fixed;
bottom: 0;
width: 100%;
padding: 0;
box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.nav {
flex-direction: row;
align-items: flex-end;
}
/* ## Forms */
label {
color: var(--onsurface-color3);
display: block;
margin: 0 0 5px 0;
font-variant: small-caps;
}
input {
background: var(--surface-color2);
color: var(--onsurface-color2);
padding: 8px 8px;
border:2px solid var(--surface-color2);
border-radius: 5px;
outline: none;
font-size: 1em;
}
input[type="text"]:focus, input[type="text"]:hover {
color: var(--onsurface-color);
border:2px solid var(--primary-color);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
/* ## Table */
td {
padding: 5px 15px;
}
tfoot td {
text-align: center;
font-weight: 700;
}
tbody tr:nth-child(odd) {
background: var(--surface-color2);
}
table .btn {
background: var(--surface-color3);
color: var(--onsurface-color2);
padding: 5px 10px;
}
table .btn:hover,
table .btn:active {
background: var(--onsurface-color3);
box-shadow: 0 3px 13px rgba(114, 81, 81, 0.2);
}
/* ## Errors */
.errors {
color: var(--error-color);
}
/* # Sections */
/* ## Songdetails Section */
.songdetails .item {
margin: 20px 0;
padding: 0;
}
.songdetails h4 {
color: var(--onsurface-color);
margin: 0;
padding: 0;
}
.songdetails p {
color: var(--onsurface-color2);
padding: 0;
margin: 0;
font-variant: small-caps;
}
/* ## Songcreate Section */
.songcreate .datafield-item {
margin: 20px 0;
}
.songcreate p {
color: var(--onsurface-color2);
padding: 0;
margin: 0;
font-variant: small-caps;
}
.template {
/* color */
/* position */
/* display */
/* box model */
/* box attributes*/
/* text */
/* other */
/* animation */
} | 0.296349 | 0.102754 |
html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Coda', cursive;
}
body {
z-index: -1;
background: #fffff0;
}
/* In common:
-webkit- it is an alternative for Safari.
========================================= */
.container,
.card {
justify-content: center;
-webkit-justify-content: center;
}
.methods,
.container,
.control-game,
.deck,
.card,
footer,
.colors-page {
display: flex;
display: -webkit-flex;
}
/* A navbar with a panel to describe some methods used.
==================================================== */
#navbar {
width: 100%;
height: 68px;
top: 0;
left: 0;
right: 0;
position: fixed;
z-index: 20;
text-align: center;
font:300 20px 'Open Sans', sans-serif;
color: #fffff0;
background-color: #696969;
box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
cursor: default;
}
/* To alert with the change color when mouse over for doing click. */
#navbar:hover {
color:#ff7f50;
}
#panel {
width: 100%;
text-align: left;
font:300 18px 'Open Sans', sans-serif;
color: #fffff0;
background-color: #696969;
display: none;
top:0;
left: 0;
right: 0;
margin-top: 68px;
position: fixed;
z-index: 10;
box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
justify-content: space-between;
-webkit-justify-content: space-between;
-webkit-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
}
/*
Style for the text.
=================== */
#panel p {
margin: 18px 0 0 20px;
}
#panel ul {
margin: 0;
}
#panel ul:last-of-type {
margin-bottom: 14px;
}
#panel .note {
font-size: 16px;
margin-bottom: 18px;
}
/*
Boxes for each type of actions: CSS3 and jQuery.
================================================ */
.css-properties,
.jQuery-action {
width: 50%;
padding-right: 10px;
}
.jQuery-action {
background-color: #fffff0;
color: #696969;
}
/*
Link for Bibliography references. */
a {
outline: none;
text-decoration: none;
color: #fffff0;
}
a:hover {
text-decoration: none;
color: #ff7f50;
}
/* Style for Bibliography reference */
#panel hr:first-of-type {
margin-top: 0;
}
#panel hr:last-of-type {
margin-bottom: 0;
border: 1px solid #696969;
}
/*
Style for the square dot. */
#panel span {
display: inline-block;
width: 8px;
height: 8px;
background-color: #fffff0;
margin: 0 5px;
}
/*
Container: Title,
Deck of cards and
Footer with signature.
*/
.container {
width: 100%;
margin: 68px auto 10px auto;
align-items: center;
-webkit-align-items: center;
text-align: center;
flex-direction: column;
background: #fffff0;
z-index: -1;
}
/* Style for title
================ */
h1 {
font:300 33px 'Open Sans', sans-serif;
}
/* Style for the buttons
===================== *//*
-webkit-appearance: button;
Correct the inability to style clickable types in iOS and Safari.*/
/* With ::-moz-focus-inner remove the inner border in Firefox. */
#turn-back::-moz-focus-inner,
#restart::-moz-focus-inner {
border-style: none;
}
#turn-back {
padding: 16px 8.5px;
}
#restart {
padding: 16px 8px;
}
#turn-back,
#restart {
background-color: #696969;
border: none;
color: #fffff0;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
margin: 0 10px;
cursor: pointer;
border-radius: 50%;
box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-webkit-border-radius: 50%;
}
/* :focus selector to select the element that has focus.
===================================================== */
#turn-back:hover,
#turn-back:focus,
#restart:hover,
#restart:focus {
background-color: #ff7f50;
text-decoration: none;
box-shadow: 0px 2px 5px #c0c0c0;
-webkit-box-shadow: 0px 2px 5px #c0c0c0;
-moz-box-shadow: 0px 2px 5px #c0c0c0;
}
/*
Styles for the deck of cards.
The linear-gradient() function starts indigo (#4b0082),
transitioning to lavender (#e6e6fa).
It starts at top left and goes to bottom right.
====================================================== */
.deck {
width: 525px;
min-height: 540px;
margin: 1.5em 0 3em 0;
padding: 25px;
flex-wrap: wrap;
-webkit-justify-content: space-between;
-webkit-align-items: center;
justify-content: space-between;
align-items: center;
border-radius: 10px;
background: #00ffff linear-gradient(to bottom right, #00ffff, #e6e6fa );
box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.5);
}
/* Style for the cards.
==================== */
.card {
width: 100px;
height: 100px;
text-align: center;
letter-spacing: 2px;
align-items: center;
-webkit-align-items: center;
border-radius: 8px;
box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
position: relative;
cursor: default;
}
.card-back {
color: #000080;
background-color: #000080;
transform: rotateY(0);
-webkit-transform: rotateY(0);
}
.card-front {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
}
.card-back,
.card-front {
backface-visibility: hidden;
transform-style: preserve-3d;
transition: transform 2s;
-webkit-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
-webkit-transition: -webkit-transform 2s;
}
/* A class for using with .addClass() method.
========================================== */
.rotate-card {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
}
/* Footer
====== */
footer {
justify-content: flex-end;
-webkit-justify-content: flex-end;
color: #696969;
}
footer p {
margin-right: 5px;
}
/* Colors used in the page.
Backgroud-color for the page is Ivory #fffff0.
============================================== */
.colors-page {
padding: 18px 0;
justify-content: flex-end;
align-items: flex-end;
-webkit-justify-content: flex-end;
-webkit-align-items: flex-end;
}
.navy,
.aqua,
.dim-gray {
width: 26px;
height: 26px;
vertical-align: middle;
box-shadow: 0px 2px 5px #c0c0c0;
margin: 0 5px;
}
.navy {
background-color: #000080;
}
.aqua {
background-color: #00ffff;
}
.dim-gray {
background-color: #696969;
}
/* @Description: For small devices, media queries.
=============================================== */
@media screen and (max-width: 700px){
/* For the slideToggle */
#panel {
position: relative;
}
.methods {
display: block;
}
/*
Boxes for each type of actions: CSS3 and jQuery.
================================================ */
.css-properties,
.jQuery-action {
width: 100%;
padding: 9px 9px 9px 0;
}
.css-properties,
.jQuery-action p:first-of-type {
padding-top: 9px;
}
.deck {
width: 360px;
min-height: 375px;
padding: 16px;
margin-bottom: 27px;
}
.card {
width: 70px;
height: 70px;
}
#panel,
.card,
footer {
font-size: 14px;
}
#panel p {
margin: 9px 0 0 20px;
}
#panel ul:last-of-type {
margin-bottom: 7px;
}
#panel .note {
font-size: 12px;
margin: 11px 0 13px 15px;
padding: 5px;
}
h1 {
font-size: 28px;
}
.colors-page {
padding: 14px 0;
}
.navy,
.aqua,
.dim-gray {
width: 20px;
height: 20px;
}
}
@media screen and (max-width: 1100px){
#turn-back {
padding: 14px 6.5px;
}
#restart {
padding: 14px 6px;
}
} | style.css | html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
font-family: 'Coda', cursive;
}
body {
z-index: -1;
background: #fffff0;
}
/* In common:
-webkit- it is an alternative for Safari.
========================================= */
.container,
.card {
justify-content: center;
-webkit-justify-content: center;
}
.methods,
.container,
.control-game,
.deck,
.card,
footer,
.colors-page {
display: flex;
display: -webkit-flex;
}
/* A navbar with a panel to describe some methods used.
==================================================== */
#navbar {
width: 100%;
height: 68px;
top: 0;
left: 0;
right: 0;
position: fixed;
z-index: 20;
text-align: center;
font:300 20px 'Open Sans', sans-serif;
color: #fffff0;
background-color: #696969;
box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
cursor: default;
}
/* To alert with the change color when mouse over for doing click. */
#navbar:hover {
color:#ff7f50;
}
#panel {
width: 100%;
text-align: left;
font:300 18px 'Open Sans', sans-serif;
color: #fffff0;
background-color: #696969;
display: none;
top:0;
left: 0;
right: 0;
margin-top: 68px;
position: fixed;
z-index: 10;
box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
justify-content: space-between;
-webkit-justify-content: space-between;
-webkit-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 7px rgba(0, 0, 0, 0.2);
}
/*
Style for the text.
=================== */
#panel p {
margin: 18px 0 0 20px;
}
#panel ul {
margin: 0;
}
#panel ul:last-of-type {
margin-bottom: 14px;
}
#panel .note {
font-size: 16px;
margin-bottom: 18px;
}
/*
Boxes for each type of actions: CSS3 and jQuery.
================================================ */
.css-properties,
.jQuery-action {
width: 50%;
padding-right: 10px;
}
.jQuery-action {
background-color: #fffff0;
color: #696969;
}
/*
Link for Bibliography references. */
a {
outline: none;
text-decoration: none;
color: #fffff0;
}
a:hover {
text-decoration: none;
color: #ff7f50;
}
/* Style for Bibliography reference */
#panel hr:first-of-type {
margin-top: 0;
}
#panel hr:last-of-type {
margin-bottom: 0;
border: 1px solid #696969;
}
/*
Style for the square dot. */
#panel span {
display: inline-block;
width: 8px;
height: 8px;
background-color: #fffff0;
margin: 0 5px;
}
/*
Container: Title,
Deck of cards and
Footer with signature.
*/
.container {
width: 100%;
margin: 68px auto 10px auto;
align-items: center;
-webkit-align-items: center;
text-align: center;
flex-direction: column;
background: #fffff0;
z-index: -1;
}
/* Style for title
================ */
h1 {
font:300 33px 'Open Sans', sans-serif;
}
/* Style for the buttons
===================== *//*
-webkit-appearance: button;
Correct the inability to style clickable types in iOS and Safari.*/
/* With ::-moz-focus-inner remove the inner border in Firefox. */
#turn-back::-moz-focus-inner,
#restart::-moz-focus-inner {
border-style: none;
}
#turn-back {
padding: 16px 8.5px;
}
#restart {
padding: 16px 8px;
}
#turn-back,
#restart {
background-color: #696969;
border: none;
color: #fffff0;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 10px;
margin: 0 10px;
cursor: pointer;
border-radius: 50%;
box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0 4px 15px 5px rgba(0, 0, 0, 0.2);
-webkit-border-radius: 50%;
}
/* :focus selector to select the element that has focus.
===================================================== */
#turn-back:hover,
#turn-back:focus,
#restart:hover,
#restart:focus {
background-color: #ff7f50;
text-decoration: none;
box-shadow: 0px 2px 5px #c0c0c0;
-webkit-box-shadow: 0px 2px 5px #c0c0c0;
-moz-box-shadow: 0px 2px 5px #c0c0c0;
}
/*
Styles for the deck of cards.
The linear-gradient() function starts indigo (#4b0082),
transitioning to lavender (#e6e6fa).
It starts at top left and goes to bottom right.
====================================================== */
.deck {
width: 525px;
min-height: 540px;
margin: 1.5em 0 3em 0;
padding: 25px;
flex-wrap: wrap;
-webkit-justify-content: space-between;
-webkit-align-items: center;
justify-content: space-between;
align-items: center;
border-radius: 10px;
background: #00ffff linear-gradient(to bottom right, #00ffff, #e6e6fa );
box-shadow: 12px 15px 20px 0 rgba(46, 61, 73, 0.5);
}
/* Style for the cards.
==================== */
.card {
width: 100px;
height: 100px;
text-align: center;
letter-spacing: 2px;
align-items: center;
-webkit-align-items: center;
border-radius: 8px;
box-shadow: 5px 2px 20px 0 rgba(46, 61, 73, 0.5);
position: relative;
cursor: default;
}
.card-back {
color: #000080;
background-color: #000080;
transform: rotateY(0);
-webkit-transform: rotateY(0);
}
.card-front {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
}
.card-back,
.card-front {
backface-visibility: hidden;
transform-style: preserve-3d;
transition: transform 2s;
-webkit-backface-visibility: hidden;
-webkit-transform-style: preserve-3d;
-webkit-transition: -webkit-transform 2s;
}
/* A class for using with .addClass() method.
========================================== */
.rotate-card {
transform: rotateY(180deg);
-webkit-transform: rotateY(180deg);
}
/* Footer
====== */
footer {
justify-content: flex-end;
-webkit-justify-content: flex-end;
color: #696969;
}
footer p {
margin-right: 5px;
}
/* Colors used in the page.
Backgroud-color for the page is Ivory #fffff0.
============================================== */
.colors-page {
padding: 18px 0;
justify-content: flex-end;
align-items: flex-end;
-webkit-justify-content: flex-end;
-webkit-align-items: flex-end;
}
.navy,
.aqua,
.dim-gray {
width: 26px;
height: 26px;
vertical-align: middle;
box-shadow: 0px 2px 5px #c0c0c0;
margin: 0 5px;
}
.navy {
background-color: #000080;
}
.aqua {
background-color: #00ffff;
}
.dim-gray {
background-color: #696969;
}
/* @Description: For small devices, media queries.
=============================================== */
@media screen and (max-width: 700px){
/* For the slideToggle */
#panel {
position: relative;
}
.methods {
display: block;
}
/*
Boxes for each type of actions: CSS3 and jQuery.
================================================ */
.css-properties,
.jQuery-action {
width: 100%;
padding: 9px 9px 9px 0;
}
.css-properties,
.jQuery-action p:first-of-type {
padding-top: 9px;
}
.deck {
width: 360px;
min-height: 375px;
padding: 16px;
margin-bottom: 27px;
}
.card {
width: 70px;
height: 70px;
}
#panel,
.card,
footer {
font-size: 14px;
}
#panel p {
margin: 9px 0 0 20px;
}
#panel ul:last-of-type {
margin-bottom: 7px;
}
#panel .note {
font-size: 12px;
margin: 11px 0 13px 15px;
padding: 5px;
}
h1 {
font-size: 28px;
}
.colors-page {
padding: 14px 0;
}
.navy,
.aqua,
.dim-gray {
width: 20px;
height: 20px;
}
}
@media screen and (max-width: 1100px){
#turn-back {
padding: 14px 6.5px;
}
#restart {
padding: 14px 6px;
}
} | 0.455683 | 0.09556 |
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("plus.google.com") {
.Vra
{
background-color: rgba(0,0,0,0.0) !important;
}
.Rdb, .xWa, .yta
{
background-color: rgba(0,0,0,0.0) !important;
}
.WQ
{
background-color: rgba(128,128,128,0.9) !important;
}
.c-b-T
{
background-color: rgba(0,0,0,0.0) !important;
background-image: none !important;
}
*{
color: #999999;
background-color: #151515;
background-image: -moz-linear-gradient(top, #151515, #151515);
}
}
@-moz-document domain("plus.google.com"), domain("profiles.google.com") {
body,
html
{
color: #999999 !important;
background-color: #151515 !important;
background-image: -moz-linear-gradient(top, #333333, black) !important;
}
.Je , #content , body, html, #gbx3 , #gbx1 , #gbq2 , #gbqlw , #gbu , #gbqfqwb , #gbmpdv , .gbmc
{
background: -moz-linear-gradient(top, #333333, black) !important;
background-color: #151515;
background-repeat: no-repeat;
}
.Ff , .i-j-h-tb-x , .Ng , .xe , .a-n , .ak , .iP , .Rm , .bI , .Kj , .ii , .g-x-Aa , .h-y-Xa.Cd-Xa , .Gm.Cs , .FE , .BE , .jA.kv , .ap , .i-u-g-U.c-A , .a-o.Ot , .b0.lG.av , .Nq.ev.a-f-e.OT, .l-Uw.zda , .aw , .NN , .WV.x6.oz-sg-contacts , .CW.Rf.EW , .UBa.k2 , .yW.Gh.c-A , .g-Jb , .g-Ac , .qf , .i-k-j-U-y , .g-U-pd , .Gn , .cL.E4 , .Xc.jk.v4.Yl , .b1 , .R-N.g-R , .R-N-Z.R-N-Z-Tm , .wu.Pq.VH , .an , .p6 , .Yx , .JCb , .in , .a-o-D , .lE , .c-s.FI , .oO.c-A , .qI.a-o.p7 , .X6GeK {background: #151515 !important}
.jn.gu , .gpa.l-wua , .ne , .a-f-e.aU , .khb , .V0a , .bja , .Wz.SR.qja , .Gnb.BC , .Xib.BC , .Mv , #gbmpn , .gbps{ color: #999999 !important}
a {background: #151515 ; color: #999999 !important}
.HA.Op , .Xf.YE { color: #999999 !important}
.Qj.LB , .g-Ac , .i-k-j-U-y {border: none !important }
.i-u-g-U.c-A { color: #999999 !important}
.dsb.NDb , .qu , .lsb.fEb , .Yrb.EDb , .vDb , .maa.Q0a.F9 , .ze , .MA.Tea , .MA.SF , .csb , .ksb , .hEb , .c6.NHa , .pu {display: none !important }
.mg {background: #151515 !important }
.bn.Ag.eA , .bn.Ag.DU , .Dp , .a-o.Ot , .gi.ld.qm , .proflink , a , .Qj.LB , .qL , .UD.EI , .uw.a-f-e , .in , .a-o-D , .Zq , #gbqfqw , .editable{background: transparent !important}
#gbi3 { color: black !important}
#gbqfqwb {border-radius : 12px!important}
#gbqfqwb , .g-Jb , .SJ3WH {background: -moz-linear-gradient(top, #333333, black) !important }
.Hj.NB , .in.Fm , .CC {background: #1A1A1A !important}
.Hj.NB {border-radius : 0px 0px 10px 10px !important}
#gbqfqwb , .g-Jb , .SJ3WH{background: -moz-linear-gradient(top, #333333, black) !important}
.Yx , .gbqfif{ color: #999999 !important}
a {
color: #C9552D !important;
}
.jn.gu , .Xf.YE , .HA.Op , .R-N-Z-z{ color: #999999 !important}
.Qj.LB { color: #363636 !important}
.gi.ld.qm { color: #6E99A5 !important}
.Xc.jk.v4 {background: #6E99A5 !important}
.a-o.ot-anchor.ZE , .ot-anchor { color: #A56E6E !important}
.Qj {border: none !important}
#gbx1 , #gbx3 {border-color: #1F1F1F !important}
.BE {border: none !important}
.Zb {border-radius: 18px !important}
#gbqfqw {border: none !important }
.gAc , .esw , .a-f-e {border: none !important}
DIV {border-color: #363636 !important}
.h-J-o.h-q-o-ca.Mq.Gg { color: #969696 !important}
}
@-moz-document domain("talkgadget.google.com") {
#history , .wackmsgtype_i {
background: -moz-linear-gradient(top, #333333, black) !important;
background-color: #EBEBEB;
background-repeat: repeat;
}
.me_entry_search , .history_message.history_otr {background: transparent !important }
.CSS_CW_ENTRY_TEXT_AREA , #history , .wackmsgtype_i{color: #BDBDBD !important }
DIV , .roster_list_item , .me_entry_search {border-color: #363636 !important}
.roster_name { color:#A97B20 !important; }
#\:rs\.nt , .roster_msgs_entry_margin{ color: green !important }
.CSS_CW_TEXT_AREA_BUTTON_CELL , .CSS_INPUT_FIELD , .CSS_CW_ENTRY_TEXT_AREA , .CSS_CW_TEXT_AREA_TEXT_CELL , .CSS_LAYOUT_COMPONENT {background: #151515 !important }
}
@-moz-document domain("plus.google.com"), domain("profiles.google.com") {
body , .i-u-g-U-Lb {
font-family: tahoma , mj_liner print-out , Arial !important;
}
.gi.ld.md , .jn.gu , .i-u-g-U-Lb , .HA{font-size : 110% !important}
} | data/usercss/78245.user.css | @namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("plus.google.com") {
.Vra
{
background-color: rgba(0,0,0,0.0) !important;
}
.Rdb, .xWa, .yta
{
background-color: rgba(0,0,0,0.0) !important;
}
.WQ
{
background-color: rgba(128,128,128,0.9) !important;
}
.c-b-T
{
background-color: rgba(0,0,0,0.0) !important;
background-image: none !important;
}
*{
color: #999999;
background-color: #151515;
background-image: -moz-linear-gradient(top, #151515, #151515);
}
}
@-moz-document domain("plus.google.com"), domain("profiles.google.com") {
body,
html
{
color: #999999 !important;
background-color: #151515 !important;
background-image: -moz-linear-gradient(top, #333333, black) !important;
}
.Je , #content , body, html, #gbx3 , #gbx1 , #gbq2 , #gbqlw , #gbu , #gbqfqwb , #gbmpdv , .gbmc
{
background: -moz-linear-gradient(top, #333333, black) !important;
background-color: #151515;
background-repeat: no-repeat;
}
.Ff , .i-j-h-tb-x , .Ng , .xe , .a-n , .ak , .iP , .Rm , .bI , .Kj , .ii , .g-x-Aa , .h-y-Xa.Cd-Xa , .Gm.Cs , .FE , .BE , .jA.kv , .ap , .i-u-g-U.c-A , .a-o.Ot , .b0.lG.av , .Nq.ev.a-f-e.OT, .l-Uw.zda , .aw , .NN , .WV.x6.oz-sg-contacts , .CW.Rf.EW , .UBa.k2 , .yW.Gh.c-A , .g-Jb , .g-Ac , .qf , .i-k-j-U-y , .g-U-pd , .Gn , .cL.E4 , .Xc.jk.v4.Yl , .b1 , .R-N.g-R , .R-N-Z.R-N-Z-Tm , .wu.Pq.VH , .an , .p6 , .Yx , .JCb , .in , .a-o-D , .lE , .c-s.FI , .oO.c-A , .qI.a-o.p7 , .X6GeK {background: #151515 !important}
.jn.gu , .gpa.l-wua , .ne , .a-f-e.aU , .khb , .V0a , .bja , .Wz.SR.qja , .Gnb.BC , .Xib.BC , .Mv , #gbmpn , .gbps{ color: #999999 !important}
a {background: #151515 ; color: #999999 !important}
.HA.Op , .Xf.YE { color: #999999 !important}
.Qj.LB , .g-Ac , .i-k-j-U-y {border: none !important }
.i-u-g-U.c-A { color: #999999 !important}
.dsb.NDb , .qu , .lsb.fEb , .Yrb.EDb , .vDb , .maa.Q0a.F9 , .ze , .MA.Tea , .MA.SF , .csb , .ksb , .hEb , .c6.NHa , .pu {display: none !important }
.mg {background: #151515 !important }
.bn.Ag.eA , .bn.Ag.DU , .Dp , .a-o.Ot , .gi.ld.qm , .proflink , a , .Qj.LB , .qL , .UD.EI , .uw.a-f-e , .in , .a-o-D , .Zq , #gbqfqw , .editable{background: transparent !important}
#gbi3 { color: black !important}
#gbqfqwb {border-radius : 12px!important}
#gbqfqwb , .g-Jb , .SJ3WH {background: -moz-linear-gradient(top, #333333, black) !important }
.Hj.NB , .in.Fm , .CC {background: #1A1A1A !important}
.Hj.NB {border-radius : 0px 0px 10px 10px !important}
#gbqfqwb , .g-Jb , .SJ3WH{background: -moz-linear-gradient(top, #333333, black) !important}
.Yx , .gbqfif{ color: #999999 !important}
a {
color: #C9552D !important;
}
.jn.gu , .Xf.YE , .HA.Op , .R-N-Z-z{ color: #999999 !important}
.Qj.LB { color: #363636 !important}
.gi.ld.qm { color: #6E99A5 !important}
.Xc.jk.v4 {background: #6E99A5 !important}
.a-o.ot-anchor.ZE , .ot-anchor { color: #A56E6E !important}
.Qj {border: none !important}
#gbx1 , #gbx3 {border-color: #1F1F1F !important}
.BE {border: none !important}
.Zb {border-radius: 18px !important}
#gbqfqw {border: none !important }
.gAc , .esw , .a-f-e {border: none !important}
DIV {border-color: #363636 !important}
.h-J-o.h-q-o-ca.Mq.Gg { color: #969696 !important}
}
@-moz-document domain("talkgadget.google.com") {
#history , .wackmsgtype_i {
background: -moz-linear-gradient(top, #333333, black) !important;
background-color: #EBEBEB;
background-repeat: repeat;
}
.me_entry_search , .history_message.history_otr {background: transparent !important }
.CSS_CW_ENTRY_TEXT_AREA , #history , .wackmsgtype_i{color: #BDBDBD !important }
DIV , .roster_list_item , .me_entry_search {border-color: #363636 !important}
.roster_name { color:#A97B20 !important; }
#\:rs\.nt , .roster_msgs_entry_margin{ color: green !important }
.CSS_CW_TEXT_AREA_BUTTON_CELL , .CSS_INPUT_FIELD , .CSS_CW_ENTRY_TEXT_AREA , .CSS_CW_TEXT_AREA_TEXT_CELL , .CSS_LAYOUT_COMPONENT {background: #151515 !important }
}
@-moz-document domain("plus.google.com"), domain("profiles.google.com") {
body , .i-u-g-U-Lb {
font-family: tahoma , mj_liner print-out , Arial !important;
}
.gi.ld.md , .jn.gu , .i-u-g-U-Lb , .HA{font-size : 110% !important}
} | 0.222954 | 0.07703 |
@-moz-document domain("calendar.google.com") {
/* Set the Arabic Font: *********************************** */
/* 'Segoe UI' is nice for both of Arabic and English */
body
{
font-family: 'Segoe UI', 'Droid Arabic Naskh', 'Tahoma' !important;
unicode-bidi: plaintext !important;
direction: inherit;
}
/**** Month View ****/
/* Friday: */
[role='main']>[role='grid']>[role='row']>[role='columnheader']:nth-child(7n+6):nth-last-child(2) ,
[role='main']>[role='grid']>[role='presentation']>[role='row']>[aria-hidden='true']>div:nth-child(7n+6):nth-last-child(2),
/* Saturday: */
[role='main']>[role='grid']>[role='row']>[role='columnheader']:nth-child(7n+7):nth-last-child(1),
[role='main']>[role='grid']>[role='presentation']>[role='row']>[aria-hidden='true']>div:nth-child(7n+7):nth-last-child(1),
/**** Week View ****/
/* Friday: */
[role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>[role='presentation']>[role='columnheader']:nth-child(6), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>div>ul>li:nth-child(6), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(7),
/* Saturday: */
[role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>[role='presentation']>[role='columnheader']:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>div>ul>li:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(8), [role='main']>[role='grid']>[role='presentation'][data-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(8)
{
color: #004cb4;
background-color: #eeeeee;
/*max-width: 80px;*/
}
} | data/usercss/155211.user.css | @-moz-document domain("calendar.google.com") {
/* Set the Arabic Font: *********************************** */
/* 'Segoe UI' is nice for both of Arabic and English */
body
{
font-family: 'Segoe UI', 'Droid Arabic Naskh', 'Tahoma' !important;
unicode-bidi: plaintext !important;
direction: inherit;
}
/**** Month View ****/
/* Friday: */
[role='main']>[role='grid']>[role='row']>[role='columnheader']:nth-child(7n+6):nth-last-child(2) ,
[role='main']>[role='grid']>[role='presentation']>[role='row']>[aria-hidden='true']>div:nth-child(7n+6):nth-last-child(2),
/* Saturday: */
[role='main']>[role='grid']>[role='row']>[role='columnheader']:nth-child(7n+7):nth-last-child(1),
[role='main']>[role='grid']>[role='presentation']>[role='row']>[aria-hidden='true']>div:nth-child(7n+7):nth-last-child(1),
/**** Week View ****/
/* Friday: */
[role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>[role='presentation']>[role='columnheader']:nth-child(6), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>div>ul>li:nth-child(6), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(7),
/* Saturday: */
[role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>[role='presentation']>[role='columnheader']:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='row']>div>ul>li:nth-child(7), [role='main']>[role='grid']>[role='presentation'][data-start-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(8), [role='main']>[role='grid']>[role='presentation'][data-date-key]>[role='presentation']>[role='presentation']>[role='row']>[role='gridcell']:nth-child(8)
{
color: #004cb4;
background-color: #eeeeee;
/*max-width: 80px;*/
}
} | 0.20268 | 0.069352 |
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{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
html{
height: 100%;
overflow-x: hidden;
}
body{
font-family: 'Source Sans Pro', sans-serif;
padding:0px;
margin:0px;
font-size:16px;
background: url(images/bg.jpg) no-repeat center center;background-attachment:fixed; -webkit-background-size: 100%; -moz-background-size: 100%;-o-background-size: 100%;background-size: 100%;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover; background-size: cover;
}
.main_content{
width:1250px;
margin:auto;
padding:20px 0;
position:relative;
}
.video_testing_popup{
width:800px;
position:absolute;
left:225px;
top:120px;
padding:20px 0 40px 0;
z-index:9999;
background-color:#000;
box-shadow: 1px 1px 55px #484848;
display:none;
text-align:center;
}
a.close_video_testing{
display:block;
width:97%;
text-align:right;
text-decoration:none;
color:#fff;
font-size:20px;
}
.see_video_buttons{
width:650px;
margin:auto;
display:block;
text-align:center;
}
.see_video_buttons a{
display:inline-block;
}
.mobiles{
display:block;
width:100%;
text-align:center;
}
.iphone_bg{
width:420px;
height:816px;
float:left;
background:url(images/iphone.png) no-repeat center;
}
.mobile_wrap{
width:320px;
height:568px;
padding:120px 0 0 50px;
}
.left_content {
width:510px;
float:left;
}
.left_content h1{
font-size:100px;
font-weight:700;
letter-spacing:-1px;
line-height:80px;
margin:30px 0 0 0;
padding:0px;
}
.left_content h2{
font-size:30px;
font-weight:700;
letter-spacing:-1px;
line-height:30px;
margin:0px 0 0 5px;
padding:0px;
color:#fff;
clear:both;
float:left;
}
.description{
font-size:23px;
display:block;
padding:0 0 0 5px;
color:#fff;
}
.left_content p{
padding:30px 50px 30px 5px;
line-height:20px;
color:#fff;
}
.preview_list{
list-style:none;
padding:0px;
margin:0px;
}
.preview_list li{
background:url(images/checked.png) no-repeat left;
padding:10px 0 10px 50px;
font-size:17px;
color:#fff;
}
.right_content {
width:270px;
float:left;
padding:0 0 0 40px;
}
.right_content h3{
font-size:25px;
font-weight:700;
letter-spacing:-1px;
line-height:30px;
margin:35px 0 25px 0px;
padding:0px;
color:#fff;
clear:both;
}
.right_content small{
display:inline-block;
margin:10px 0 0 0;
padding:5px;
font-size:14px;
background-color:#FFFFFF;
}
.swipe_to_navigate{
background:url(images/swipe.png) no-repeat left;
height:64px;
color:#fff;
line-height:64px;
font-size:16px;
padding:0 0 0 90px;
margin:40px 0 0 0;
}
.designs_list{
list-style:none;
padding:0px;
margin:20px 0 0 0;
display:inline-block;
}
.designs_list li{
width:150px;
padding:0px;
margin:0px 0 0 0;
display:inline-block;
text-align:center;
}
.designs_list li span{
display:block;
padding:0 0 5px 0;
font-size:14px;
}
.designs_list li a{
text-decoration:none;
color:#fff;
}
a.video_button{
background:url(images/video.png) no-repeat left #aeb40e;
background-position:15px 13px;
display:block;
float:left;
margin:20px 0 20px 0;
padding:20px 30px 20px 60px;
color:#fff;
text-decoration:none;
-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;
font-size:16px;
}
a.video_button:hover{
} | Frontend/www/preview/preview.css | 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{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}
html{
height: 100%;
overflow-x: hidden;
}
body{
font-family: 'Source Sans Pro', sans-serif;
padding:0px;
margin:0px;
font-size:16px;
background: url(images/bg.jpg) no-repeat center center;background-attachment:fixed; -webkit-background-size: 100%; -moz-background-size: 100%;-o-background-size: 100%;background-size: 100%;-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover; background-size: cover;
}
.main_content{
width:1250px;
margin:auto;
padding:20px 0;
position:relative;
}
.video_testing_popup{
width:800px;
position:absolute;
left:225px;
top:120px;
padding:20px 0 40px 0;
z-index:9999;
background-color:#000;
box-shadow: 1px 1px 55px #484848;
display:none;
text-align:center;
}
a.close_video_testing{
display:block;
width:97%;
text-align:right;
text-decoration:none;
color:#fff;
font-size:20px;
}
.see_video_buttons{
width:650px;
margin:auto;
display:block;
text-align:center;
}
.see_video_buttons a{
display:inline-block;
}
.mobiles{
display:block;
width:100%;
text-align:center;
}
.iphone_bg{
width:420px;
height:816px;
float:left;
background:url(images/iphone.png) no-repeat center;
}
.mobile_wrap{
width:320px;
height:568px;
padding:120px 0 0 50px;
}
.left_content {
width:510px;
float:left;
}
.left_content h1{
font-size:100px;
font-weight:700;
letter-spacing:-1px;
line-height:80px;
margin:30px 0 0 0;
padding:0px;
}
.left_content h2{
font-size:30px;
font-weight:700;
letter-spacing:-1px;
line-height:30px;
margin:0px 0 0 5px;
padding:0px;
color:#fff;
clear:both;
float:left;
}
.description{
font-size:23px;
display:block;
padding:0 0 0 5px;
color:#fff;
}
.left_content p{
padding:30px 50px 30px 5px;
line-height:20px;
color:#fff;
}
.preview_list{
list-style:none;
padding:0px;
margin:0px;
}
.preview_list li{
background:url(images/checked.png) no-repeat left;
padding:10px 0 10px 50px;
font-size:17px;
color:#fff;
}
.right_content {
width:270px;
float:left;
padding:0 0 0 40px;
}
.right_content h3{
font-size:25px;
font-weight:700;
letter-spacing:-1px;
line-height:30px;
margin:35px 0 25px 0px;
padding:0px;
color:#fff;
clear:both;
}
.right_content small{
display:inline-block;
margin:10px 0 0 0;
padding:5px;
font-size:14px;
background-color:#FFFFFF;
}
.swipe_to_navigate{
background:url(images/swipe.png) no-repeat left;
height:64px;
color:#fff;
line-height:64px;
font-size:16px;
padding:0 0 0 90px;
margin:40px 0 0 0;
}
.designs_list{
list-style:none;
padding:0px;
margin:20px 0 0 0;
display:inline-block;
}
.designs_list li{
width:150px;
padding:0px;
margin:0px 0 0 0;
display:inline-block;
text-align:center;
}
.designs_list li span{
display:block;
padding:0 0 5px 0;
font-size:14px;
}
.designs_list li a{
text-decoration:none;
color:#fff;
}
a.video_button{
background:url(images/video.png) no-repeat left #aeb40e;
background-position:15px 13px;
display:block;
float:left;
margin:20px 0 20px 0;
padding:20px 30px 20px 60px;
color:#fff;
text-decoration:none;
-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;
font-size:16px;
}
a.video_button:hover{
} | 0.311951 | 0.066025 |
.body {
background-color: #ecf0f1;
}
.foto-pembinaan {
width:50px;
height: 50px;
border-radius: 5px;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb > .active {
color: #777;
}
.gambar-artikel {
width: 100%;
height: 200px;
}
.data-anggota {
width: 100%;
}
.foto-rekomendasi-pasus {
width: 100%;
height: 250px;
margin-top: 10px;
border: solid 5px #ecf0f1;
}
.foto-artikel {
width: 70px;
height: 70px;
}
.batas-tombol {
margin-top: 10px;
margin-left: 10px;
}
.blur {
width: auto;
height: auto;
padding: 10px;
background-color:rgba(153,153,153,.8);
}
.font-besar {
font-size: 25px;
}
.font-sedang{
font-size: 18px;
}
.font-kecil {
font-size: 12px;
}
.parallax-container {
height: 180px;
}
.batas-kiri {
margin-left: 50px;
}
.kanan {
float: right;
}
.kiri {
float: left;
}
.logo {
width: 55px;
height: 50px;
margin-top: 5px;
}
.batas-slider {
margin-top: 10px;
}
.kotak-forum {
width: 100%;
height: 310px;
overflow: auto;
}
.kotak-salam {
width: 100%
height:50px;
line-height: 50px;
font-size: 20px;
text-align: center;
}
.struktur-oraginisasi {
width: 100%;
height: 450px;
}
.kotak-kegiatan {
width: 100%
height: 50px;
line-height: 50px;
font-size: 20px;
text-align: center;
}
#map {
width: 100%;
height: 400px;
background-color: #CCC;
}
.kotak-komentar {
width: 100%;
height: 300px;
margin-top: 10px;
}
.judul-komentar {
width: 100%;
height: 40px;
line-height: 40px;
}
.judul {
width: auto;
height: auto;
font-size: 20px;
margin-left: 20px;
}
.table-komentar {
width: 100%;
}
.isi-komentar {
width: 100%;
height: 240px;
overflow: auto;
}
.isi-forum {
width: 100%;
height: 200px;
overflow: auto;
padding: 5px;
}
.forum {
width: 100%;
height: auto;
padding-left: 6px;
padding-right: 6px;
border-radius: 5px;
}
.kotak-dashboard {
width: 100%;
height: 90px;
margin-top: 10px;
padding: 10px;
}
.batas-atas {
margin-top: -15px;
}
.komentar {
width: 97%;
height: auto;
font-size: 14px;
margin-left: 10px;
padding: 10px;
}
.nama-komentar {
width: 100%;
height: 30px;
}
.isi-pesan {
width: 100%;
height: auto;
}
.slide-kegiatan {
width: 100%;
height: 70px;
}
.foto-pembina {
width: 100px;
height: 100px;
border-radius: 10%;
}
.kotak-pembina {
width: 100%;
height: 85px;
margin-top: 20px;
padding: 10px;
}
.sandi-ambalan {
width: 100%;
height: auto;
font-size: 18px;
text-align: center;
}
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
background-color: #42a5f5;
outline: 1px solid slategrey;
}
.judul-album-pta {
padding-left: 10px;
padding-bottom: 10px;
}
.foto-post-informasi {
width: 60px;
height: 60px;
float: left;
margin-bottom: 16px;
margin-right: 10px;
}
.nama-post-informasi {
font-size: 15px;
}
.waktu-post-informasi {
font-size: 12px;
}
.judul-slide-informasi {
font-size: 16px;
margin-left: 50px;
margin-right: 50px;
margin-top: 10px;
margin-bottom: 10px;
}
.kotak-samping-kiri {
width: 100%;
height: 300px;
position: fixed;
}
.ktk-menu {
width: 100%;
height: 80px;
font-size: 13px;
margin-bottom: 5px;
margin-top: 5px;
box-shadow: 0px 0px 3px #999;
}
.ktk-kehadiran {
width: 100%;
height: 200px;
overflow: auto;
} | simda_aplikasi/public/style.css | .body {
background-color: #ecf0f1;
}
.foto-pembinaan {
width:50px;
height: 50px;
border-radius: 5px;
}
.breadcrumb {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: #f5f5f5;
border-radius: 4px;
}
.breadcrumb > li {
display: inline-block;
}
.breadcrumb > li + li:before {
padding: 0 5px;
color: #ccc;
content: "/\00a0";
}
.breadcrumb > .active {
color: #777;
}
.gambar-artikel {
width: 100%;
height: 200px;
}
.data-anggota {
width: 100%;
}
.foto-rekomendasi-pasus {
width: 100%;
height: 250px;
margin-top: 10px;
border: solid 5px #ecf0f1;
}
.foto-artikel {
width: 70px;
height: 70px;
}
.batas-tombol {
margin-top: 10px;
margin-left: 10px;
}
.blur {
width: auto;
height: auto;
padding: 10px;
background-color:rgba(153,153,153,.8);
}
.font-besar {
font-size: 25px;
}
.font-sedang{
font-size: 18px;
}
.font-kecil {
font-size: 12px;
}
.parallax-container {
height: 180px;
}
.batas-kiri {
margin-left: 50px;
}
.kanan {
float: right;
}
.kiri {
float: left;
}
.logo {
width: 55px;
height: 50px;
margin-top: 5px;
}
.batas-slider {
margin-top: 10px;
}
.kotak-forum {
width: 100%;
height: 310px;
overflow: auto;
}
.kotak-salam {
width: 100%
height:50px;
line-height: 50px;
font-size: 20px;
text-align: center;
}
.struktur-oraginisasi {
width: 100%;
height: 450px;
}
.kotak-kegiatan {
width: 100%
height: 50px;
line-height: 50px;
font-size: 20px;
text-align: center;
}
#map {
width: 100%;
height: 400px;
background-color: #CCC;
}
.kotak-komentar {
width: 100%;
height: 300px;
margin-top: 10px;
}
.judul-komentar {
width: 100%;
height: 40px;
line-height: 40px;
}
.judul {
width: auto;
height: auto;
font-size: 20px;
margin-left: 20px;
}
.table-komentar {
width: 100%;
}
.isi-komentar {
width: 100%;
height: 240px;
overflow: auto;
}
.isi-forum {
width: 100%;
height: 200px;
overflow: auto;
padding: 5px;
}
.forum {
width: 100%;
height: auto;
padding-left: 6px;
padding-right: 6px;
border-radius: 5px;
}
.kotak-dashboard {
width: 100%;
height: 90px;
margin-top: 10px;
padding: 10px;
}
.batas-atas {
margin-top: -15px;
}
.komentar {
width: 97%;
height: auto;
font-size: 14px;
margin-left: 10px;
padding: 10px;
}
.nama-komentar {
width: 100%;
height: 30px;
}
.isi-pesan {
width: 100%;
height: auto;
}
.slide-kegiatan {
width: 100%;
height: 70px;
}
.foto-pembina {
width: 100px;
height: 100px;
border-radius: 10%;
}
.kotak-pembina {
width: 100%;
height: 85px;
margin-top: 20px;
padding: 10px;
}
.sandi-ambalan {
width: 100%;
height: auto;
font-size: 18px;
text-align: center;
}
body::-webkit-scrollbar {
width: 10px;
}
body::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
body::-webkit-scrollbar-thumb {
background-color: #42a5f5;
outline: 1px solid slategrey;
}
.judul-album-pta {
padding-left: 10px;
padding-bottom: 10px;
}
.foto-post-informasi {
width: 60px;
height: 60px;
float: left;
margin-bottom: 16px;
margin-right: 10px;
}
.nama-post-informasi {
font-size: 15px;
}
.waktu-post-informasi {
font-size: 12px;
}
.judul-slide-informasi {
font-size: 16px;
margin-left: 50px;
margin-right: 50px;
margin-top: 10px;
margin-bottom: 10px;
}
.kotak-samping-kiri {
width: 100%;
height: 300px;
position: fixed;
}
.ktk-menu {
width: 100%;
height: 80px;
font-size: 13px;
margin-bottom: 5px;
margin-top: 5px;
box-shadow: 0px 0px 3px #999;
}
.ktk-kehadiran {
width: 100%;
height: 200px;
overflow: auto;
} | 0.32029 | 0.086093 |
:root .has-background {
background-color: var(--bgColor);
}
:root .has-text-color {
color: var(--textColor);
}
:root .has-inline-color {
color: var(--textColor);
}
.has-tomato-background-color {
--bgColor: #c74200;
}
.has-tomato-color {
--textColor: #c74200;
}
.has-dark-slate-gray-background-color {
--bgColor: #333333;
}
.has-dark-slate-gray-color {
--textColor: #333333;
}
.has-gold-background-color {
--bgColor: #fbd43c;
}
.has-gold-color {
--textColor: #fbd43c;
}
.has-forest-green-background-color {
--bgColor: #008000;
}
.has-forest-green-color {
--textColor: #008000;
}
.has-dark-turquoise-background-color {
--bgColor: #05b5da;
}
.has-dark-turquoise-color {
--textColor: #05b5da;
}
.has-dark-slate-blue-background-color {
--bgColor: #1547a8;
}
.has-dark-slate-blue-color {
--textColor: #1547a8;
}
.has-soft-tomato-background-color {
--bgColor: #feede9;
}
.has-soft-tomato-color {
--textColor: #feede9;
}
.has-soft-gold-background-color {
--bgColor: #fef6d8;
}
.has-soft-gold-color {
--textColor: #fef6d8;
}
.has-soft-green-background-color {
--bgColor: #e0f5e0;
}
.has-soft-green-color {
--textColor: #e0f5e0;
}
.has-soft-turquoise-background-color {
--bgColor: #dff6fc;
}
.has-soft-turquoise-color {
--textColor: #dff6fc;
}
.has-soft-blue-background-color {
--bgColor: #e3ebfd;
}
.has-soft-blue-color {
--textColor: #e3ebfd;
}
.has-dark-gray-background-color {
--bgColor: #767676;
}
.has-dark-gray-color {
--textColor: #767676;
}
.has-gray-background-color {
--bgColor: #b0b0b0;
}
.has-gray-color {
--textColor: #b0b0b0;
}
.has-light-gray-background-color {
--bgColor: #d8d8d8;
}
.has-light-gray-color {
--textColor: #d8d8d8;
}
.has-lighter-gray-background-color {
--bgColor: #f5f5f5;
}
.has-lighter-gray-color {
--textColor: #f5f5f5;
}
.has-white-background-color {
--bgColor: #ffffff;
}
.has-white-color {
--textColor: #ffffff;
}
.has-black-background-color {
--bgColor: #000000;
}
.has-black-color {
--textColor: #000000;
}
/* CSS for same-height columns in a column group. This class has to be added to each column seperately. */
.column-same-height {
align-self: stretch !important;
}
.default-padding {
padding: 1.25em 2.375em;
}
.display-inline {
display: flex;
gap: 0 0.5em;
align-items: center;
}
.display-inline>*{
margin: 0;
}
/* CSS styling for license cards on CC-License page */
.license-card {
border: 0.125rem solid #B0B0B0;
border-top : 0.625rem solid #1547A8;
height: 15.625rem;
}
/* Remove margin from any block */
.no-margin {
margin: 0;
}
/* override default strong colour with inherited color from its parent element */
span.has-inline-color > strong {
color: inherit;
}
.team-member-position {
line-height:0.9em
}
.team-member-username {
margin-bottom: 0em !important;
}
/*override wp image caption css */
.wp-block-image figcaption {
font-family: "Source Sans Pro";
font-style: normal;
font-weight: normal;
font-size: 0.8rem;
line-height: 1.1;
color: #333333;
text-align: center;
}
/* override wp group block to fix overflowing */
.wp-block-group {
/* already using border-box sizing */
box-sizing: border-box;
/* add overflow rule */
overflow: hidden;
padding: 1.25em 2.375em;
} | style.css | :root .has-background {
background-color: var(--bgColor);
}
:root .has-text-color {
color: var(--textColor);
}
:root .has-inline-color {
color: var(--textColor);
}
.has-tomato-background-color {
--bgColor: #c74200;
}
.has-tomato-color {
--textColor: #c74200;
}
.has-dark-slate-gray-background-color {
--bgColor: #333333;
}
.has-dark-slate-gray-color {
--textColor: #333333;
}
.has-gold-background-color {
--bgColor: #fbd43c;
}
.has-gold-color {
--textColor: #fbd43c;
}
.has-forest-green-background-color {
--bgColor: #008000;
}
.has-forest-green-color {
--textColor: #008000;
}
.has-dark-turquoise-background-color {
--bgColor: #05b5da;
}
.has-dark-turquoise-color {
--textColor: #05b5da;
}
.has-dark-slate-blue-background-color {
--bgColor: #1547a8;
}
.has-dark-slate-blue-color {
--textColor: #1547a8;
}
.has-soft-tomato-background-color {
--bgColor: #feede9;
}
.has-soft-tomato-color {
--textColor: #feede9;
}
.has-soft-gold-background-color {
--bgColor: #fef6d8;
}
.has-soft-gold-color {
--textColor: #fef6d8;
}
.has-soft-green-background-color {
--bgColor: #e0f5e0;
}
.has-soft-green-color {
--textColor: #e0f5e0;
}
.has-soft-turquoise-background-color {
--bgColor: #dff6fc;
}
.has-soft-turquoise-color {
--textColor: #dff6fc;
}
.has-soft-blue-background-color {
--bgColor: #e3ebfd;
}
.has-soft-blue-color {
--textColor: #e3ebfd;
}
.has-dark-gray-background-color {
--bgColor: #767676;
}
.has-dark-gray-color {
--textColor: #767676;
}
.has-gray-background-color {
--bgColor: #b0b0b0;
}
.has-gray-color {
--textColor: #b0b0b0;
}
.has-light-gray-background-color {
--bgColor: #d8d8d8;
}
.has-light-gray-color {
--textColor: #d8d8d8;
}
.has-lighter-gray-background-color {
--bgColor: #f5f5f5;
}
.has-lighter-gray-color {
--textColor: #f5f5f5;
}
.has-white-background-color {
--bgColor: #ffffff;
}
.has-white-color {
--textColor: #ffffff;
}
.has-black-background-color {
--bgColor: #000000;
}
.has-black-color {
--textColor: #000000;
}
/* CSS for same-height columns in a column group. This class has to be added to each column seperately. */
.column-same-height {
align-self: stretch !important;
}
.default-padding {
padding: 1.25em 2.375em;
}
.display-inline {
display: flex;
gap: 0 0.5em;
align-items: center;
}
.display-inline>*{
margin: 0;
}
/* CSS styling for license cards on CC-License page */
.license-card {
border: 0.125rem solid #B0B0B0;
border-top : 0.625rem solid #1547A8;
height: 15.625rem;
}
/* Remove margin from any block */
.no-margin {
margin: 0;
}
/* override default strong colour with inherited color from its parent element */
span.has-inline-color > strong {
color: inherit;
}
.team-member-position {
line-height:0.9em
}
.team-member-username {
margin-bottom: 0em !important;
}
/*override wp image caption css */
.wp-block-image figcaption {
font-family: "Source Sans Pro";
font-style: normal;
font-weight: normal;
font-size: 0.8rem;
line-height: 1.1;
color: #333333;
text-align: center;
}
/* override wp group block to fix overflowing */
.wp-block-group {
/* already using border-box sizing */
box-sizing: border-box;
/* add overflow rule */
overflow: hidden;
padding: 1.25em 2.375em;
} | 0.472197 | 0.12424 |
.title,
.input,
.textarea,
.lowPriorityBtn,
.btn {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 400;
}
.title {
margin: 0;
margin-bottom: 8px;
font-size: 14px;
color: #a09a9a;
}
.outer {
min-width: 320px;
background-color: #fff;
padding: 9% 7.5%;
}
.createTaskTitle {
composes: title;
margin-bottom: 20px;
font-size: 22px;
font-weight: 500;
color: #000;
}
.svgBtn {
width: 39px;
height: 39px;
border: 0;
border-radius: 19px;
background-color: #f5e6e6;
box-shadow: 0 2px 2px 0 #808080;
outline: none;
cursor: pointer;
}
.svg {
fill: #f25137;
}
.helperDiv {
width: 100%;
margin-bottom: 16px;
display: flex;
justify-content: space-between;
}
.flexHelperDiv {
composes: helperDiv;
}
.selectContainer {
width: 46.88%;
}
.titleTitle {
composes: title;
}
.titleTitle::after {
content: '*';
color: #f25137;
}
.input {
box-sizing: border-box;
width: 100%;
height: 40px;
padding-left: 20px;
background-color: #f5f7fa;
border-width: 2px 0 0 0;
border-style: solid;
border-color: #f1f1f1;
}
.dateInput {
composes: input;
padding-left: 10px;
}
.titleInput {
composes: input;
margin-bottom: 16px;
font-size: 16px;
}
.textarea {
box-sizing: border-box;
width: 100%;
margin-bottom: 16px;
background-color: #f5f7fa;
border-width: 2px 0 0 0;
border-style: solid;
border-color: #f1f1f1;
padding: 10px 20px;
resize: none;
font-size: 14px;
}
.titleInput::placeholder,
.textarea::placeholder {
color: #cac4c4;
}
.priorityDiv {
position: relative;
width: 50%;
padding-top: 8px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
}
.lowPriorityBtn {
position: absolute;
right: 0;
width: 24px;
height: 24px;
border: 0;
padding: 0;
border-radius: 50%;
color: #fff;
font-size: 14px;
font-weight: 700;
transition: all 0.2s;
background-color: #5ec455;
box-shadow: 0 2px 2px 0 #808080;
cursor: pointer;
}
.lowPriorityBtn:focus {
outline: none;
}
.btnActive {
transform: scale(1.5);
}
.highPriorityBtn {
composes: lowPriorityBtn;
left: 0;
background-color: #f25127;
}
.btn {
border: 0;
padding: 0;
width: 46.88%;
height: 40px;
font-weight: 700;
color: #000;
background-color: #f5f7fa;
cursor: pointer;
}
.acceptBtn {
composes: btn;
color: #fff;
background-color: #ff6b08;
}
.btnDiv {
composes: helperDiv;
margin: 0;
}
@media screen and (max-width: 1119px) {
.outer {
max-width: 100vw;
min-height: 100vh;
}
}
@media screen and (min-width: 768px) {
.outer {
padding: 6.6% 28.76%;
}
.flexHelperDiv {
flex-direction: column;
height: 146px;
}
.svgBtn {
display: block;
margin: 0 auto;
margin-bottom: 16px;
}
.priorityDiv {
width: 100%;
}
}
@media screen and (min-width: 1120px) {
.outer {
max-width: 100%;
padding: 30px 13.64%;
}
.priorityDiv {
width: 70%;
}
} | src/components/TaskPopUp/TaskPopUp.module.css | .title,
.input,
.textarea,
.lowPriorityBtn,
.btn {
font-family: 'Montserrat', sans-serif;
font-size: 12px;
font-weight: 400;
}
.title {
margin: 0;
margin-bottom: 8px;
font-size: 14px;
color: #a09a9a;
}
.outer {
min-width: 320px;
background-color: #fff;
padding: 9% 7.5%;
}
.createTaskTitle {
composes: title;
margin-bottom: 20px;
font-size: 22px;
font-weight: 500;
color: #000;
}
.svgBtn {
width: 39px;
height: 39px;
border: 0;
border-radius: 19px;
background-color: #f5e6e6;
box-shadow: 0 2px 2px 0 #808080;
outline: none;
cursor: pointer;
}
.svg {
fill: #f25137;
}
.helperDiv {
width: 100%;
margin-bottom: 16px;
display: flex;
justify-content: space-between;
}
.flexHelperDiv {
composes: helperDiv;
}
.selectContainer {
width: 46.88%;
}
.titleTitle {
composes: title;
}
.titleTitle::after {
content: '*';
color: #f25137;
}
.input {
box-sizing: border-box;
width: 100%;
height: 40px;
padding-left: 20px;
background-color: #f5f7fa;
border-width: 2px 0 0 0;
border-style: solid;
border-color: #f1f1f1;
}
.dateInput {
composes: input;
padding-left: 10px;
}
.titleInput {
composes: input;
margin-bottom: 16px;
font-size: 16px;
}
.textarea {
box-sizing: border-box;
width: 100%;
margin-bottom: 16px;
background-color: #f5f7fa;
border-width: 2px 0 0 0;
border-style: solid;
border-color: #f1f1f1;
padding: 10px 20px;
resize: none;
font-size: 14px;
}
.titleInput::placeholder,
.textarea::placeholder {
color: #cac4c4;
}
.priorityDiv {
position: relative;
width: 50%;
padding-top: 8px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
}
.lowPriorityBtn {
position: absolute;
right: 0;
width: 24px;
height: 24px;
border: 0;
padding: 0;
border-radius: 50%;
color: #fff;
font-size: 14px;
font-weight: 700;
transition: all 0.2s;
background-color: #5ec455;
box-shadow: 0 2px 2px 0 #808080;
cursor: pointer;
}
.lowPriorityBtn:focus {
outline: none;
}
.btnActive {
transform: scale(1.5);
}
.highPriorityBtn {
composes: lowPriorityBtn;
left: 0;
background-color: #f25127;
}
.btn {
border: 0;
padding: 0;
width: 46.88%;
height: 40px;
font-weight: 700;
color: #000;
background-color: #f5f7fa;
cursor: pointer;
}
.acceptBtn {
composes: btn;
color: #fff;
background-color: #ff6b08;
}
.btnDiv {
composes: helperDiv;
margin: 0;
}
@media screen and (max-width: 1119px) {
.outer {
max-width: 100vw;
min-height: 100vh;
}
}
@media screen and (min-width: 768px) {
.outer {
padding: 6.6% 28.76%;
}
.flexHelperDiv {
flex-direction: column;
height: 146px;
}
.svgBtn {
display: block;
margin: 0 auto;
margin-bottom: 16px;
}
.priorityDiv {
width: 100%;
}
}
@media screen and (min-width: 1120px) {
.outer {
max-width: 100%;
padding: 30px 13.64%;
}
.priorityDiv {
width: 70%;
}
} | 0.373533 | 0.105948 |
body{
background-color: #d6e3fe;
font-family: 'Oswald', sans-serif;
}
#recipes {
margin-bottom:30px;
}
.btn-info{
background: #9d5c63;
height: 50px;
}
#form1{
display: none;
color: rgb(15, 97, 15);
background-color: #fef5ef;
border-radius: 10px;
margin-top:50px;
}
body {
background-color: #584b53;
min-height:100vh;
}
footer{
background-color: #e4bb97;
text-align: center;
}
.navbar{
background-color: #9d5c63;
margin: 0 0 5px 0;
}
.fab{
color:#584b53;
}
.title {
margin-bottom: 0px;
font-size: 60px;
padding:10px;
}
.tales {
width: 100%;
}
.carousel-inner{
width:100%;
max-height: 700px !important;
}
#videos {
text-align:center;
display:none;
}
/* #userInputs {
display:none;
} */
.videoLinks {
margin:20px;
}
.goal {
display:inline-block;
padding:30px;
}
.goal:hover {
background-color:lightgrey;
cursor: pointer;
}
#goals {
text-align:center;
border-radius: 10px;
background-color: #9d5c63;
}
#macroChart {
width:300px !important;
display:none;
text-align:center;
color: #fef5ef;
}
/* .recipes {
width: 200px;
height: 200px;
margin: 10px;
text-align:center;
} */
.card {
display: inline-block;
margin:20px;
overflow: hidden;
text-overflow: ellipsis;
height:450px;
background-color:#fef5ef;
width:32rem;
}
#recipes {
display:none;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
margin-top:15px;
}
#videos {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
margin-top:25px;
}
.card-img-top {
height:295px;
}
.card-title {
margin-top:7px;
margin-left:5px;
}
::-webkit-scrollbar {
width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #fef5ef;
border-radius: 10px;
}
.result-titles {
color: #fef5ef;
font-family: 'Oswald', sans-serif;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: lightgrey;
}
body::-webkit-scrollbar {
display: none;
}
.result-titles {
text-align:center;
margin-bottom:25px;
font-size:40px;
display:none;
}
.nutrients {
font-family: 'Oswald', sans-serif;
}
#BMIinfo {
font-family: 'Oswald', sans-serif;
display:none;
text-align:center;
color: #fef5ef;
float:right;
margin-top:130px;
}
#BMIinfo h3 {
font-size:35px;
margin-bottom:20px;
} | assets/css/stylesheet.css | body{
background-color: #d6e3fe;
font-family: 'Oswald', sans-serif;
}
#recipes {
margin-bottom:30px;
}
.btn-info{
background: #9d5c63;
height: 50px;
}
#form1{
display: none;
color: rgb(15, 97, 15);
background-color: #fef5ef;
border-radius: 10px;
margin-top:50px;
}
body {
background-color: #584b53;
min-height:100vh;
}
footer{
background-color: #e4bb97;
text-align: center;
}
.navbar{
background-color: #9d5c63;
margin: 0 0 5px 0;
}
.fab{
color:#584b53;
}
.title {
margin-bottom: 0px;
font-size: 60px;
padding:10px;
}
.tales {
width: 100%;
}
.carousel-inner{
width:100%;
max-height: 700px !important;
}
#videos {
text-align:center;
display:none;
}
/* #userInputs {
display:none;
} */
.videoLinks {
margin:20px;
}
.goal {
display:inline-block;
padding:30px;
}
.goal:hover {
background-color:lightgrey;
cursor: pointer;
}
#goals {
text-align:center;
border-radius: 10px;
background-color: #9d5c63;
}
#macroChart {
width:300px !important;
display:none;
text-align:center;
color: #fef5ef;
}
/* .recipes {
width: 200px;
height: 200px;
margin: 10px;
text-align:center;
} */
.card {
display: inline-block;
margin:20px;
overflow: hidden;
text-overflow: ellipsis;
height:450px;
background-color:#fef5ef;
width:32rem;
}
#recipes {
display:none;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
margin-top:15px;
}
#videos {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
margin-top:25px;
}
.card-img-top {
height:295px;
}
.card-title {
margin-top:7px;
margin-left:5px;
}
::-webkit-scrollbar {
width: 20px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #fef5ef;
border-radius: 10px;
}
.result-titles {
color: #fef5ef;
font-family: 'Oswald', sans-serif;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: lightgrey;
}
body::-webkit-scrollbar {
display: none;
}
.result-titles {
text-align:center;
margin-bottom:25px;
font-size:40px;
display:none;
}
.nutrients {
font-family: 'Oswald', sans-serif;
}
#BMIinfo {
font-family: 'Oswald', sans-serif;
display:none;
text-align:center;
color: #fef5ef;
float:right;
margin-top:130px;
}
#BMIinfo h3 {
font-size:35px;
margin-bottom:20px;
} | 0.272121 | 0.083778 |
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}
body{
background-color: #f3f5f9;
width: 100%;
height: 100%;
overflow-x: hidden;
}
.wrapper{
display: flex;
position: relative;
}
.wrapper .sidebar{
width: 200px;
height: 100%;
background: #005faf;
padding: 30px 0px;
position: fixed;
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 1px solid #bdb8d7;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-top: 1px solid rgba(255,255,255,0.05);
}
.wrapper .sidebar ul li h1{
position: relative;
left:50px;
font-size:20px;
font-weight:normal;
}
.wrapper .sidebar ul li:first-child{
padding:0;
}
.wrapper .sidebar ul li a{
color: #bdb8d7;
display: block;
}
.wrapper .sidebar ul li a .fas{
width: 25px;
}
.wrapper .sidebar ul li:hover{
background-color: #0e94d4;
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
.wrapper .main_content{
width: 900px;
position: absolute;
right: 30px;
top: 60px;
background-color: #DEFAF9;
height: 1000px;
border: thin solid #DDDDDD;
}
.wrapper .header {
width: 900px;
position: absolute;
left: 220px;
top: 0px;
background-color: #f3f5f9;
/*background-color: red; */
height: 50px;
padding: 5px;
}
.wrapper .header h1{
position: relative;
font-size: 18px;
left:30px;
top:5px;
font-family: Helvetica;
font-weight: normal;
}
.wrapper .header h2{
position: relative;
font-size: 30px;
left:240px;
top:-20px;
font-family: Helvetica;
color:#61D642;
}
.wrapper .header .Date{
width: 500px;
position: absolute;
left: 350px;
top:5px;
background-color: #f3f5f9;
height: 50px;
}
.wrapper .header .Date .date{
position: absolute;
top:10px;
font-size: 20px;
left: 100px;
}
.wrapper .header .Date .calendar{
position: absolute;
left: 280px;
font-size: 30px;
top:-1px;
color:#0688B7;
}
.wrapper .header #username2{
position: absolute;
top:5px;
width: 350px;
height: 50px;
left: 700px;
}
.wrapper .header #username2 h1{
position: relative;
left: 70px;
font-size: 25px;
}
.wrapper .header .logout{
width: 350px;
position: absolute;
left: 900px;
top:5px;
background-color: #f3f5f9;
height: 50px;
}
.outbutton {
position:relative;
background:none;
border:none;
margin:0;
padding:0;
cursor: pointer;
font-size:20px;
top:10px;
left:35px;
}
.outbutton:hover{
color:red;
}
table, td {
border: 1px solid black;
}
.main_content h2{
font-weight: normal;
position: relative;
top:40px;
left:20px;
color:#003C75;
}
.main_content #food{
width: 300px;
height:27px;
padding:5px;
position: relative;
top:60px;
left:20px;
}
.main_content #getText{
position: relative;
background-color : #40A35B;
top:60px;
left:30px;
color:white;
padding: 0;
border: none;
font-size :15px;
width: 75px;
height: 25px;
border-radius: 4px;
}
.wrapper2 {
overflow:hidden;
overflow-y: scroll;
height: 350px;
border: 1px solid black;
width: 450px;
background-color: white;
position: relative;
left:15px;
top:100px;
}
.wrapper2 #output2{
padding: 5px;
font-size: 14px;
}
.link:hover{
background-color: #E3EAED;
}
.link{
background-color: white;
width: 425px;
height:70px;
border-top: none;
border-right: none;
border-left: none;
}
.link h3{
color:#06A6E0;
font-weight: normal;
}
.link h4{
color:#787F83;
font-weight: normal;
}
.addCalories {
overflow:hidden;
overflow-y: scroll;
height: 350px;
width: 400px;
background-color: white;
position: relative;
left: 475px;
top:-250px;
background-color: #F0F0F0;
}
.addCalories h2{
font-weight:normal;
font-size: 25px;
position: relative;
left: 50px;
top:100px;
color:#0a5282;
}
.addCalories #calories{
position: relative;
left:290px;
top:71px;
font-size: 25px;
font-weight: normal;
}
.addCalories .btn{
position: relative;
left: 120px;
top:150px;
background-color : #40A35B;
color:white;
padding: 0;
border: none;
font-size :15px;
width: 150px;
height: 40px;
border-radius: 4px;
}
#diary {
position: relative;
top:-400px;
height: 300px;
}
#diary h1{
position: relative;
left: 20px;
top:20px;
color:#0a5282;
font-weight:normal;
font-size: 30px;
}
.foodlog{
position:relative;
color: #096397;
left:20px;
width: 500px;
height:35px;
padding:5px;
top:25px;
border:0.01em solid #CBC9C8;
background-color:#F0F0F0;
}
.button3{
position:relative;
right:15px;
border:none;
background: #005faf;
color: #bdb8d7;
width: 215px;
height:40px;
font-size:20px;
}
.button3:hover{
background-color: #0e94d4;
color:white;
}
#foodDetails{
font-size: 1px;
color: #F0F0F0;
}
#food1{
font-size: 1px;
color: #F0F0F0;
}
#calories1{
font-size: 1px;
color: #F0F0F0;
}
.food_image{
background: url('images/salad.jpg') no-repeat
center top/cover;
height:200px;
width:400px;
top:-740px;
left:450px;
position:relative;
background-size: 250px;
} | static/account2.css | *{
margin: 0px;
padding: 0px;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: 'Josefin Sans', sans-serif;
}
body{
background-color: #f3f5f9;
width: 100%;
height: 100%;
overflow-x: hidden;
}
.wrapper{
display: flex;
position: relative;
}
.wrapper .sidebar{
width: 200px;
height: 100%;
background: #005faf;
padding: 30px 0px;
position: fixed;
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 1px solid #bdb8d7;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-top: 1px solid rgba(255,255,255,0.05);
}
.wrapper .sidebar ul li h1{
position: relative;
left:50px;
font-size:20px;
font-weight:normal;
}
.wrapper .sidebar ul li:first-child{
padding:0;
}
.wrapper .sidebar ul li a{
color: #bdb8d7;
display: block;
}
.wrapper .sidebar ul li a .fas{
width: 25px;
}
.wrapper .sidebar ul li:hover{
background-color: #0e94d4;
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
.wrapper .main_content{
width: 900px;
position: absolute;
right: 30px;
top: 60px;
background-color: #DEFAF9;
height: 1000px;
border: thin solid #DDDDDD;
}
.wrapper .header {
width: 900px;
position: absolute;
left: 220px;
top: 0px;
background-color: #f3f5f9;
/*background-color: red; */
height: 50px;
padding: 5px;
}
.wrapper .header h1{
position: relative;
font-size: 18px;
left:30px;
top:5px;
font-family: Helvetica;
font-weight: normal;
}
.wrapper .header h2{
position: relative;
font-size: 30px;
left:240px;
top:-20px;
font-family: Helvetica;
color:#61D642;
}
.wrapper .header .Date{
width: 500px;
position: absolute;
left: 350px;
top:5px;
background-color: #f3f5f9;
height: 50px;
}
.wrapper .header .Date .date{
position: absolute;
top:10px;
font-size: 20px;
left: 100px;
}
.wrapper .header .Date .calendar{
position: absolute;
left: 280px;
font-size: 30px;
top:-1px;
color:#0688B7;
}
.wrapper .header #username2{
position: absolute;
top:5px;
width: 350px;
height: 50px;
left: 700px;
}
.wrapper .header #username2 h1{
position: relative;
left: 70px;
font-size: 25px;
}
.wrapper .header .logout{
width: 350px;
position: absolute;
left: 900px;
top:5px;
background-color: #f3f5f9;
height: 50px;
}
.outbutton {
position:relative;
background:none;
border:none;
margin:0;
padding:0;
cursor: pointer;
font-size:20px;
top:10px;
left:35px;
}
.outbutton:hover{
color:red;
}
table, td {
border: 1px solid black;
}
.main_content h2{
font-weight: normal;
position: relative;
top:40px;
left:20px;
color:#003C75;
}
.main_content #food{
width: 300px;
height:27px;
padding:5px;
position: relative;
top:60px;
left:20px;
}
.main_content #getText{
position: relative;
background-color : #40A35B;
top:60px;
left:30px;
color:white;
padding: 0;
border: none;
font-size :15px;
width: 75px;
height: 25px;
border-radius: 4px;
}
.wrapper2 {
overflow:hidden;
overflow-y: scroll;
height: 350px;
border: 1px solid black;
width: 450px;
background-color: white;
position: relative;
left:15px;
top:100px;
}
.wrapper2 #output2{
padding: 5px;
font-size: 14px;
}
.link:hover{
background-color: #E3EAED;
}
.link{
background-color: white;
width: 425px;
height:70px;
border-top: none;
border-right: none;
border-left: none;
}
.link h3{
color:#06A6E0;
font-weight: normal;
}
.link h4{
color:#787F83;
font-weight: normal;
}
.addCalories {
overflow:hidden;
overflow-y: scroll;
height: 350px;
width: 400px;
background-color: white;
position: relative;
left: 475px;
top:-250px;
background-color: #F0F0F0;
}
.addCalories h2{
font-weight:normal;
font-size: 25px;
position: relative;
left: 50px;
top:100px;
color:#0a5282;
}
.addCalories #calories{
position: relative;
left:290px;
top:71px;
font-size: 25px;
font-weight: normal;
}
.addCalories .btn{
position: relative;
left: 120px;
top:150px;
background-color : #40A35B;
color:white;
padding: 0;
border: none;
font-size :15px;
width: 150px;
height: 40px;
border-radius: 4px;
}
#diary {
position: relative;
top:-400px;
height: 300px;
}
#diary h1{
position: relative;
left: 20px;
top:20px;
color:#0a5282;
font-weight:normal;
font-size: 30px;
}
.foodlog{
position:relative;
color: #096397;
left:20px;
width: 500px;
height:35px;
padding:5px;
top:25px;
border:0.01em solid #CBC9C8;
background-color:#F0F0F0;
}
.button3{
position:relative;
right:15px;
border:none;
background: #005faf;
color: #bdb8d7;
width: 215px;
height:40px;
font-size:20px;
}
.button3:hover{
background-color: #0e94d4;
color:white;
}
#foodDetails{
font-size: 1px;
color: #F0F0F0;
}
#food1{
font-size: 1px;
color: #F0F0F0;
}
#calories1{
font-size: 1px;
color: #F0F0F0;
}
.food_image{
background: url('images/salad.jpg') no-repeat
center top/cover;
height:200px;
width:400px;
top:-740px;
left:450px;
position:relative;
background-size: 250px;
} | 0.210036 | 0.04703 |
.small img {
width: 100px;
height: 100px;
margin: 40px;
}
/* line 14, hexTest.scss */
.container {
width: 1024px;
line-height: 1.0;
overflow: hidden;
padding-left: 0px;
margin-left: auto;
margin-right: auto;
}
/* line 23, hexTest.scss */
.hexGrid {
position: absolute;
top: 0px;
width: inherit;
}
/* line 29, hexTest.scss */
.visible {
display: visible;
}
/* line 33, hexTest.scss */
.invisible {
display: hidden;
height: 0px;
}
/* line 38, hexTest.scss */
.logoHex {
top: 189.1072px;
}
/* line 46, hexTest.scss */
.logoHex {
pointer-events: all;
position: absolute;
left: 50%;
transform: translate(-49%, 0);
height: 141.65333px;
width: 240.81067px;
border-radius: 7.08267px;
display: inline-block;
z-index: 1;
transition: all 600ms ease-in-out;
}
/* line 63, hexTest.scss */
.logoHex:before, .logoHex:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
}
/* line 71, hexTest.scss */
.logoHex:before {
transform: rotate(60deg);
}
/* line 75, hexTest.scss */
.logoHex:after {
position: absolute;
transform: rotate(-60deg);
left: 0;
top: 0;
}
/* line 82, hexTest.scss */
.logoHex img {
width: 240.81067px;
position: relative;
top: -67.81277px;
pointer-events: none;
}
/* line 89, hexTest.scss */
ol {
pointer-events: none;
-webkit-margin-before: 0px;
-webkit-padding-start: 16.9984px;
-webkit-margin-after: 0px;
}
/* line 96, hexTest.scss */
ol.even {
position: relative;
left: 40.34287px;
}
/* line 101, hexTest.scss */
ol.odd {
position: relative;
left: 0px;
margin-top: -34.73474px;
margin-bottom: -34.73474px;
}
/* line 108, hexTest.scss */
ol {
white-space: nowrap;
}
/* line 112, hexTest.scss */
.hex {
pointer-events: all;
position: relative;
margin: 28.33067px;
height: 42.496px;
width: 72.2432px;
border-radius: 1.69984px;
background: #fff;
display: inline-block;
margin-right: 7.08267px;
margin-left: 0px;
transition: all 500ms ease-in-out;
z-index: 0;
}
/* line 128, hexTest.scss */
.hex:before, .hex:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
}
/* line 137, hexTest.scss */
.hex:before {
transform: rotate(60deg);
}
/* line 141, hexTest.scss */
.hex:after {
transform: rotate(-60deg);
left: 0;
top: 0;
}
/* line 147, hexTest.scss */
.hex:hover {
background: #F8baba;
cursor: pointer;
}
/* line 151, hexTest.scss */
.hex div {
width: 72.2432px;
height: 200%;
position: relative;
top: -20.34383px;
pointer-events: none;
z-index: 1;
border: none;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: background-image 1s ease-in-out;
-moz-transition: background-image 1s ease-in-out;
transition: background-image 1s ease-in-out;
} | app/hexTest.css | .small img {
width: 100px;
height: 100px;
margin: 40px;
}
/* line 14, hexTest.scss */
.container {
width: 1024px;
line-height: 1.0;
overflow: hidden;
padding-left: 0px;
margin-left: auto;
margin-right: auto;
}
/* line 23, hexTest.scss */
.hexGrid {
position: absolute;
top: 0px;
width: inherit;
}
/* line 29, hexTest.scss */
.visible {
display: visible;
}
/* line 33, hexTest.scss */
.invisible {
display: hidden;
height: 0px;
}
/* line 38, hexTest.scss */
.logoHex {
top: 189.1072px;
}
/* line 46, hexTest.scss */
.logoHex {
pointer-events: all;
position: absolute;
left: 50%;
transform: translate(-49%, 0);
height: 141.65333px;
width: 240.81067px;
border-radius: 7.08267px;
display: inline-block;
z-index: 1;
transition: all 600ms ease-in-out;
}
/* line 63, hexTest.scss */
.logoHex:before, .logoHex:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
}
/* line 71, hexTest.scss */
.logoHex:before {
transform: rotate(60deg);
}
/* line 75, hexTest.scss */
.logoHex:after {
position: absolute;
transform: rotate(-60deg);
left: 0;
top: 0;
}
/* line 82, hexTest.scss */
.logoHex img {
width: 240.81067px;
position: relative;
top: -67.81277px;
pointer-events: none;
}
/* line 89, hexTest.scss */
ol {
pointer-events: none;
-webkit-margin-before: 0px;
-webkit-padding-start: 16.9984px;
-webkit-margin-after: 0px;
}
/* line 96, hexTest.scss */
ol.even {
position: relative;
left: 40.34287px;
}
/* line 101, hexTest.scss */
ol.odd {
position: relative;
left: 0px;
margin-top: -34.73474px;
margin-bottom: -34.73474px;
}
/* line 108, hexTest.scss */
ol {
white-space: nowrap;
}
/* line 112, hexTest.scss */
.hex {
pointer-events: all;
position: relative;
margin: 28.33067px;
height: 42.496px;
width: 72.2432px;
border-radius: 1.69984px;
background: #fff;
display: inline-block;
margin-right: 7.08267px;
margin-left: 0px;
transition: all 500ms ease-in-out;
z-index: 0;
}
/* line 128, hexTest.scss */
.hex:before, .hex:after {
position: absolute;
width: inherit;
height: inherit;
border-radius: inherit;
background: inherit;
content: '';
}
/* line 137, hexTest.scss */
.hex:before {
transform: rotate(60deg);
}
/* line 141, hexTest.scss */
.hex:after {
transform: rotate(-60deg);
left: 0;
top: 0;
}
/* line 147, hexTest.scss */
.hex:hover {
background: #F8baba;
cursor: pointer;
}
/* line 151, hexTest.scss */
.hex div {
width: 72.2432px;
height: 200%;
position: relative;
top: -20.34383px;
pointer-events: none;
z-index: 1;
border: none;
background-repeat: no-repeat;
background-size: 100% 100%;
-webkit-transition: background-image 1s ease-in-out;
-moz-transition: background-image 1s ease-in-out;
transition: background-image 1s ease-in-out;
} | 0.428353 | 0.137272 |
@media (max-width: 1050px)
{
.main-header.header-fixed {
position: static !important;
}
.main-header .main-nav.nav-alt li.sf-mega-menu .sf-mega {
width: auto;
}
.main-header.header-fixed + .owl-carousel {
margin-top: -25px;
}
.main-header a.logo {
text-transform: uppercase;
font-size: 18px !important;
margin-left: 15px !important;
margin-top: 3px !important;
}
.featured-area {
-webkit-background-size: auto;
-moz-background-size: auto;
-o-background-size: auto;
background-size: auto;
}
#responsive-menu {
float: right;
margin-right: 15px;
font-size: 22px;
}
.main-header ul.main-nav {
float: none !important;
clear: both;
margin: 43px 15px 0 !important;
background: rgba(0,0,0,0.1);
display: none;
}
.main-header ul.main-nav li {
border-bottom: rgba(0,0,0,0.1) solid 1px;
}
.main-header ul.main-nav li,
.main-header ul.main-nav li a {
float: none !important;
}
.main-header ul.main-nav > li > a {
font-size: 15px !important;
text-transform: none !important;
height: 32px !important;
line-height: 32px !important;
}
.main-header ul.main-nav li a .glyph-icon {
float: right !important;
}
.main-header .main-nav.nav-alt li > ul li a {
padding: 5px !important;
}
.sf-mega,
.main-header .main-nav.nav-alt li > ul {
position: static !important;
margin: 10px !important;
padding: 10px !important;
}
.main-header .main-nav.nav-alt li > ul:before {
display: none !important;
}
.title-box .title-heading {
text-align: center;
font-size: 30px;
}
.title-box .title-content {
text-align: center;
font-size: 20px;
}
.title-box .float-content .title-heading {
margin: 0;
}
.bg-holder {
display: none;
}
.portfolio-category {
display: none;
}
.portfolio-controls ul {
float: none;
margin: 0;
}
#portfolio-grid {
padding: 15px;
}
#portfolio-grid li {
display: block !important;
}
.featured-area.medium-padding {
padding-top: 0px !important;
padding-bottom: 30px !important;
}
.featured-area.featured-box {
padding-top: 0 !important;
}
.img-holder {
display: none;
}
.title-box .float-content {
margin: 0 !important;
float: none !important;
text-align: center;
padding: 15px;
}
.icon-box {
margin-left: 10px;
margin-right: 10px;
}
.feature-img {
display: none;
}
.cta-box .cta-text {
display: block;
padding-bottom: 15px;
}
.main-footer {
padding-top: 0;
}
.main-footer .footer-pane {
margin-top: 0;
}
.main-footer > .container {
display: none;
}
}
@media (max-width: 645px)
{
.featured-area.large-padding {
padding-top: 0;
padding-bottom: 30px;
}
.featured-area-alt2.large-padding {
padding-top: 30px;
}
.title-box .title-button {
display: block;
}
.footer-pane .logo,
.footer-nav {
float: none;
text-align: center;
margin: 0;
}
}
@media (max-width: 540px)
{
} | public/assets/frontend-elements/frontend-responsive.css |
@media (max-width: 1050px)
{
.main-header.header-fixed {
position: static !important;
}
.main-header .main-nav.nav-alt li.sf-mega-menu .sf-mega {
width: auto;
}
.main-header.header-fixed + .owl-carousel {
margin-top: -25px;
}
.main-header a.logo {
text-transform: uppercase;
font-size: 18px !important;
margin-left: 15px !important;
margin-top: 3px !important;
}
.featured-area {
-webkit-background-size: auto;
-moz-background-size: auto;
-o-background-size: auto;
background-size: auto;
}
#responsive-menu {
float: right;
margin-right: 15px;
font-size: 22px;
}
.main-header ul.main-nav {
float: none !important;
clear: both;
margin: 43px 15px 0 !important;
background: rgba(0,0,0,0.1);
display: none;
}
.main-header ul.main-nav li {
border-bottom: rgba(0,0,0,0.1) solid 1px;
}
.main-header ul.main-nav li,
.main-header ul.main-nav li a {
float: none !important;
}
.main-header ul.main-nav > li > a {
font-size: 15px !important;
text-transform: none !important;
height: 32px !important;
line-height: 32px !important;
}
.main-header ul.main-nav li a .glyph-icon {
float: right !important;
}
.main-header .main-nav.nav-alt li > ul li a {
padding: 5px !important;
}
.sf-mega,
.main-header .main-nav.nav-alt li > ul {
position: static !important;
margin: 10px !important;
padding: 10px !important;
}
.main-header .main-nav.nav-alt li > ul:before {
display: none !important;
}
.title-box .title-heading {
text-align: center;
font-size: 30px;
}
.title-box .title-content {
text-align: center;
font-size: 20px;
}
.title-box .float-content .title-heading {
margin: 0;
}
.bg-holder {
display: none;
}
.portfolio-category {
display: none;
}
.portfolio-controls ul {
float: none;
margin: 0;
}
#portfolio-grid {
padding: 15px;
}
#portfolio-grid li {
display: block !important;
}
.featured-area.medium-padding {
padding-top: 0px !important;
padding-bottom: 30px !important;
}
.featured-area.featured-box {
padding-top: 0 !important;
}
.img-holder {
display: none;
}
.title-box .float-content {
margin: 0 !important;
float: none !important;
text-align: center;
padding: 15px;
}
.icon-box {
margin-left: 10px;
margin-right: 10px;
}
.feature-img {
display: none;
}
.cta-box .cta-text {
display: block;
padding-bottom: 15px;
}
.main-footer {
padding-top: 0;
}
.main-footer .footer-pane {
margin-top: 0;
}
.main-footer > .container {
display: none;
}
}
@media (max-width: 645px)
{
.featured-area.large-padding {
padding-top: 0;
padding-bottom: 30px;
}
.featured-area-alt2.large-padding {
padding-top: 30px;
}
.title-box .title-button {
display: block;
}
.footer-pane .logo,
.footer-nav {
float: none;
text-align: center;
margin: 0;
}
}
@media (max-width: 540px)
{
} | 0.412175 | 0.083965 |
@font-face {
font-family: "Greycliff CF";
src: url(/static/fonts/GreycliffCF-Regular.woff) format("woff");
}
@font-face {
font-family: "Greycliff CF Light";
src: url(/static/fonts/GreycliffCF-Light.woff) format("woff");
}
body {
font-family: 'Greycliff CF', 'Poppins', sans-serif;
overflow-x: hidden;
color: #1b1e28;
background-color: #f4f4f4;
}
a,
a.active,
a:active,
a:focus,
a:hover {
color: #18BC9C;
outline: none;
}
.img-centered {
margin: 0 auto;
}
section {
padding: 50px 0;
}
section h2 {
font-size: 3em;
margin: 0;
}
section.success {
color: white;
background: #18BC9C;
}
@media (max-width: 1200px) {
#portfolio .card-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
@media (max-width: 767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
}
.scroll-top {
position: fixed;
z-index: 1049;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
}
.scroll-top .btn {
font-size: 16px;
line-height: 28px;
width: 50px;
height: 50px;
text-align: center;
border-radius: 100%;
}
.scroll-top .btn:focus {
outline: none;
}
.navbar {
text-transform: uppercase;
border: none;
font-weight: 700;
}
#mainnav {
background: #19ccc0;
}
.background-yellow {
background: #fddd02!important;
}
.background-blue {
background: #049ae7!important;
}
.background-green {
background: #19ccc0!important;
}
#bottomnav {
background: #bcbec0;
position: absolute;
width: 100%;
left: 0;
display: block;
}
.navbar a:focus {
outline: none;
}
.navbar .navbar-nav .nav-link {
color: #1b1e28;
padding: 0;
margin: 0 0.5rem;
}
.navbar .navbar-nav .nav-link.active {
border-bottom: 2px solid #fddd02;
}
.navbar .navbar-nav .nav-link:hover {
border-bottom: 1px solid #fddd02;
}
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link:focus {
border-bottom: 2px solid #fddd02;
}
.navbar .navbar-toggler {
font-size: 14px;
padding: 11px;
text-transform: uppercase;
color: #1b1e28;
border-color: #fddd02;
}
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:hover {
color: #1b1e28;
border-color: #fddd02;
background-color: #fddd02;
}
@media (min-width: 992px) {
#mainNav>.container {
width: 945px;
}
#mainNav .navbar-brand {
font-size: 2em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
#mainNav.navbar-shrink {
padding-top: 10px;
padding-bottom: 10px;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.5em;
}
}
header.masthead {
text-align: center;
height: calc(100vh - 100px);
background: linear-gradient(#19ccc0, #049ae7);
}
header.masthead .intro-text .slogan {
padding-top: calc(50vh - 300px);
}
header.masthead .intro-text .slogan {
font-size: 1.5em;
display: block;
}
header.masthead .intro-text .explanation {
font-weight: 300;
}
header.masthead .intro-text .learn {
font-family: 'Greycliff CF Light', 'Poppins', sans-serif;
color: #fddd02;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
font-size: .9em;
}
.thick {
font-weight: bold;
font-size: 1.5em;
}
.card-img-overlay {
background-color: #333;
color: white;
opacity: 0;
transition: .5s ease;
}
.card-img-overlay:hover {
opacity: 1;
}
.tall {
line-height: 2em;
}
@media (min-width: 768px) {
header.masthead>.container {
width: 830px;
}
header.masthead .intro-text .slogan {
font-size: 3.5em;
}
header.masthead .intro-text .explanation {
font-size: 1.2em;
line-height: 2em;
}
}
#transformation .huge {
font-size: 2em;
}
#transformation .tiny {
font-size: 0.7em;
margin-top: -1em;
}
section .row {
margin-top: 4em;
}
#products {
background-color: #1b1e28;
color: white;
}
#products a,
#products a:hover {
color: white;
}
.border-yellow,
.border-yellow:hover {
border: 2px solid #fddd02;
border-bottom: 2px solid #fddd02!important;
} | static/css/main.css | @font-face {
font-family: "Greycliff CF";
src: url(/static/fonts/GreycliffCF-Regular.woff) format("woff");
}
@font-face {
font-family: "Greycliff CF Light";
src: url(/static/fonts/GreycliffCF-Light.woff) format("woff");
}
body {
font-family: 'Greycliff CF', 'Poppins', sans-serif;
overflow-x: hidden;
color: #1b1e28;
background-color: #f4f4f4;
}
a,
a.active,
a:active,
a:focus,
a:hover {
color: #18BC9C;
outline: none;
}
.img-centered {
margin: 0 auto;
}
section {
padding: 50px 0;
}
section h2 {
font-size: 3em;
margin: 0;
}
section.success {
color: white;
background: #18BC9C;
}
@media (max-width: 1200px) {
#portfolio .card-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
@media (max-width: 767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
}
.scroll-top {
position: fixed;
z-index: 1049;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
}
.scroll-top .btn {
font-size: 16px;
line-height: 28px;
width: 50px;
height: 50px;
text-align: center;
border-radius: 100%;
}
.scroll-top .btn:focus {
outline: none;
}
.navbar {
text-transform: uppercase;
border: none;
font-weight: 700;
}
#mainnav {
background: #19ccc0;
}
.background-yellow {
background: #fddd02!important;
}
.background-blue {
background: #049ae7!important;
}
.background-green {
background: #19ccc0!important;
}
#bottomnav {
background: #bcbec0;
position: absolute;
width: 100%;
left: 0;
display: block;
}
.navbar a:focus {
outline: none;
}
.navbar .navbar-nav .nav-link {
color: #1b1e28;
padding: 0;
margin: 0 0.5rem;
}
.navbar .navbar-nav .nav-link.active {
border-bottom: 2px solid #fddd02;
}
.navbar .navbar-nav .nav-link:hover {
border-bottom: 1px solid #fddd02;
}
.navbar .navbar-nav .nav-link:active,
.navbar .navbar-nav .nav-link:focus {
border-bottom: 2px solid #fddd02;
}
.navbar .navbar-toggler {
font-size: 14px;
padding: 11px;
text-transform: uppercase;
color: #1b1e28;
border-color: #fddd02;
}
.navbar .navbar-toggler:focus,
.navbar .navbar-toggler:hover {
color: #1b1e28;
border-color: #fddd02;
background-color: #fddd02;
}
@media (min-width: 992px) {
#mainNav>.container {
width: 945px;
}
#mainNav .navbar-brand {
font-size: 2em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
#mainNav.navbar-shrink {
padding-top: 10px;
padding-bottom: 10px;
}
#mainNav.navbar-shrink .navbar-brand {
font-size: 1.5em;
}
}
header.masthead {
text-align: center;
height: calc(100vh - 100px);
background: linear-gradient(#19ccc0, #049ae7);
}
header.masthead .intro-text .slogan {
padding-top: calc(50vh - 300px);
}
header.masthead .intro-text .slogan {
font-size: 1.5em;
display: block;
}
header.masthead .intro-text .explanation {
font-weight: 300;
}
header.masthead .intro-text .learn {
font-family: 'Greycliff CF Light', 'Poppins', sans-serif;
color: #fddd02;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
font-size: .9em;
}
.thick {
font-weight: bold;
font-size: 1.5em;
}
.card-img-overlay {
background-color: #333;
color: white;
opacity: 0;
transition: .5s ease;
}
.card-img-overlay:hover {
opacity: 1;
}
.tall {
line-height: 2em;
}
@media (min-width: 768px) {
header.masthead>.container {
width: 830px;
}
header.masthead .intro-text .slogan {
font-size: 3.5em;
}
header.masthead .intro-text .explanation {
font-size: 1.2em;
line-height: 2em;
}
}
#transformation .huge {
font-size: 2em;
}
#transformation .tiny {
font-size: 0.7em;
margin-top: -1em;
}
section .row {
margin-top: 4em;
}
#products {
background-color: #1b1e28;
color: white;
}
#products a,
#products a:hover {
color: white;
}
.border-yellow,
.border-yellow:hover {
border: 2px solid #fddd02;
border-bottom: 2px solid #fddd02!important;
} | 0.416322 | 0.083441 |
:root{
--color_Item: #00baee;
--color_Child: #AADDF9;
--color_Parent: #D9EFFD;
}
.switch-field {
display: flex;
margin-bottom: 36px;
overflow: hidden;
}
.switch-field input {
position: absolute !important;
clip: rect(0, 0, 0, 0);
height: 1px;
width: 1px;
border: 0;
overflow: hidden;
}
.switch-field label {
background-color: lightgrey;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 1;
text-align: center;
padding: 8px 16px;
margin-right: -1px;
/* border: 1px solid rgba(0, 0, 0, 0.1);*/
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.1);
transition: all 0.2s ease-in-out;
}
.switch-field label:hover {
cursor: pointer;
}
.switch-field input:checked + label {
background-color: var(--color_Item);
box-shadow: none;
}
.switch-field label:first-of-type {
border-radius: 14px 0 0 14px;
}
.switch-field label:last-of-type {
border-radius: 0 14px 14px 0;
}
.filter-btn-block{
border:none;
display:inline-block;
outline:0;
padding:6px 16px;
vertical-align:middle;
overflow:hidden;
text-decoration:none!important;
color:black;
background-color: white;
text-align:left;
cursor:pointer;
white-space:nowrap}
.dropbtn {
background-color: white;
color: black;
padding: 8px;
min-width: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: relative;
background-color: #f9f9f9;
min-width: 8px;
overflow: auto;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
padding: 5px 10px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #f1f1f1}
.show {display:block;}
/**** Sel-made "radio buttons" for items ****/
/* Style the buttons */
.btn {
cursor: pointer;
border: 1px solid white;
}
/* Style the active class, and buttons on mouse-over */
.activeI, .btn:hover {
background-color: var(--color_Item);
color: black;
/*border: 1px solid #1f2e38;*/
}
.activeC {
background-color: var(--color_Child);
}
.activeP {
background-color: var(--color_Parent);
}
/*TODO: This is an alternate version for a popup
from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_popup
When this is used on the map, you can remove the popup at the end of ol.css*/
/* Popup container - can be anything you want */
.w3popup {
position: absolute;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.w3popup .popuptext {
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 16px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: 80px;
}
/* Popup arrow */
.w3popup .popuptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
}
/* Toggle this class - hide and show the popup */
.w3popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:1 ;}
}
/*from here definitions for the new menu*/
/**** Accordion ****/
/* Style the buttons that are used to open and close the accordion panel */
.new_accord {
background-color: white;
color: #444;
cursor: pointer;
padding: 8px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.2s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .new_accord:hover {
background-color: dodgerblue;
color: white;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 18px;
background-color: white;
overflow: hidden;
/*remove display for animated accordion:*/
/*display: none;*/
/*to use for animated accordion:*/
max-height: 0;
transition: max-height 0.2s ease-out;
}
/**** Range Slider ****/
/* Style for range slider from https://refreshless.com/nouislider/examples/ */
#input-select,
#input-number {
padding: 7px;
margin: 150px 5px 5px;
width: 70px;
}
#sliderwildcard{
padding: 28px 0 0 0;
}
#datewildcard{
padding: 28px 0 0 0;
}
.noUi-tooltip {
display: none;
}
.noUi-active, .noUi-tooltip {
display: block;
}
.noUi-connect {
background: var(--color_Item) !important;
}
/*style from https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css*/
.ui-rangeslider {
margin: .5em 0
}
.ui-rangeslider:before, .ui-rangeslider:after {
content: "";
display: table
}
.ui-rangeslider:after {
clear: both
}
.ui-rangeslider .ui-slider-input.ui-rangeslider-last {
float: right
}
.ui-rangeslider .ui-rangeslider-sliders {
position: relative;
overflow: visible;
height: 30px;
margin: 0 68px
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track {
position: absolute;
top: 6px;
right: 0;
left: 0;
margin: 0
}
.ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track {
top: 8px
}
.ui-rangeslider .ui-slider-track:first-child .ui-slider-bg {
display: none
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
background: 0;
border-width: 0;
height: 0
}
html > body .ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 15px;
border-width: 1px
}
html > body .ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 12px
}
div.ui-rangeslider label {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px)
}
.ui-field-contain .ui-rangeslider input.ui-slider-input, .ui-field-contain .ui-rangeslider.ui-mini input.ui-slider-input, .ui-field-contain .ui-rangeslider .ui-rangeslider-sliders, .ui-field-contain .ui-rangeslider.ui-mini .ui-rangeslider-sliders {
margin-top: 0;
margin-bottom: 0
}
/*contextmenu:*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
*,
*::before,
*::after {
box-sizing: border-box;
}
/* tasks */
.tasks {
list-style: none;
margin: 0;
padding: 0;
}
.task {
display: flex;
justify-content: space-between;
padding: 12px 0;
border-bottom: solid 1px #dfdfdf;
}
.task:last-child {
border-bottom: none;
}
/* context menu from https://www.sitepoint.com/building-custom-right-click-context-menu-javascript/*/
.context-menu, .context-result {
display: none;
position: absolute;
z-index: 10;
padding: 12px 0;
width: 260px;
background-color: #fff;
border: solid 1px #dfdfdf;
box-shadow: 1px 1px 2px #cfcfcf;
}
.context-menu--active, .context-result--active {
display: block;
}
.context-menu__items {
list-style: none;
margin: 0;
padding: 0;
}
.context-menu__item {
display: block;
margin-bottom: 4px;
}
.context-menu__item:last-child {
margin-bottom: 0;
}
.context-menu__link {
display: block;
padding: 4px 12px;
color: #0066aa;
text-decoration: none;
}
.context-menu__link:hover {
color: #fff;
background-color: #0066aa;
}
/*popup based on ol-popup for sidebar*/
.mod-popup {
z-index:3;
display:none;
position: absolute;
background-color: #EFFBFB;
-webkit-filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
padding: 3px;
border-radius: 12px;
border: 0.1px solid #e9f2f2;
opacity: inherit;
}
.mod-popup--active {
display: block;
}
.mod-popup--inactive {
display: none;
}
.w3-modal-content{
margin:auto;
background-color:#fff;
position:relative;
padding:0;
outline:0;
width: -moz-fit-content;
width:fit-content
}
.wps-modal-content{
margin:auto;
background-color:#fff;
position:relative;
padding:0;
outline:0;
width:600px
}
.mod-popup:after {
border-top-color: white;
border-width: 10px;
left: 48px;
margin-left: -10px;
}
.mod-popup:before {
border-top-color: #cccccc;
border-width: 11px;
left: 48px;
margin-left: -11px;
}
.mod-popup-closer {
text-decoration: none;
position: absolute;
top: 2px;
right: 10px;
}
.mod-popup-closer:after {
content: "✖";
}
.mod-header{
cursor: move;
}
#draw_polygon,#modify_polygon, #select_polygon, #remove_polygon{
width: 6px;
height: 6px;
background:rgba(0, 60, 136, .55);
border-radius: 4px;
padding: 3px;
color: white;
}
.draw-hover:hover{
background:rgba(0, 60, 136, .9)!important;
}
#filterbox{
border-radius: 4px;
padding: 2px;
}
.activeM {
background-color: rgba(0, 60, 136, .9)!important;
}
/**
* Style of table for selections in entrieslist.html
*/
.outerPaginationTable, .innerPaginationTable {
width: 100%;
border: 1px solid black;
border-collapse: collapse;
/*background-color: whitesmoke;*/
}
.innerPaginationTable:hover {background-color: #ddd;}
.AccessTrue, .AccessFalse {
margin: 5px;
height: 12px;
width: 12px;
font-weight: bold;
}
.embargoFalse {
background-color: lightgreen;
}
.embargoTrue {
background-color: #b15656;
color: white;
}
tbody td {
text-align: center;
padding: 2px;
}
thead th, tbody th {
text-align: left;
}
.outerPaginationTable td:nth-child(1),
.innerPaginationTable td:nth-child(1){
/*background-color: pink;*/
width:36px;
}
.outerPaginationTable td:nth-child(2),
.innerPaginationTable td:nth-child(2){
min-width:40%;
}
.outerPaginationTable td:nth-child(3),
.innerPaginationTable td:nth-child(3){
width:17%;
}
.outerPaginationTable td:nth-child(4),
.innerPaginationTable td:nth-child(4){
width:24%;
}
.outerPaginationTable td:nth-child(5),
.innerPaginationTable td:nth-child(5){
width:15%;
} | vfwheron/static/vfwheron/vcss/filter.css | :root{
--color_Item: #00baee;
--color_Child: #AADDF9;
--color_Parent: #D9EFFD;
}
.switch-field {
display: flex;
margin-bottom: 36px;
overflow: hidden;
}
.switch-field input {
position: absolute !important;
clip: rect(0, 0, 0, 0);
height: 1px;
width: 1px;
border: 0;
overflow: hidden;
}
.switch-field label {
background-color: lightgrey;
color: rgba(0, 0, 0, 0.6);
font-size: 14px;
line-height: 1;
text-align: center;
padding: 8px 16px;
margin-right: -1px;
/* border: 1px solid rgba(0, 0, 0, 0.1);*/
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px rgba(255, 255, 255, 0.1);
transition: all 0.2s ease-in-out;
}
.switch-field label:hover {
cursor: pointer;
}
.switch-field input:checked + label {
background-color: var(--color_Item);
box-shadow: none;
}
.switch-field label:first-of-type {
border-radius: 14px 0 0 14px;
}
.switch-field label:last-of-type {
border-radius: 0 14px 14px 0;
}
.filter-btn-block{
border:none;
display:inline-block;
outline:0;
padding:6px 16px;
vertical-align:middle;
overflow:hidden;
text-decoration:none!important;
color:black;
background-color: white;
text-align:left;
cursor:pointer;
white-space:nowrap}
.dropbtn {
background-color: white;
color: black;
padding: 8px;
min-width: 16px;
font-size: 16px;
border: none;
cursor: pointer;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: relative;
background-color: #f9f9f9;
min-width: 8px;
overflow: auto;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
padding: 5px 10px;
text-decoration: none;
display: block;
}
.dropdown a:hover {background-color: #f1f1f1}
.show {display:block;}
/**** Sel-made "radio buttons" for items ****/
/* Style the buttons */
.btn {
cursor: pointer;
border: 1px solid white;
}
/* Style the active class, and buttons on mouse-over */
.activeI, .btn:hover {
background-color: var(--color_Item);
color: black;
/*border: 1px solid #1f2e38;*/
}
.activeC {
background-color: var(--color_Child);
}
.activeP {
background-color: var(--color_Parent);
}
/*TODO: This is an alternate version for a popup
from https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_popup
When this is used on the map, you can remove the popup at the end of ol.css*/
/* Popup container - can be anything you want */
.w3popup {
position: absolute;
display: inline-block;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* The actual popup */
.w3popup .popuptext {
visibility: hidden;
width: 160px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 16px;
padding: 8px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: 80px;
}
/* Popup arrow */
.w3popup .popuptext::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
}
/* Toggle this class - hide and show the popup */
.w3popup .show {
visibility: visible;
-webkit-animation: fadeIn 1s;
animation: fadeIn 1s;
}
/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity:1 ;}
}
/*from here definitions for the new menu*/
/**** Accordion ****/
/* Style the buttons that are used to open and close the accordion panel */
.new_accord {
background-color: white;
color: #444;
cursor: pointer;
padding: 8px;
width: 100%;
text-align: left;
border: none;
outline: none;
transition: 0.2s;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .new_accord:hover {
background-color: dodgerblue;
color: white;
}
/* Style the accordion panel. Note: hidden by default */
.panel {
padding: 0 18px;
background-color: white;
overflow: hidden;
/*remove display for animated accordion:*/
/*display: none;*/
/*to use for animated accordion:*/
max-height: 0;
transition: max-height 0.2s ease-out;
}
/**** Range Slider ****/
/* Style for range slider from https://refreshless.com/nouislider/examples/ */
#input-select,
#input-number {
padding: 7px;
margin: 150px 5px 5px;
width: 70px;
}
#sliderwildcard{
padding: 28px 0 0 0;
}
#datewildcard{
padding: 28px 0 0 0;
}
.noUi-tooltip {
display: none;
}
.noUi-active, .noUi-tooltip {
display: block;
}
.noUi-connect {
background: var(--color_Item) !important;
}
/*style from https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css*/
.ui-rangeslider {
margin: .5em 0
}
.ui-rangeslider:before, .ui-rangeslider:after {
content: "";
display: table
}
.ui-rangeslider:after {
clear: both
}
.ui-rangeslider .ui-slider-input.ui-rangeslider-last {
float: right
}
.ui-rangeslider .ui-rangeslider-sliders {
position: relative;
overflow: visible;
height: 30px;
margin: 0 68px
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track {
position: absolute;
top: 6px;
right: 0;
left: 0;
margin: 0
}
.ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track {
top: 8px
}
.ui-rangeslider .ui-slider-track:first-child .ui-slider-bg {
display: none
}
.ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
background: 0;
border-width: 0;
height: 0
}
html > body .ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 15px;
border-width: 1px
}
html > body .ui-rangeslider.ui-mini .ui-rangeslider-sliders .ui-slider-track:first-child {
height: 12px
}
div.ui-rangeslider label {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px)
}
.ui-field-contain .ui-rangeslider input.ui-slider-input, .ui-field-contain .ui-rangeslider.ui-mini input.ui-slider-input, .ui-field-contain .ui-rangeslider .ui-rangeslider-sliders, .ui-field-contain .ui-rangeslider.ui-mini .ui-rangeslider-sliders {
margin-top: 0;
margin-bottom: 0
}
/*contextmenu:*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300);
*,
*::before,
*::after {
box-sizing: border-box;
}
/* tasks */
.tasks {
list-style: none;
margin: 0;
padding: 0;
}
.task {
display: flex;
justify-content: space-between;
padding: 12px 0;
border-bottom: solid 1px #dfdfdf;
}
.task:last-child {
border-bottom: none;
}
/* context menu from https://www.sitepoint.com/building-custom-right-click-context-menu-javascript/*/
.context-menu, .context-result {
display: none;
position: absolute;
z-index: 10;
padding: 12px 0;
width: 260px;
background-color: #fff;
border: solid 1px #dfdfdf;
box-shadow: 1px 1px 2px #cfcfcf;
}
.context-menu--active, .context-result--active {
display: block;
}
.context-menu__items {
list-style: none;
margin: 0;
padding: 0;
}
.context-menu__item {
display: block;
margin-bottom: 4px;
}
.context-menu__item:last-child {
margin-bottom: 0;
}
.context-menu__link {
display: block;
padding: 4px 12px;
color: #0066aa;
text-decoration: none;
}
.context-menu__link:hover {
color: #fff;
background-color: #0066aa;
}
/*popup based on ol-popup for sidebar*/
.mod-popup {
z-index:3;
display:none;
position: absolute;
background-color: #EFFBFB;
-webkit-filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.5));
padding: 3px;
border-radius: 12px;
border: 0.1px solid #e9f2f2;
opacity: inherit;
}
.mod-popup--active {
display: block;
}
.mod-popup--inactive {
display: none;
}
.w3-modal-content{
margin:auto;
background-color:#fff;
position:relative;
padding:0;
outline:0;
width: -moz-fit-content;
width:fit-content
}
.wps-modal-content{
margin:auto;
background-color:#fff;
position:relative;
padding:0;
outline:0;
width:600px
}
.mod-popup:after {
border-top-color: white;
border-width: 10px;
left: 48px;
margin-left: -10px;
}
.mod-popup:before {
border-top-color: #cccccc;
border-width: 11px;
left: 48px;
margin-left: -11px;
}
.mod-popup-closer {
text-decoration: none;
position: absolute;
top: 2px;
right: 10px;
}
.mod-popup-closer:after {
content: "✖";
}
.mod-header{
cursor: move;
}
#draw_polygon,#modify_polygon, #select_polygon, #remove_polygon{
width: 6px;
height: 6px;
background:rgba(0, 60, 136, .55);
border-radius: 4px;
padding: 3px;
color: white;
}
.draw-hover:hover{
background:rgba(0, 60, 136, .9)!important;
}
#filterbox{
border-radius: 4px;
padding: 2px;
}
.activeM {
background-color: rgba(0, 60, 136, .9)!important;
}
/**
* Style of table for selections in entrieslist.html
*/
.outerPaginationTable, .innerPaginationTable {
width: 100%;
border: 1px solid black;
border-collapse: collapse;
/*background-color: whitesmoke;*/
}
.innerPaginationTable:hover {background-color: #ddd;}
.AccessTrue, .AccessFalse {
margin: 5px;
height: 12px;
width: 12px;
font-weight: bold;
}
.embargoFalse {
background-color: lightgreen;
}
.embargoTrue {
background-color: #b15656;
color: white;
}
tbody td {
text-align: center;
padding: 2px;
}
thead th, tbody th {
text-align: left;
}
.outerPaginationTable td:nth-child(1),
.innerPaginationTable td:nth-child(1){
/*background-color: pink;*/
width:36px;
}
.outerPaginationTable td:nth-child(2),
.innerPaginationTable td:nth-child(2){
min-width:40%;
}
.outerPaginationTable td:nth-child(3),
.innerPaginationTable td:nth-child(3){
width:17%;
}
.outerPaginationTable td:nth-child(4),
.innerPaginationTable td:nth-child(4){
width:24%;
}
.outerPaginationTable td:nth-child(5),
.innerPaginationTable td:nth-child(5){
width:15%;
} | 0.422505 | 0.129485 |
@keyframes load {
0% {
top: 4.5rem;
}
70% {
top: 1.125rem;
}
90% {
top: 0;
}
95% {
top: 0;
}
100% {
top: 4.5rem;
}
}
@keyframes liquid-1 {
0% {
height: 0;
opacity: 0;
top: -0.5rem;
}
22% {
height: 0.28125rem;
top: 0.375rem;
opacity: 1;
}
25% {
top: -0.25rem;
}
35% {
height: 1.125rem;
top: -0.5rem;
}
55% {
height: 0.28125rem;
top: -0.125rem;
}
60% {
height: 0.61875rem;
opacity: 1;
top: -0.275rem;
}
96% {
height: 0.84375rem;
opacity: 0;
top: 0.5rem;
}
100% {
height: 0;
opacity: 0;
}
}
@keyframes liquid-2 {
0% {
height: 0;
opacity: 0;
top: -0.5rem;
}
17.5% {
height: 0.28125rem;
top: 0.2rem;
opacity: 1;
}
20% {
top: -0.25rem;
}
25% {
height: 1.40625rem;
top: -0.625rem;
}
45% {
height: 0.28125rem;
top: -0.125rem;
}
60% {
height: 1.40625rem;
opacity: 1;
top: -0.5rem;
}
96% {
height: 0.84375rem;
opacity: 0;
top: 0.5rem;
}
100% {
height: 0;
opacity: 0;
}
}
.battery {
display: inline-block;
position: relative;
width: 2.25rem;
height: 4.5rem;
box-shadow: 0 0 0 0.2rem #425C77;
background: white;
border-radius: 0.09rem;
}
.battery:before {
content: "";
position: absolute;
left: 0.5625rem;
right: 0.5625rem;
top: -0.3375rem;
height: 0.3375rem;
width: 1.125rem;
background: #425C77;
border-radius: 0.18rem;
}
.battery:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-right: 2.25rem solid transparent;
border-bottom: 4.05rem solid rgba(255, 255, 255, 0.325);
}
.liquid {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 2.25rem;
background: #71FB85;
animation: load 2.25s infinite;
}
.liquid:after, .liquid:before {
content: "";
position: absolute;
top: -0.5rem;
height: 1.125rem;
width: 1.4625rem;
background: #71FB85;
border-radius: 50%;
opacity: 0;
}
.liquid:after {
right: 0;
animation: liquid-1 2.25s infinite;
}
.liquid:before {
left: 0;
animation: liquid-2 2.25s infinite;
}
.spinnercontainer {
padding-top: 25%;
text-align: center;
height: 100%;
}
@keyframes power {
0% {
color: #bcbcbc;
}
75% {
color: #bcbcbc;
text-shadow: none;
}
90% {
color: #58fa70;
text-shadow: 0 0 0.8em #71FB85;
}
100% {
color: #bcbcbc;
text-shadow: none;
}
}
h5 {
font-family: Lato, sans-serif;
font-weight: 300;
letter-spacing: 0.025rem;
text-transform: uppercase;
color: #bcbcbc;
animation: power 2.25s infinite;
}
/*# sourceMappingURL=Spinner.css.map */ | src/Assets/styles/Spinner.css | @keyframes load {
0% {
top: 4.5rem;
}
70% {
top: 1.125rem;
}
90% {
top: 0;
}
95% {
top: 0;
}
100% {
top: 4.5rem;
}
}
@keyframes liquid-1 {
0% {
height: 0;
opacity: 0;
top: -0.5rem;
}
22% {
height: 0.28125rem;
top: 0.375rem;
opacity: 1;
}
25% {
top: -0.25rem;
}
35% {
height: 1.125rem;
top: -0.5rem;
}
55% {
height: 0.28125rem;
top: -0.125rem;
}
60% {
height: 0.61875rem;
opacity: 1;
top: -0.275rem;
}
96% {
height: 0.84375rem;
opacity: 0;
top: 0.5rem;
}
100% {
height: 0;
opacity: 0;
}
}
@keyframes liquid-2 {
0% {
height: 0;
opacity: 0;
top: -0.5rem;
}
17.5% {
height: 0.28125rem;
top: 0.2rem;
opacity: 1;
}
20% {
top: -0.25rem;
}
25% {
height: 1.40625rem;
top: -0.625rem;
}
45% {
height: 0.28125rem;
top: -0.125rem;
}
60% {
height: 1.40625rem;
opacity: 1;
top: -0.5rem;
}
96% {
height: 0.84375rem;
opacity: 0;
top: 0.5rem;
}
100% {
height: 0;
opacity: 0;
}
}
.battery {
display: inline-block;
position: relative;
width: 2.25rem;
height: 4.5rem;
box-shadow: 0 0 0 0.2rem #425C77;
background: white;
border-radius: 0.09rem;
}
.battery:before {
content: "";
position: absolute;
left: 0.5625rem;
right: 0.5625rem;
top: -0.3375rem;
height: 0.3375rem;
width: 1.125rem;
background: #425C77;
border-radius: 0.18rem;
}
.battery:after {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
border-right: 2.25rem solid transparent;
border-bottom: 4.05rem solid rgba(255, 255, 255, 0.325);
}
.liquid {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 2.25rem;
background: #71FB85;
animation: load 2.25s infinite;
}
.liquid:after, .liquid:before {
content: "";
position: absolute;
top: -0.5rem;
height: 1.125rem;
width: 1.4625rem;
background: #71FB85;
border-radius: 50%;
opacity: 0;
}
.liquid:after {
right: 0;
animation: liquid-1 2.25s infinite;
}
.liquid:before {
left: 0;
animation: liquid-2 2.25s infinite;
}
.spinnercontainer {
padding-top: 25%;
text-align: center;
height: 100%;
}
@keyframes power {
0% {
color: #bcbcbc;
}
75% {
color: #bcbcbc;
text-shadow: none;
}
90% {
color: #58fa70;
text-shadow: 0 0 0.8em #71FB85;
}
100% {
color: #bcbcbc;
text-shadow: none;
}
}
h5 {
font-family: Lato, sans-serif;
font-weight: 300;
letter-spacing: 0.025rem;
text-transform: uppercase;
color: #bcbcbc;
animation: power 2.25s infinite;
}
/*# sourceMappingURL=Spinner.css.map */ | 0.612078 | 0.093182 |
body {
margin: 0;
}
#outer {
margin: auto;
/*margin-bottom: 40px;
margin-top: 20px;*/
width: 780px;
padding: 0 10px;
}
h2 {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 24px;
margin-bottom: 0;
font-weight: normal;
color: #333;
}
g.math {
pointer-events: all;
}
g.math text {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
dominant-baseline: alphabetic;
}
p.tutorial-instructions {
font-size: 19px;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
color: #555;
font-weight: 300;
margin-top: 1em;
}
.tutorial {
/*margin-bottom: 3em;*/
}
.tutorial .choice {
margin: 10px 0;
}
.interactive {
cursor: pointer;
}
.instructions {
margin: auto;
text-align: left;
font-size: 18px;
}
.choice {
border: 1px solid silver;
border-radius: 4px;
background: #eee;
height: 120px;
width: 500px;
/*margin: 20px auto;*/
position: relative;
}
.substitution-problem {
border: 1px solid silver;
border-radius: 4px;
background: #eee;
height: 240px; /* size of the canvas */
width: 500px;
/*margin: 20px auto;*/
position: relative;
}
.choice svg {
overflow: visible;
}
.animation {
position: absolute;
width: 100%;
height: 100%;
}
.choice button.gm-tutorial {
position: absolute;
left: 10px;
width: 120px;
font-style: normal;
border-color: #444;
background: inherit;
color: #444;
display: inline-block;
margin: 0;
padding: 0 12px;
min-width: 52px;
min-height: 47px;
border-width: 1px;
border-style: solid;
border-radius: 2px;
vertical-align: top;
text-align: center;
text-overflow: ellipsis;
font-size: 16px;
line-height: 42px;
cursor: pointer;
font-family: "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
}
.choice button.gm-tutorial:active {
background: rgba(0,0,0,0.3);
color: inherit;
}
.choice span.feedback {
position: absolute;
right: 20px;
top: 50px;
border-radius: 50%;
border: 1px solid #444;
color: #444;
font-size: 32px;
width: 0.8em;
height: 0.8em;
line-height: 0.6em;
padding-left: 2px;
background-color: inherit;
}
.choice span.tryit {
position: absolute;
left: 20px;
top: 45px;
color: #444;
font-size: 22px;
font-style: italic;
} | demo_6/gm_tutorial_demo/demo.css | body {
margin: 0;
}
#outer {
margin: auto;
/*margin-bottom: 40px;
margin-top: 20px;*/
width: 780px;
padding: 0 10px;
}
h2 {
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
font-size: 24px;
margin-bottom: 0;
font-weight: normal;
color: #333;
}
g.math {
pointer-events: all;
}
g.math text {
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
dominant-baseline: alphabetic;
}
p.tutorial-instructions {
font-size: 19px;
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
color: #555;
font-weight: 300;
margin-top: 1em;
}
.tutorial {
/*margin-bottom: 3em;*/
}
.tutorial .choice {
margin: 10px 0;
}
.interactive {
cursor: pointer;
}
.instructions {
margin: auto;
text-align: left;
font-size: 18px;
}
.choice {
border: 1px solid silver;
border-radius: 4px;
background: #eee;
height: 120px;
width: 500px;
/*margin: 20px auto;*/
position: relative;
}
.substitution-problem {
border: 1px solid silver;
border-radius: 4px;
background: #eee;
height: 240px; /* size of the canvas */
width: 500px;
/*margin: 20px auto;*/
position: relative;
}
.choice svg {
overflow: visible;
}
.animation {
position: absolute;
width: 100%;
height: 100%;
}
.choice button.gm-tutorial {
position: absolute;
left: 10px;
width: 120px;
font-style: normal;
border-color: #444;
background: inherit;
color: #444;
display: inline-block;
margin: 0;
padding: 0 12px;
min-width: 52px;
min-height: 47px;
border-width: 1px;
border-style: solid;
border-radius: 2px;
vertical-align: top;
text-align: center;
text-overflow: ellipsis;
font-size: 16px;
line-height: 42px;
cursor: pointer;
font-family: "Helvetica Neue", "Roboto", "Segoe UI", sans-serif;
}
.choice button.gm-tutorial:active {
background: rgba(0,0,0,0.3);
color: inherit;
}
.choice span.feedback {
position: absolute;
right: 20px;
top: 50px;
border-radius: 50%;
border: 1px solid #444;
color: #444;
font-size: 32px;
width: 0.8em;
height: 0.8em;
line-height: 0.6em;
padding-left: 2px;
background-color: inherit;
}
.choice span.tryit {
position: absolute;
left: 20px;
top: 45px;
color: #444;
font-size: 22px;
font-style: italic;
} | 0.439747 | 0.08207 |
:global {
.drip-form_container--droppable {
user-select: none;
position: relative;
}
.drip-form_container--droppable .field-container {
width: 100% !important;
}
.draggable {
& .field-container {
pointer-events:none;
}
}
}
.droppableHover {
&:hover {
&:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
@apply border-dotted border-2 border-blue-400;
}
}
}
.selected {
&:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
@apply border-solid border-2 border-blue-400;
}
}
.isTopOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 100%;
height: 4px;
top: 0 !important;
left: 0 !important;
bottom: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isBottomOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 100%;
height: 4px;
bottom: 0 !important;
left: 0 !important;
top: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isLeftOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 4px;
height: 100%;
top: 0 !important;
left: 0 !important;
bottom: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isRightOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 4px;
height: 100%;
top: 0 !important;
bottom: unset !important;
left: unset !important;
right: 0 !important;
@apply bg-blue-400;
}
}
.childIsOver {
&:after {
content: '';
display: block;
position: absolute;
top: 0 !important;
bottom: unset !important;
left: 0 !important;
rigth: unset !important;
width: 100%;
height: 100%;
@apply bg-blue-400 bg-opacity-60;
}
} | packages/generator/src/components/Viewport/DripFormDragHoc/index.module.css | :global {
.drip-form_container--droppable {
user-select: none;
position: relative;
}
.drip-form_container--droppable .field-container {
width: 100% !important;
}
.draggable {
& .field-container {
pointer-events:none;
}
}
}
.droppableHover {
&:hover {
&:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
@apply border-dotted border-2 border-blue-400;
}
}
}
.selected {
&:after {
content: '';
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
@apply border-solid border-2 border-blue-400;
}
}
.isTopOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 100%;
height: 4px;
top: 0 !important;
left: 0 !important;
bottom: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isBottomOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 100%;
height: 4px;
bottom: 0 !important;
left: 0 !important;
top: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isLeftOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 4px;
height: 100%;
top: 0 !important;
left: 0 !important;
bottom: unset !important;
right: unset !important;
@apply bg-blue-400;
}
}
.isRightOver {
@apply bg-blue-50;
&:after {
position: absolute;
content: '';
display: block;
width: 4px;
height: 100%;
top: 0 !important;
bottom: unset !important;
left: unset !important;
right: 0 !important;
@apply bg-blue-400;
}
}
.childIsOver {
&:after {
content: '';
display: block;
position: absolute;
top: 0 !important;
bottom: unset !important;
left: 0 !important;
rigth: unset !important;
width: 100%;
height: 100%;
@apply bg-blue-400 bg-opacity-60;
}
} | 0.541894 | 0.115561 |
----------------------------------------------------------------------- */
@media (max-width: 595px) {
.content-bookmark {
display: none; }
.single .comments_wrap .comments_form_wrap .comments_form_title,
.single .comments_wrap .comments_list_wrap .comments_list_title,
.single .post_subtitle .post_meta_item:first-child,
.single .post_subtitle .post_meta .post_meta_item:first-child {
margin-left: -3rem; }
.post_subtitle .post_meta_item:first-child a {
margin-left: 0; }
.comments_wrap .comments_field {
display: block;
width: 100%; } }
@media (max-width: 1280px) {
.post_subtitle .post_meta_item:first-child a {
padding-bottom: 1.4rem; } }
@media (min-width: 1025px) and (max-width: 1240px) {
.sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content {
right: -8.8rem; } }
/* SASS Suffix: --md_lg */
@media (min-width: 768px) and (max-width: 1024px) {
.sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content {
right: -7.1rem; }
.widget_contacts .contacts_info:not(.show_labels) span.contacts_email,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_phone,
.widget_contacts .contacts_info:not(.show_labels) a.contacts_phone,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_address,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_name,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_bdate,
.widget_contacts .contacts_info:not(.show_labels) a.contacts_site {
padding: 1.367rem .9rem 1.367rem 4.7rem; }
.widget_contacts .contacts_wrap_icons {
padding: 3.5rem 1.7rem; } }
@media (max-width: 595px) {
.sc_accordionposts .sc_accordionposts_item_top .sc_accordionposts_item_icon {
display: none; }
.sc_accordionposts .sc_accordionposts_item_top .sc_accordionposts_item_subtitle {
margin-left: 0; }
/* Print buttons */
.sc_printbuttons {
display: block;
position: relative;
padding: 2rem 0; }
.sc_printbuttons_out_content .sc_printbuttons_item {
display: inline-block;
position: relative;
width: auto;
margin: 0 1rem 1rem 0; }
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_title {
display: inline-block;
position: relative;
width: auto;
padding: 1.75rem 2rem 1.4rem 0;
z-index: 1; }
.sc_printbuttons_out_content .sc_printbuttons_icon {
position: relative;
float: left; }
.sc_printbuttons,
.sc_printbuttons_out_content.sc_align_center,
.sc_printbuttons_out_content.sc_align_right,
.sc_printbuttons_out_content.sc_align_left,
.sc_accordionposts .stick-to-top .sc_printbuttons,
.sc_accordionposts .stick-to-top .sc_printbuttons {
top: initial;
right: initial;
bottom: initial;
left: initial; }
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_item:hover .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
left: -1px; }
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
right: 1px; }
header .sc_socials {
text-align: center; }
.socials_wrap {
white-space: normal; }
.socials_wrap .social_item:first-child {
margin-left: 0; }
.socials_wrap .social_item {
margin-right: 4px; }
header .sc_printbuttons_out_content,
header .sc_printbuttons_out_content .sc_printbuttons_item {
padding-bottom: 0;
margin-bottom: 0;
margin-right: 0; }
header .sc_printbuttons_out_content {
text-align: right; }
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
width: 3.8rem;
min-width: 3.8rem;
min-height: 3.8rem; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.45rem 1.25rem 1.1rem 0;
height: 3.8rem;
min-height: 3.8rem; }
.content .sc_printbuttons_out_content.sc_align_right a.sc_printbuttons_item {
margin-right: .5rem;
margin-bottom: .5rem; }
.sc_blogger_filters .sc_blogger_filters_titles {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.sc_blogger_filters .sc_blogger_filters_titles li:first-child {
padding-left: 1em; }
.sc_blogger_filters .sc_blogger_filters_titles li {
padding: 0 1em .8em; }
.widget_contacts .contacts_wrap_icons {
padding: 4.5rem 2rem; } }
@media (max-width: 320px) {
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
width: 3.4rem;
min-width: 3.4rem; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.45rem 1.1rem 1.1rem 0; } }
/* SASS Suffix: --xxl */
@media (max-width: 1679px) {
/* Theme Common styles */
html {
font-size: 14px;
line-height: 164.2857%; }
/* Tags layouts */
table th, table td,
.sc_table table th, .sc_table table td {
padding: 1rem; }
/* Post layouts */
.post_item_404 .post_content {
padding: 9em 0 5em; }
.post_item_none_search .post_content {
padding: 2em 0; } }
/* SASS Suffix: --xl */
@media (max-width: 1439px) {
/* Theme Common styles */
/* Body sizes */
.content_wrap, .content_container {
width: 1030px; }
.body_style_boxed .page_wrap {
width: 1030px; }
.body_style_boxed .header-default-content-wrap,
.body_style_boxed .content_wrap,
.body_style_boxed .content_container {
width: 950px; }
.menu_style_side .menu_side_wrap {
width: 70px; }
body.menu_style_left {
margin-left: 70px; }
body.menu_style_right {
margin-right: 70px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 70px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 70px !important; }
/* Content and Sidebar */
body.body_style_wide:not(.expand_content) [class*="content_wrap"] > .content {
width: 725px; }
body.body_style_boxed:not(.expand_content) [class*="content_wrap"] > .content {
width: 668.6893203883px; }
[class*="content_wrap"] > .sidebar {
width: 300px; }
body.body_style_boxed [class*="content_wrap"] > .sidebar {
width: 276.6990291262px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 90px;
padding-right: 90px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 305px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: -300px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 305px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: -300px; }
/* Header */
.menu_side_icons .toc_menu_item .toc_menu_icon:before {
font-size: 1.8rem; }
/* Mobile menu */
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2857em;
line-height: 1.5em; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height: 1.5em; }
/* Post layouts */
.post_item_404 .post_content {
padding: 3rem 2em; }
.post_item_none_search .post_content {
padding: 2em 0; }
/* Widgets */
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 3em 0; }
.sidebar[class*="scheme_"] .widget {
padding: 0 3em; }
.sidebar .widget,
.sidebar[class*="scheme_"] .widget {
padding: 3rem 2.5rem; }
.sidebar .widget + .widget,
.sidebar[class*="scheme_"] .widget + .widget {
margin-top: 5px; }
.sidebar .widget + .widget.widget_bg_image,
.sidebar[class*="scheme_"] .widget + .widget.widget_bg_image,
.sidebar .widget + .widget.widget_fullwidth,
.sidebar[class*="scheme_"] .widget + .widget.widget_fullwidth {
padding-top: 3em;
padding-bottom: 3em; }
/* Blog layout: Classic */
.post_layout_classic .post_content {
font-size: 1em; }
/* Blog layout: Masonry */
.masonry_wrap .masonry_item-1_4 {
width: 33.3333%; }
/* Blog layout: Portfolio */
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 33.3333%; }
/* Front Page Builder */
.front_page_section_subscribe_text form.mc4wp-form .mc4wp-form-fields input[type="email"] {
padding: 0.85em 1em; }
/* ThemeREX Addons */
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 950px; }
.body_style_boxed .sc_content_width_1_2 {
width: 475px; }
.body_style_boxed .sc_content_width_1_3 {
width: 316.6666666667px; }
.body_style_boxed .sc_content_width_2_3 {
width: 633.3333333333px; }
.body_style_boxed .sc_content_width_1_4 {
width: 237.5px; }
.body_style_boxed .sc_content_width_3_4 {
width: 712.5px; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1030px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 950px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 1040px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 1050px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 1060px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 1070px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 1090px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 735px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 745px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 755px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 765px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 785px; } }
/* SASS Suffix: --lg */
@media (max-width: 1279px) {
/* Theme Common styles */
html {
font-size: 13px;
line-height: 161.54%; }
h1, .front_page_section_caption {
font-size: 36px;
line-height: 50px;
margin-top: 36px;
margin-bottom: 20px;
letter-spacing: 0; }
h2 {
font-size: 32px;
line-height: 45px;
margin-top: 42px;
margin-bottom: 24px;
letter-spacing: 0; }
h3 {
font-size: 24px;
line-height: 34px;
margin-top: 40px;
margin-bottom: 22px;
letter-spacing: 0; }
h4 {
font-size: 20px;
line-height: 28px;
margin-top: 32px;
margin-bottom: 18px;
letter-spacing: 0; }
h5 {
font-size: 16px;
line-height: 22px;
margin-top: 30px;
margin-bottom: 16px;
letter-spacing: 0; }
h6 {
font-size: 14px;
line-height: 20px;
margin-top: 28px;
margin-bottom: 12px;
letter-spacing: 0; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em; }
/* Body sizes */
.body_style_boxed .page_wrap {
width: 100%; }
.header-default-content-wrap,
.content_wrap,
.content_container {
width: 890px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 830px !important; }
.menu_style_side .menu_side_wrap {
width: 60px; }
body.menu_style_left {
margin-left: 60px !important; }
body.menu_style_right {
margin-right: 60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 60px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 60px !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 626.4563106796px; }
body.menu_style_side:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 566.4563106796px; }
[class*="content_wrap"] > .sidebar,
body.body_style_boxed [class*="content_wrap"] > .sidebar {
width: 259.2233009709px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 50px;
padding-right: 50px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 263.5436893204px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: -259.2233009709px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 263.5436893204px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: -259.2233009709px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 15px;
padding-right: 15px; }
.row, .columns_wrap, .trx_addons_columns_wrap {
margin-right: -30px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 30px; }
.vc_row.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left {
margin-left: -30px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 30px; }
.vc_row.columns_padding_right,
.row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -30px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 30px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -15px;
margin-right: -15px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 15px;
padding-right: 15px; }
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom,
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom {
padding-bottom: 30px; }
hr, .vc_separator {
margin: 4em 0 !important; }
/* Header */
.menu_side_wrap .sc_layouts_logo {
padding: 55% 8%; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 1px;
padding: 0 2em; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2308em;
line-height: 1.5em; }
/* Buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.theme_button,
.post_item .more-link,
.gallery_preview_show .post_readmore,
.shift_cv_tabs .shift_cv_tabs_titles li a,
#buddypress .comment-reply-link,
#buddypress .generic-button a,
#buddypress a.button,
#buddypress button,
#buddypress input[type="button"],
#buddypress input[type="reset"],
#buddypress input[type="submit"],
#buddypress ul.button-nav li a,
#buddypress div.activity-meta a,
a.bp-title-button,
body #booked-profile-page input[type="submit"],
body #booked-profile-page button,
body .booked-list-view input[type="submit"],
body .booked-list-view button,
body table.booked-calendar input[type="submit"],
body table.booked-calendar button,
body .booked-modal input[type="submit"],
body .booked-modal button,
.edd_download_purchase_form .button,
#edd-purchase-button,
.edd-submit.button,
.widget_edd_cart_widget .edd_checkout a,
form.mc4wp-form .mc4wp-form-fields input[type="submit"],
.sc_button,
.sc_layouts_row .sc_button,
.sc_form button,
.tourmaster-tour-search-wrap input.tourmaster-tour-search-submit[type="submit"],
#tribe-bar-form .tribe-bar-submit input[type="submit"],
#tribe-bar-form button,
#tribe-bar-form a,
#tribe-bar-form input,
#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a,
.tribe-bar-mini #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a,
#tribe-events .tribe-events-button,
.tribe-events-button,
.tribe-events-cal-links a,
.tribe-events-sub-nav li a,
.tribe-events-read-more,
#tribe-events-footer ~ a.tribe-events-ical.tribe-events-button {
font-size: 14px;
line-height: 14px;
padding: 1.3em 2.5em 1.05em;
letter-spacing: 0; }
.sc_button_simple {
padding: 0 1.8em 0 0; }
/* Tab buttons */
div.esg-filter-wrapper .esg-filterbutton > span,
.mptt-navigation-tabs li a,
div.shift_cv_tabs .shift_cv_tabs_titles li a,
div.shift_cv_tabs .shift_cv_tabs_titles li a.ui-tabs-anchor {
padding: 1em 1.25em; }
/* Post layouts */
.post_item .more-link {
margin-top: 2em; }
/* Single post */
.comments_list_wrap .comment_posted {
font-size: 1em; }
/* Widgets */
.widget .widgettitle {
font-size: 16px;
line-height: 20px; }
.sc_edd_details .downloads_page_tags .downloads_page_data > a,
.widget_product_tag_cloud a,
.widget_tag_cloud a {
letter-spacing: 0; }
/* Video players */
.trx_addons_video_player.with_cover .video_hover,
.format-video .post_featured.with_thumb .post_video_hover {
-webkit-transition: none;
-ms-transition: none;
transition: none;
opacity: 1;
margin-top: -1em; }
.trx_addons_video_player.with_cover:hover .video_hover {
margin-top: -1em; }
.format-video .post_featured.with_thumb:hover .post_video_hover {
margin-top: -1.55em; }
.trx_addons_video_player.with_cover .video_hover,
.body_style_fullwide .format-video .post_featured.with_thumb .post_video_hover,
.post_layout_excerpt.format-video .post_featured.with_thumb .post_video_hover,
.post_layout_chess_1.format-video .post_featured.with_thumb .post_video_hover {
width: 5rem;
height: 5rem;
line-height: 5rem;
text-align: center; }
.format-video .post_featured.with_thumb .post_video_hover {
margin: -1.55em 0 0 -1.5em; }
.trx_addons_video_player.with_cover .video_hover {
margin: -1em 0 0 -1.5em; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
font-size: 2em;
line-height: 1.5em; }
/* Blog layout: Classic */
.post_layout_classic blockquote {
padding: 2.5em 2.5em 2.5em 5em; }
.post_layout_classic blockquote:before {
top: 1.2em;
left: 0.8em; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_show .post_readmore {
margin-top: 2em; }
/* Front Page Builder */
.front_page_section_subscribe_text form.mc4wp-form .mc4wp-form-fields input[type="email"] {
padding: 0.8em 1em; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
height: 540px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
height: 270px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
height: 135px; }
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 890px; }
.body_style_boxed .sc_content_width_1_2 {
width: 445px; }
.body_style_boxed .sc_content_width_1_3 {
width: 296.6666666667px; }
.body_style_boxed .sc_content_width_2_3 {
width: 593.3333333333px; }
.body_style_boxed .sc_content_width_1_4 {
width: 222.5px; }
.body_style_boxed .sc_content_width_3_4 {
width: 667.5px; }
/* Content Area with Side Menu */
.menu_style_side .sc_content_width_1_1 {
width: 830px; }
.menu_style_side .sc_content_width_1_2 {
width: 415px; }
.menu_style_side .sc_content_width_1_3 {
width: 276.6666666667px; }
.menu_style_side .sc_content_width_2_3 {
width: 553.3333333333px; }
.menu_style_side .sc_content_width_1_4 {
width: 207.5px; }
.menu_style_side .sc_content_width_3_4 {
width: 622.5px; }
.body_style_boxed #theme_switcher {
left: 5px; }
.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 35px);
height: -webkit-calc(100% - 35px);
height: calc(100% - 35px); }
/* Testimonials */
.sc_blogger_testimonials .trx_addons_columns_wrap.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon,
.sc_blogger_testimonials .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 1.7rem);
height: -webkit-calc(100% - 1.7rem);
height: calc(100% - 1.7rem); }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 890px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 890px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 900px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 910px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 920px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 930px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 950px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 636.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 646.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 656.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 666.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 686.4563106796px; } }
/* SASS Suffix: --md */
@media (max-width: 1023px) {
/* Theme Common styles */
h1, .front_page_section_caption {
font-size: 32px;
line-height: 46px;
margin-top: 30px;
margin-bottom: 16px; }
h2 {
font-size: 28px;
line-height: 38px;
margin-top: 38px;
margin-bottom: 20px; }
h3 {
font-size: 22px;
line-height: 30px;
margin-top: 36px;
margin-bottom: 18px; }
h4 {
font-size: 18px;
line-height: 26px;
margin-top: 30px;
margin-bottom: 16px; }
h5 {
font-size: 16px;
line-height: 22px;
margin-top: 28px;
margin-bottom: 14px; }
h6 {
font-size: 14px;
line-height: 20px;
margin-top: 24px;
margin-bottom: 10px; }
/* Body sizes */
.header-default-content-wrap,
.content_wrap,
.content_container {
width: 625px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 565px !important; }
.menu_style_side .menu_side_wrap {
width: 60px; }
body.menu_style_left {
margin-left: 60px; }
body.menu_style_right {
margin-right: 60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 60px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 60px !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 100% !important;
float: none; }
[class*="content_wrap"] > .sidebar {
width: 100% !important;
float: none;
margin-top: 4em; }
.post_subtitle + .post_inner {
padding: 2.88rem 4rem 4rem; }
.single .post_subtitle + .post_inner {
padding: 3.36rem 4rem 4rem; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 30px;
padding-right: 30px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 0 !important;
float: none; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: 0 !important;
float: none; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 0 !important;
float: none; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: 0 !important;
float: none; }
/* Leave max 5 columns in the gallery */
.gallery.gallery-columns-9 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 20% !important; }
/* Header */
body.no_layout.menu_style_left {
margin-left: 0; }
body.no_layout.menu_style_right {
margin-right: 0; }
body.no_layout.menu_style_right .menu_side_wrap {
right: -6rem; }
body.no_layout.menu_style_left .menu_side_wrap {
left: -6rem; }
body.no_layout.menu_style_left .sc_layouts_row_fixed_on {
padding-left: 0; }
body.no_layout.menu_style_right .sc_layouts_row_fixed_on {
padding-right: 0; }
body.no_layout.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 0 !important; }
body.no_layout.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 0 !important; }
.top_panel.with_bg_image {
min-height: 20em; }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
margin-bottom: 1em !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 12px !important; }
/* Mobile menu */
.menu_mobile .menu_mobile_nav_area {
position: relative;
top: auto;
margin: 3em 0 0;
max-height: none;
padding-right: 0;
overflow-y: visible;
-webkit-transform: none;
-ms-transform: none;
transform: none; }
.menu_mobile .menu_mobile_inner {
overflow-y: auto; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 1.5em;
line-height: 1.5em; }
.menu_mobile .search_mobile {
position: relative;
bottom: auto;
left: 0;
margin: 3em auto 0; }
.menu_mobile .socials_mobile {
position: relative;
bottom: auto;
margin: 1em 0 0; }
.menu_mobile .sc_layouts_logo {
margin-top: 4em; }
/* Tags layouts */
hr, .vc_separator {
margin: 3em 0 !important; }
/* Post layouts */
.post_item_404:not([class*="post_item_none_"]) .page_title {
font-size: 9em;
line-height: 1em; }
.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
/* Widgets */
.sidebar .sidebar_inner {
padding: 30px 0;
margin-right: -5px; }
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 30px 15px; }
.sidebar .widget, .sidebar[class*="scheme_"] .widget {
display: inline-block;
float: none;
vertical-align: top;
width: 49.2%;
margin-right: 5px;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box; }
.sidebar .widget + .widget, .sidebar[class*="scheme_"] .widget + .widget {
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0;
border-top-width: 0; }
.footer_wrap .widget,
.footer_wrap .widget + .widget + .widget,
.sidebar .widget,
.sidebar .widget + .widget + .widget,
.sidebar[class*="scheme_"] .widget + .widget + .widget {
margin-bottom: 5px !important; }
.widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 50%; }
.footer_wrap .sc_content .wpb_column:not(.vc_col-sm-12) {
width: 50% !important;
float: none;
display: inline-block;
vertical-align: top; }
.footer_wrap .sc_content .wpb_column + .wpb_column + .wpb_column {
margin-top: 30px !important;
padding-top: 30px !important;
border-top-width: 1px;
border-top-style: solid; }
.header_fullwidth .widget,
.footer_fullwidth .widget {
width: 100% !important;
display: block !important;
margin-left: 0 !important;
margin-bottom: 0 !important; }
.column-1_2 .mejs-controls .mejs-button,
.column-1_3 .mejs-controls .mejs-button,
.column-1_4 .mejs-controls .mejs-button {
margin-right: 0; }
.column-1_2 .mejs-controls .mejs-button.mejs-volume-button,
.column-1_3 .mejs-controls .mejs-button.mejs-volume-button,
.column-1_4 .mejs-controls .mejs-button.mejs-volume-button {
margin-left: 0; }
.mejs-controls .mejs-time {
font-size: 12px; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
font-size: 1.75em;
line-height: 1.5em; }
/* Blog layout: Classic */
.post_layout_classic blockquote {
padding: 2em 2em 2em 5em; }
.post_layout_classic blockquote:before {
top: 1.1em;
left: 0.7em; }
.post_layout_classic blockquote p {
font-size: 15px; }
.post_layout_classic blockquote > a, .post_layout_classic blockquote > p > a,
.post_layout_classic blockquote > cite, .post_layout_classic blockquote > p > cite {
font-size: 13px; }
.post_layout_classic .swiper-container-horizontal > .swiper-pagination,
.post_layout_classic .slider_outer > .swiper-pagination {
bottom: 6px; }
.post_layout_classic .slider_container .swiper-pagination-bullet,
.post_layout_classic .slider_outer .swiper-pagination-bullet {
width: 6px;
height: 6px;
line-height: 6px;
text-align: center;
border-width: 1px; }
.post_layout_classic.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
.post_layout_classic.post_format_audio .mejs-time {
display: none; }
/* Blog layout: Masonry */
.masonry_wrap {
margin-right: -30px; }
.masonry_wrap .masonry_item {
padding: 0 30px 0 0; }
.masonry_wrap .post_layout_masonry {
margin-bottom: 30px; }
.masonry_wrap .masonry_item-1_3,
.masonry_wrap .masonry_item-1_4 {
width: 50%; }
/* Blog layout: Portfolio */
.portfolio_wrap {
margin-right: -30px; }
.post_layout_portfolio {
padding: 0 30px 30px 0; }
.portfolio_wrap.portfolio_3 .post_layout_portfolio,
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 50%; }
/* Blog layout: Portfolio Gallery */
.gallery_preview .post_description_content {
display: none !important; }
.gallery_preview_description {
padding: 0 2em; }
.gallery_preview_show .post_readmore {
margin-top: 0; }
/* Front Page Builder */
.front_page_section_subscribe_content .front_page_section_text {
max-width: none; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
width: 100%;
height: 198px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
width: 100%;
height: 198px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
width: 100%;
height: 198px; }
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 625px; }
.body_style_boxed .sc_content_width_1_2 {
width: 312.5px; }
.body_style_boxed .sc_content_width_1_3 {
width: 208.3333333333px; }
.body_style_boxed .sc_content_width_2_3 {
width: 416.6666666667px; }
.body_style_boxed .sc_content_width_1_4 {
width: 156.25px; }
.body_style_boxed .sc_content_width_3_4 {
width: 468.75px; }
/* Content Area with Side Menu */
.menu_style_side .sc_content_width_1_1 {
width: 565px; }
.menu_style_side .sc_content_width_1_2 {
width: 282.5px; }
.menu_style_side .sc_content_width_1_3 {
width: 188.3333333333px; }
.menu_style_side .sc_content_width_2_3 {
width: 376.6666666667px; }
.menu_style_side .sc_content_width_1_4 {
width: 141.25px; }
.menu_style_side .sc_content_width_3_4 {
width: 423.75px; }
/* Testimonials */
.sc_blogger_testimonials .sc_blogger_item_content {
display: block; }
.sc_blogger_testimonials .sc_testimonials_item_author_avatar + .sc_blogger_item_excerpt {
width: 100%; }
.sc_blogger_item .sc_supertitle .sc_supertitle_icon_empty_column,
.sc_supertitle .sc_supertitle_icon_empty_column {
position: relative; }
.widget_contacts .contacts_wrap_icons {
min-height: 0;
padding: 3.5rem 2rem; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 625px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 625px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 635px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 645px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 655px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 665px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 685px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 635px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 645px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 655px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 665px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 685px; } }
/* SASS Suffix: --sm */
@media (max-width: 767px) {
/* Theme Common styles */
h1, .front_page_section_caption {
font-size: 28px;
line-height: 36px;
margin-top: 32px;
margin-bottom: 18px; }
h2 {
font-size: 26px;
line-height: 32px;
margin-top: 30px;
margin-bottom: 18px; }
h3 {
font-size: 22px;
line-height: 28px;
margin-top: 28px;
margin-bottom: 18px; }
h4 {
font-size: 18px;
line-height: 22px;
margin-top: 26px;
margin-bottom: 16px; }
h5 {
font-size: 16px;
line-height: 20px;
margin-top: 24px;
margin-bottom: 14px; }
h6 {
font-size: 14px;
line-height: 18px;
margin-top: 22px;
margin-bottom: 10px; }
/* Body sizes */
.content_wrap, .header-default-content-wrap,
.content_container {
width: 440px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 440px !important; }
.menu_style_side .menu_side_wrap {
width: 60px !important; }
body.mobile_layout.menu_style_left .menu_side_wrap {
left: -60px; }
body.mobile_layout.menu_style_right .menu_side_wrap {
right: -60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 0 !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 0 !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
margin-bottom: 0; }
[class*="content_wrap"] > .sidebar {
margin-top: 3em; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 20px;
padding-right: 20px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 10px;
padding-right: 10px; }
.row,
.columns_wrap,
.trx_addons_columns_wrap {
margin-right: -20px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 20px; }
.vc_row.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left {
margin-left: -20px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 20px; }
.vc_row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.row.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -20px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 20px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -10px;
margin-right: -10px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 10px;
padding-right: 10px; }
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 20px; }
.row:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.row:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+4),
.columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+4),
.trx_addons_columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+3),
.trx_addons_columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+4) {
padding-top: 20px; }
/* Max column's width in the row */
.row:not(.columns_fluid) > [class*="column-"],
.columns_wrap:not(.columns_fluid) > [class*="column-"],
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"] {
width: 100%; }
.trx_addons_columns_wrap:not(.columns_fluid) > .sc_supertitle_right_column[class*="trx_addons_column-"] {
text-align: left; }
.wpcf7 .columns_wrap {
white-space: normal;
letter-spacing: 0; }
.row:not(.columns_fluid) > .column-1_1, .row:not(.columns_fluid) > .column-2_2, .row:not(.columns_fluid) > .column-3_3, .row:not(.columns_fluid) > .column-4_4,
.row:not(.columns_fluid) > .column-5_5, .row:not(.columns_fluid) > .column-6_6, .row:not(.columns_fluid) > .column-7_7, .row:not(.columns_fluid) > .column-8_8,
.row:not(.columns_fluid) > .column-9_9, .row:not(.columns_fluid) > .column-10_10,
.row:not(.columns_fluid) > .column-11_11, .row:not(.columns_fluid) > .column-12_12,
.columns_wrap:not(.columns_fluid) > .column-1_1, .columns_wrap:not(.columns_fluid) > .column-2_2, .columns_wrap:not(.columns_fluid) > .column-3_3,
.columns_wrap:not(.columns_fluid) > .column-4_4, .columns_wrap:not(.columns_fluid) > .column-5_5, .columns_wrap:not(.columns_fluid) > .column-6_6,
.columns_wrap:not(.columns_fluid) > .column-7_7, .columns_wrap:not(.columns_fluid) > .column-8_8, .columns_wrap:not(.columns_fluid) > .column-9_9,
.columns_wrap:not(.columns_fluid) > .column-10_10, .columns_wrap:not(.columns_fluid) > .column-11_11, .columns_wrap:not(.columns_fluid) > .column-12_12,
.row:not(.columns_fluid) > .column-2_3, .columns_wrap:not(.columns_fluid) > .column-2_3,
.row:not(.columns_fluid) > .column-1_3.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_3.after_span_2,
.row:not(.columns_fluid) > .column-2_4, .columns_wrap:not(.columns_fluid) > .column-3_4,
.row:not(.columns_fluid) > .column-1_4.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_4.after_span_3,
.row:not(.columns_fluid) > .column-2_5, .columns_wrap:not(.columns_fluid) > .column-2_5,
.row:not(.columns_fluid) > .column-3_5, .columns_wrap:not(.columns_fluid) > .column-3_5,
.row:not(.columns_fluid) > .column-4_5, .columns_wrap:not(.columns_fluid) > .column-4_5,
.row:not(.columns_fluid) > .column-2_6, .columns_wrap:not(.columns_fluid) > .column-2_6,
.row:not(.columns_fluid) > .column-3_6, .columns_wrap:not(.columns_fluid) > .column-3_6,
.row:not(.columns_fluid) > .column-4_6, .columns_wrap:not(.columns_fluid) > .column-4_6,
.row:not(.columns_fluid) > .column-5_6, .columns_wrap:not(.columns_fluid) > .column-5_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_1, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_3, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_5, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-6_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-7_7, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-8_8,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-9_9, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-10_10,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-11_11, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-12_12,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_3,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_3.after_span_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_4.after_span_3,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_6 {
width: 100%; }
/* WP Gallery Grid */
.gallery.gallery-columns-9 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-5 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-4 .gallery-item {
width: 33.3333% !important; }
img.alignleft, img.alignright,
figure.alignleft, figure.alignright {
float: none;
display: block;
margin: 1em auto !important; }
/* Vertical menus */
.sc_layouts_menu_dir_vertical .sc_layouts_menu_nav li.menu-item-has-children > a + .open_child_menu {
display: inline-block; }
/* Header */
.menu_side_icons .toc_menu_item .toc_menu_icon:before {
font-size: 1.5em; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 1px;
padding: 0 1.5em; }
/* Search */
.search_style_fullscreen.search_opened .search_form {
width: 75%; }
.search_style_fullscreen.search_opened .search_submit,
.search_style_fullscreen.search_opened .search_field,
.search_style_fullscreen.search_opened .search_close {
font-size: 1.5em !important;
height: 2.5em;
line-height: 2.5em; }
.search_style_fullscreen.search_opened .search_field {
padding-right: 1.25em !important; }
.search_style_fullscreen.search_opened .search_close {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
font-size: 14px !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 11px !important; }
/* Widgets */
.sidebar .sidebar_inner {
padding: 20px 0; }
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 20px 10px; }
.sidebar .widget,
.sidebar[class*="scheme_"] .widget {
width: 100%; }
.widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 50%; }
.footer_wrap .sc_content .wpb_column + .wpb_column + .wpb_column {
margin-top: 20px !important;
padding-top: 20px !important; }
/* Tabs */
.shift_cv_tabs .shift_cv_tabs_titles {
margin: 0 0 2em; }
/* Post layouts */
.post_item_404 .page_title {
font-size: 12em;
line-height: 1em;
float: none;
width: 100%;
text-align: center; }
.post_item_none_search .page_title,
.post_item_none_archive .page_title {
font-size: 6em; }
.post_item_404 .page_info {
padding: 2em;
width: 100%;
text-align: center; }
.post_item_404 .page_description {
line-height: 1.7em; }
.post_item_404 .go_home {
padding: 1em 2em; }
blockquote > a, blockquote > p > a, blockquote > cite, blockquote > p > cite {
margin-top: 1.5em; }
/* Single post */
.post_item_single .post_content > .post_meta_single .post_tags,
.post_item_single .post_content > .post_meta_single .post_share {
max-width: none;
float: none;
margin-top: 0; }
.post_item_single .post_content > .post_meta_single .post_share {
margin-top: 2em; }
.nav-links-single .nav-links .nav-next a,
.nav-links-single .nav-links .nav-previous a {
padding: 0; }
.nav-links-single .nav-links a .nav-arrow {
position: static;
left: auto;
top: auto;
right: auto;
display: inline-block;
margin-bottom: 1em; }
.sc_layouts_menu.inited,
.sc_layouts_menu > nav {
overflow: hidden;
visibility: hidden;
max-height: 0; }
/* Other minor plugins */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
max-width: 100%;
max-height: 100%; }
.mfp-arrow-left {
margin-top: -41px; }
.post_subtitle {
padding: 0 3rem; }
.post_subtitle .post_meta_item:first-child {
margin-right: 0;
margin-left: -3rem;
display: block; }
.single .post_subtitle .post_meta_item:first-child {
display: inline-block;
padding: 1.9rem 3rem 1.4rem 3rem;
margin-right: 40%;
margin-left: -2.85rem;
margin-left: -webkit-calc(-3rem + 2px);
margin-left: -moz-calc(-3rem + 2px);
margin-left: calc(-3rem + 2px); }
.post_subtitle .post_meta_item:first-child a {
padding: 1.9rem 3rem 1.4rem; }
.post_subtitle .post_meta_item:not(:first-child) {
padding: 1.5rem 2.4rem 0 0; }
.post_subtitle .post_meta_item.post_author {
padding-right: 1rem; }
.post_subtitle .post_meta_item.post_counters_item {
padding-left: 0; }
.single .post_subtitle + .post_inner,
.post_subtitle + .post_inner {
padding: 2.4rem 3rem 3rem; }
.header-default-content-wrap {
padding: 1rem 3rem; }
.single .comments_form_wrap .comments_form_title,
.single .comments_list_wrap .comments_list_title,
.single .post_subtitle .post_meta_item:first-child {
margin-left: -2.85rem;
margin-left: -webkit-calc(-3rem + 2px);
margin-left: -moz-calc(-3rem + 2px);
margin-left: calc(-3rem + 2px); }
.comments_form_wrap,
.comments_list_wrap {
padding: 0 3rem 3rem; }
.nav-links-single .nav-links {
padding: 2.4rem 3rem 3rem; }
.author_info {
padding: 2.4em 3em 3em; }
.post_meta .post_meta_label {
display: block; }
.post_featured.with_thumb .mejs-container, .post_featured.with_thumb .mejs-controls, .post_featured > div > .mejs-container,
.post_featured > div > .mejs-container .mejs-controls, .trx_addons_audio_player.with_cover .mejs-container,
.trx_addons_audio_player.with_cover .mejs-controls {
padding: 0 1rem; }
.mejs-controls .mejs-horizontal-volume-total,
.mejs-controls .mejs-horizontal-volume-slider {
width: 35px; }
.mejs-controls .mejs-button {
margin-right: .5rem; }
.mejs-controls .mejs-button.mejs-volume-button {
margin-left: 0.5rem; }
.esg-pagination, .esg-filters {
text-align: center !important; }
div.esg-filter-wrapper .esg-filterbutton,
div.esg-filter-wrapper .esg-filterbutton + .esg-filterbutton {
margin-left: .7rem;
margin-right: .7rem; }
.responsive-centered {
text-align: center !important; }
.footer_copyright_inner {
text-align: center;
padding-bottom: 3.5rem; }
.footer_copyright_inner .copyright_text {
padding: 0 3rem; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
position: static;
right: auto;
top: auto;
margin-top: 0.3em; }
.post_layout_excerpt .post_header + .post_content {
margin-top: 1.5em; }
.post_layout_excerpt blockquote {
padding: 2em 2em 2em 4em;
margin-left: 0;
margin-right: 0; }
.post_layout_excerpt blockquote:before {
top: 1.3em;
left: 1em; }
/* Blog layout: Masonry */
.masonry_wrap {
margin-right: 0; }
.masonry_wrap .masonry_item {
padding: 0; }
.masonry_wrap .post_layout_masonry {
margin-bottom: 1.5em; }
.masonry_wrap .masonry_item-1_2,
.masonry_wrap .masonry_item-1_3,
.masonry_wrap .masonry_item-1_4 {
width: 100%; }
/* Blog layout: Portfolio */
.portfolio_wrap {
margin-right: 0; }
.post_layout_portfolio {
padding: 0 0 1.5em 0; }
.portfolio_wrap.portfolio_2 .post_layout_portfolio,
.portfolio_wrap.portfolio_3 .post_layout_portfolio,
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 100%; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_description {
padding: 0 1.6em; }
/* Front Page Builder */
.front_page_section_paddings_small .front_page_section_content_wrap {
padding: 15% 0; }
.front_page_section_paddings_medium .front_page_section_content_wrap {
padding: 20% 0; }
.front_page_section_paddings_large .front_page_section_content_wrap {
padding: 25% 0; }
.front_page_section_paddings_huge .front_page_section_content_wrap {
padding: 30% 0; }
.front_page_section_title_description {
line-height: 1.5em; }
.front_page_section_subscribe .front_page_section_output {
max-width: none; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
width: 100%;
height: 124px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
width: 100%;
height: 124px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
width: 100%;
height: 124px; }
/* Content Area */
.sc_content_width_1_1 {
width: 440px !important; }
.sc_content_width_1_2 {
width: 220px !important; }
.sc_content_width_1_3 {
width: 146.6666666667px !important; }
.sc_content_width_2_3 {
width: 293.3333333333px !important; }
.sc_content_width_1_4 {
width: 110px !important; }
.sc_content_width_3_4 {
width: 330px !important; }
.sc_accordionposts_item_header .vertical-middle {
display: block;
text-align: center; }
/* SC Super Title */
.sc_supertitle .trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"] {
padding-bottom: 15px; }
.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 17px);
height: -webkit-calc(100% - 17px);
height: calc(100% - 17px); }
/* Testimonials */
.sc_blogger_testimonials .trx_addons_columns_wrap.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon,
.sc_blogger_testimonials .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 1.4rem);
height: -webkit-calc(100% - 1.4rem);
height: calc(100% - 1.4rem); }
/* Print buttons */
.content .sc_printbuttons {
display: block;
position: relative;
padding: 2rem 0; }
.content .sc_printbuttons_out_content.sc_align_right {
text-align: left; }
.content .sc_printbuttons_out_content .sc_printbuttons_item {
display: inline-block;
position: relative;
width: auto;
margin: 0 1rem 1rem 0; }
.content .sc_printbuttons_out_content .sc_printbuttons_title {
display: inline-block;
position: relative;
width: auto;
padding: 1.75rem 2rem 1.4rem 0;
z-index: 1; }
.content .sc_printbuttons_out_content .sc_printbuttons_title:hover {
padding: 1.75rem 2rem 1.4rem 0; }
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
position: relative;
float: left; }
.content .sc_printbuttons_out_content.sc_align_right,
.content .sc_printbuttons_out_content.sc_align_left,
.content .sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content,
.content .sc_accordionposts .stick-to-top .sc_printbuttons,
.content .sc_accordionposts .stick-to-top .sc_printbuttons {
top: initial;
right: initial;
bottom: initial;
left: initial; }
.content .sc_printbuttons_out_content .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
right: 0; }
.content .sc_printbuttons .sc_printbuttons_icon, .content .sc_printbuttons .sc_printbuttons_item_title {
-webkit-transition: none;
-ms-transition: none;
transition: none; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_title {
right: 0; }
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
font-size: 14px; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 440px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 440px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 450px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 460px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 470px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 480px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 500px; } }
/* SASS Suffix: --xs */
@media (max-width: 480px) {
/* Theme Common styles */
html {
font-size: 13px;
line-height: 153.84615%; }
h1, .front_page_section_caption {
font-size: 28px;
line-height: 36px;
margin-top: 32px;
margin-bottom: 20px; }
h2 {
font-size: 24px;
line-height: 32px;
margin-top: 30px;
margin-bottom: 18px; }
h3 {
font-size: 20px;
line-height: 26px;
margin-top: 28px;
margin-bottom: 16px; }
h4 {
font-size: 17px;
line-height: 22px;
margin-top: 24px;
margin-bottom: 14px; }
h5 {
font-size: 15px;
line-height: 20px;
margin-top: 22px;
margin-bottom: 10px; }
h6 {
font-size: 13px;
line-height: 18px;
margin-top: 20px;
margin-bottom: 8px; }
.widget .widgettitle {
font-size: 15px;
line-height: 18px; }
figure figcaption {
font-size: 12px; }
/* Body sizes */
.header-default-content-wrap, .content_wrap, .content_container {
width: 100% !important; }
/* Content and Sidebar */
[class*="content_wrap"] > .sidebar {
margin-top: 3.5em; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 300px !important; }
.menu_style_side .menu_side_wrap {
width: 60px !important; }
body.mobile_layout.menu_style_left .menu_side_wrap {
left: -60px; }
body.mobile_layout.menu_style_right .menu_side_wrap {
right: -60px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 20px;
padding-right: 20px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 10px;
padding-right: 10px; }
.row,
.columns_wrap,
.trx_addons_columns_wrap {
margin-right: -20px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 20px; }
.vc_row.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left {
margin-left: -20px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 20px; }
.vc_row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.row.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -20px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 20px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -10px;
margin-right: -10px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 10px;
padding-right: 10px; }
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 20px; }
/* Max column's width in the not-fluid rows */
.row:not(.columns_fluid) > [class*="column-"],
.columns_wrap:not(.columns_fluid) > [class*="column-"],
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"] {
width: 100%; }
/* Max column's width in the fluid rows */
.row.columns_fluid > [class*="column-"],
.columns_wrap.columns_fluid > [class*="column-"],
.trx_addons_columns_wrap.columns_fluid > [class*="trx_addons_column-"] {
width: 50%; }
.row.columns_fluid > .column-1_1, .columns_wrap.columns_fluid > .column-1_1,
.row.columns_fluid > .column-2_2, .columns_wrap.columns_fluid > .column-2_2,
.row.columns_fluid > .column-3_3, .columns_wrap.columns_fluid > .column-3_3,
.row.columns_fluid > .column-4_4, .columns_wrap.columns_fluid > .column-4_4,
.row.columns_fluid > .column-5_5, .columns_wrap.columns_fluid > .column-5_5,
.row.columns_fluid > .column-6_6, .columns_wrap.columns_fluid > .column-6_6,
.row.columns_fluid > .column-7_7, .columns_wrap.columns_fluid > .column-7_7,
.row.columns_fluid > .column-8_8, .columns_wrap.columns_fluid > .column-8_8,
.row.columns_fluid > .column-9_9, .columns_wrap.columns_fluid > .column-9_9,
.row.columns_fluid > .column-10_10, .columns_wrap.columns_fluid > .column-10_10,
.row.columns_fluid > .column-11_11, .columns_wrap.columns_fluid > .column-11_11,
.row.columns_fluid > .column-12_12, .columns_wrap.columns_fluid > .column-12_12 {
width: 100%; }
.content article {
overflow: hidden; }
/* WP Gallery Grid */
.gallery.gallery-columns-9 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-5 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-4 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-3 .gallery-item {
width: 50% !important; }
/* Header */
.top_panel_mobile {
display: block; }
body.header_mobile_enabled .top_panel {
display: none; }
.menu_side_wrap .sc_layouts_logo {
padding: 40% 8%; }
.menu_side_icons .toc_menu_item .toc_menu_icon,
.menu_side_icons .toc_menu_item .toc_menu_description:before {
height: 5.5rem; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 0; }
.mobile_device .menu_mobile .sc_layouts_logo img,
.mobile_layout .menu_mobile .sc_layouts_logo img {
max-height: 40px; }
.mobile_device .menu_mobile .menu_mobile_nav_area,
.mobile_layout .menu_mobile .menu_mobile_nav_area {
margin-top: 2em; }
.mobile_device .menu_mobile .search_mobile,
.mobile_layout .menu_mobile .search_mobile {
margin-top: 2em;
width: 280px; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 18px;
line-height: 1.5em; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 14px;
line-height: 1.5em;
width: 236px; }
.menu_mobile .menu_mobile_nav_area ul.sc_layouts_submenu {
width: 250px; }
.top_panel.with_bg_image {
min-height: 18em; }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
font-size: 13px !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 9px !important; }
/* Widgets */
.sidebar .widget, .sidebar[class*="scheme_"] .widget {
width: 100%; }
.widget.column-1_2, .widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 100%; }
.footer_wrap .sc_content .wpb_column,
.footer_wrap .sc_content .wpb_column:not(.vc_col-sm-12) {
display: block;
float: none;
vertical-align: top;
width: 100% !important; }
.footer_wrap .sc_content .wpb_column + .wpb_column {
margin-top: 20px !important;
padding-top: 20px !important;
border-top-width: 1px;
border-top-style: solid; }
/* Tags layouts */
blockquote:before {
top: 1.05em;
left: -1.5em; }
blockquote p {
font-size: 16px; }
blockquote > a, blockquote > p > a,
blockquote > cite, blockquote > p > cite {
font-size: 12px; }
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea,
textarea.wp-editor-area,
.tourmaster-form-field input[type="text"],
.tourmaster-form-field input[type="email"],
.tourmaster-form-field input[type="password"],
.tourmaster-form-field textarea,
.tourmaster-form-field select,
.tourmaster-form-field.tourmaster-with-border input[type="text"],
.tourmaster-form-field.tourmaster-with-border input[type="email"],
.tourmaster-form-field.tourmaster-with-border input[type="password"],
.tourmaster-form-field.tourmaster-with-border textarea,
.tourmaster-form-field.tourmaster-with-border select,
#buddypress .dir-search input[type="search"],
#buddypress .dir-search input[type="text"],
#buddypress .groups-members-search input[type="search"],
#buddypress .groups-members-search input[type="text"],
#buddypress .standard-form input[type="color"],
#buddypress .standard-form input[type="date"],
#buddypress .standard-form input[type="datetime-local"],
#buddypress .standard-form input[type="datetime"],
#buddypress .standard-form input[type="email"],
#buddypress .standard-form input[type="month"],
#buddypress .standard-form input[type="number"],
#buddypress .standard-form input[type="password"],
#buddypress .standard-form input[type="range"],
#buddypress .standard-form input[type="search"],
#buddypress .standard-form input[type="tel"],
#buddypress .standard-form input[type="text"],
#buddypress .standard-form input[type="time"],
#buddypress .standard-form input[type="url"],
#buddypress .standard-form input[type="week"],
#buddypress .standard-form select,
#buddypress .standard-form textarea {
padding: 1em;
width: 100%; }
/* Post layouts */
.post_item_404:not([class*="post_item_none_"]) .page_title {
font-size: 8em; }
.post_item_404 .page_info {
padding-top: 1em; }
.post_item_404 .page_description {
margin-bottom: 2em; }
.post_item_none_search .page_title, .post_item_none_archive .page_title {
font-size: 5em; }
.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
.format-audio .post_featured.with_thumb .post_audio.with_iframe {
bottom: -3px;
left: 0;
right: 0; }
.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls .mejs-horizontal-volume-total {
width: 20px; }
.mejs-controls .mejs-time-rail {
padding-top: 12px; }
.mejs-controls .mejs-horizontal-volume-total {
top: 16px; }
.mejs-container:not(.mejs-video) .mejs-controls, .mejs-container:not(.mejs-video), .trx_addons_audio_player .mejs-container:not(.mejs-video), .format-audio .post_featured .mejs-container,
.post_featured.with_thumb .mejs-container, .post_featured.with_thumb .mejs-controls, .post_featured > div > .mejs-container, .post_featured > div > .mejs-container .mejs-controls, .trx_addons_audio_player.with_cover .mejs-container, .trx_addons_audio_player.with_cover .mejs-controls {
padding: 0 1rem; }
.page_links > span:not(.page_links_title), .page_links > a, .nav-links .page-numbers {
width: 3em;
height: 3em;
line-height: 3em;
text-align: center;
margin: 3px 3px 0 0; }
.breadcrumbs, .post_subtitle {
padding: 0 2rem; }
/* Single post */
.single .post_subtitle + .post_inner,
.post_subtitle + .post_inner {
padding: 2.4rem 2rem 2rem; }
.header-default-content-wrap {
padding: 1rem 2rem; }
.post_item_single > .post_featured {
margin-bottom: 2em; }
.nav-links-single .nav-links, .author_info {
padding: 2em; }
.nav-links-single .nav-links .nav-previous a .nav-text, .nav-links-single .nav-links .nav-next a .nav-text {
padding: .7rem 1.3rem; }
.author_avatar {
position: static;
margin-bottom: 1.5em; }
.author_description {
padding-left: 0; }
.nav-links-single .nav-links .nav-previous {
padding-right: 8px; }
.nav-links-single .nav-links .nav-next {
padding-left: 8px; }
.nav-links-single .nav-links .post-title {
letter-spacing: 0; }
.nav-links-single .nav-links .meta-nav,
.nav-links-single .nav-links .post_date {
font-size: 1em; }
.comments_list_wrap .comment_posted {
font-size: 1em;
display: block;
margin-left: 0; }
.comments_list_wrap li + li, .comments_list_wrap li ul {
margin-top: 2em; }
.comments_list_wrap ul li + li, .comments_list_wrap li > ul > li {
padding-top: 2em; }
.comments_list_wrap ul ul {
margin-left: 2em; }
.comments_list_wrap ul ul ul ul {
margin-left: 0; }
.comments_list_wrap ul li + li > .comment_body > .comment_author_avatar,
.comments_list_wrap li > ul > li > .comment_body > .comment_author_avatar {
top: 0; }
.comments_list_wrap .comment_author_avatar {
position: relative;
top: 0;
left: 0;
margin-bottom: 1.5em; }
.comments_list_wrap .comment_content {
padding-left: 0; }
/* Other minor plugins */
.mfp-title {
line-height: 13px; }
.single .post_subtitle .post_meta .post_meta_item:first-child {
margin-right: 10%; }
.mejs-controls .mejs-button {
height: 2rem;
width: 2rem; }
.mejs-controls .mejs-time-rail {
margin: 0 5px; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_show .post_title {
font-size: 16px;
line-height: 20px; }
.gallery_preview_description {
padding: 0 1.4em; }
.gallery_preview_show .post_meta .post_meta_item {
display: block; }
.gallery_preview_show .post_meta .post_meta_item:before {
display: none; }
/* Front Page Builder */
.front_page_section_buttons > .front_page_section_button {
margin-right: 0; }
/* Theme Hovers */
.post_featured.hover_border .post_info .post_info_back {
padding: 2.5em; }
.post_featured.hover_border .post_info:before,
.post_featured.hover_border .post_info:after {
position: absolute;
z-index: 1;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px; }
.post_featured.hover_border .post_info .post_title {
padding-bottom: 4px; }
/* ThemeREX Addons */
/* Content Area */
.sc_content_width_1_1 {
width: 100% !important; }
.sc_content_width_1_2 {
width: 50% !important; }
.sc_content_width_1_3 {
width: 33.3% !important; }
.sc_content_width_2_3 {
width: 200px !important; }
.sc_content_width_1_4 {
width: 75px !important; }
.sc_content_width_3_4 {
width: 225px !important; }
.widget_contacts .contacts_wrap_icons {
padding: 2.5rem 1.5rem; }
.widget_contacts .contacts_info:not(.show_labels) span.contacts_email, .widget_contacts .contacts_info:not(.show_labels) span.contacts_phone, .widget_contacts .contacts_info:not(.show_labels) a.contacts_phone, .widget_contacts .contacts_info:not(.show_labels) span.contacts_address, .widget_contacts .contacts_info:not(.show_labels) span.contacts_name, .widget_contacts .contacts_info:not(.show_labels) span.contacts_bdate, .widget_contacts .contacts_info:not(.show_labels) a.contacts_site {
padding: 1.367rem 1rem 1.367rem 4.87rem;
background-color: #ffffff;
line-height: 1.1; }
/* SC Skills */
.sc_skills_pie.sc_skills_compact_on .sc_skills_legend_title, .sc_skills_circles .sc_skills_legend_title {
min-width: 30%; }
nav.sc_item_pagination .page-count {
display: inline-block;
margin: 3px 3px 0 0;
float: none;
line-height: 1; }
.trx_addons_scroll_to_top {
display: none !important; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 100%; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 100%; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 310px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 320px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 330px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 340px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 360px; } }
/*# sourceMappingURL=responsive.css.map */ | Modul 4/wp-content/themes/shift-cv/css/responsive.css | ----------------------------------------------------------------------- */
@media (max-width: 595px) {
.content-bookmark {
display: none; }
.single .comments_wrap .comments_form_wrap .comments_form_title,
.single .comments_wrap .comments_list_wrap .comments_list_title,
.single .post_subtitle .post_meta_item:first-child,
.single .post_subtitle .post_meta .post_meta_item:first-child {
margin-left: -3rem; }
.post_subtitle .post_meta_item:first-child a {
margin-left: 0; }
.comments_wrap .comments_field {
display: block;
width: 100%; } }
@media (max-width: 1280px) {
.post_subtitle .post_meta_item:first-child a {
padding-bottom: 1.4rem; } }
@media (min-width: 1025px) and (max-width: 1240px) {
.sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content {
right: -8.8rem; } }
/* SASS Suffix: --md_lg */
@media (min-width: 768px) and (max-width: 1024px) {
.sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content {
right: -7.1rem; }
.widget_contacts .contacts_info:not(.show_labels) span.contacts_email,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_phone,
.widget_contacts .contacts_info:not(.show_labels) a.contacts_phone,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_address,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_name,
.widget_contacts .contacts_info:not(.show_labels) span.contacts_bdate,
.widget_contacts .contacts_info:not(.show_labels) a.contacts_site {
padding: 1.367rem .9rem 1.367rem 4.7rem; }
.widget_contacts .contacts_wrap_icons {
padding: 3.5rem 1.7rem; } }
@media (max-width: 595px) {
.sc_accordionposts .sc_accordionposts_item_top .sc_accordionposts_item_icon {
display: none; }
.sc_accordionposts .sc_accordionposts_item_top .sc_accordionposts_item_subtitle {
margin-left: 0; }
/* Print buttons */
.sc_printbuttons {
display: block;
position: relative;
padding: 2rem 0; }
.sc_printbuttons_out_content .sc_printbuttons_item {
display: inline-block;
position: relative;
width: auto;
margin: 0 1rem 1rem 0; }
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_title {
display: inline-block;
position: relative;
width: auto;
padding: 1.75rem 2rem 1.4rem 0;
z-index: 1; }
.sc_printbuttons_out_content .sc_printbuttons_icon {
position: relative;
float: left; }
.sc_printbuttons,
.sc_printbuttons_out_content.sc_align_center,
.sc_printbuttons_out_content.sc_align_right,
.sc_printbuttons_out_content.sc_align_left,
.sc_accordionposts .stick-to-top .sc_printbuttons,
.sc_accordionposts .stick-to-top .sc_printbuttons {
top: initial;
right: initial;
bottom: initial;
left: initial; }
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_center .sc_printbuttons_item:hover .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_left .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
left: -1px; }
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
right: 1px; }
header .sc_socials {
text-align: center; }
.socials_wrap {
white-space: normal; }
.socials_wrap .social_item:first-child {
margin-left: 0; }
.socials_wrap .social_item {
margin-right: 4px; }
header .sc_printbuttons_out_content,
header .sc_printbuttons_out_content .sc_printbuttons_item {
padding-bottom: 0;
margin-bottom: 0;
margin-right: 0; }
header .sc_printbuttons_out_content {
text-align: right; }
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
width: 3.8rem;
min-width: 3.8rem;
min-height: 3.8rem; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.45rem 1.25rem 1.1rem 0;
height: 3.8rem;
min-height: 3.8rem; }
.content .sc_printbuttons_out_content.sc_align_right a.sc_printbuttons_item {
margin-right: .5rem;
margin-bottom: .5rem; }
.sc_blogger_filters .sc_blogger_filters_titles {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center; }
.sc_blogger_filters .sc_blogger_filters_titles li:first-child {
padding-left: 1em; }
.sc_blogger_filters .sc_blogger_filters_titles li {
padding: 0 1em .8em; }
.widget_contacts .contacts_wrap_icons {
padding: 4.5rem 2rem; } }
@media (max-width: 320px) {
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
width: 3.4rem;
min-width: 3.4rem; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.45rem 1.1rem 1.1rem 0; } }
/* SASS Suffix: --xxl */
@media (max-width: 1679px) {
/* Theme Common styles */
html {
font-size: 14px;
line-height: 164.2857%; }
/* Tags layouts */
table th, table td,
.sc_table table th, .sc_table table td {
padding: 1rem; }
/* Post layouts */
.post_item_404 .post_content {
padding: 9em 0 5em; }
.post_item_none_search .post_content {
padding: 2em 0; } }
/* SASS Suffix: --xl */
@media (max-width: 1439px) {
/* Theme Common styles */
/* Body sizes */
.content_wrap, .content_container {
width: 1030px; }
.body_style_boxed .page_wrap {
width: 1030px; }
.body_style_boxed .header-default-content-wrap,
.body_style_boxed .content_wrap,
.body_style_boxed .content_container {
width: 950px; }
.menu_style_side .menu_side_wrap {
width: 70px; }
body.menu_style_left {
margin-left: 70px; }
body.menu_style_right {
margin-right: 70px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 70px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 70px !important; }
/* Content and Sidebar */
body.body_style_wide:not(.expand_content) [class*="content_wrap"] > .content {
width: 725px; }
body.body_style_boxed:not(.expand_content) [class*="content_wrap"] > .content {
width: 668.6893203883px; }
[class*="content_wrap"] > .sidebar {
width: 300px; }
body.body_style_boxed [class*="content_wrap"] > .sidebar {
width: 276.6990291262px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 90px;
padding-right: 90px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 305px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: -300px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 305px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: -300px; }
/* Header */
.menu_side_icons .toc_menu_item .toc_menu_icon:before {
font-size: 1.8rem; }
/* Mobile menu */
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2857em;
line-height: 1.5em; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 2em;
line-height: 1.5em; }
/* Post layouts */
.post_item_404 .post_content {
padding: 3rem 2em; }
.post_item_none_search .post_content {
padding: 2em 0; }
/* Widgets */
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 3em 0; }
.sidebar[class*="scheme_"] .widget {
padding: 0 3em; }
.sidebar .widget,
.sidebar[class*="scheme_"] .widget {
padding: 3rem 2.5rem; }
.sidebar .widget + .widget,
.sidebar[class*="scheme_"] .widget + .widget {
margin-top: 5px; }
.sidebar .widget + .widget.widget_bg_image,
.sidebar[class*="scheme_"] .widget + .widget.widget_bg_image,
.sidebar .widget + .widget.widget_fullwidth,
.sidebar[class*="scheme_"] .widget + .widget.widget_fullwidth {
padding-top: 3em;
padding-bottom: 3em; }
/* Blog layout: Classic */
.post_layout_classic .post_content {
font-size: 1em; }
/* Blog layout: Masonry */
.masonry_wrap .masonry_item-1_4 {
width: 33.3333%; }
/* Blog layout: Portfolio */
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 33.3333%; }
/* Front Page Builder */
.front_page_section_subscribe_text form.mc4wp-form .mc4wp-form-fields input[type="email"] {
padding: 0.85em 1em; }
/* ThemeREX Addons */
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 950px; }
.body_style_boxed .sc_content_width_1_2 {
width: 475px; }
.body_style_boxed .sc_content_width_1_3 {
width: 316.6666666667px; }
.body_style_boxed .sc_content_width_2_3 {
width: 633.3333333333px; }
.body_style_boxed .sc_content_width_1_4 {
width: 237.5px; }
.body_style_boxed .sc_content_width_3_4 {
width: 712.5px; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1030px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 950px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 1040px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 1050px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 1060px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 1070px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 1090px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 735px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 745px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 755px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 765px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 785px; } }
/* SASS Suffix: --lg */
@media (max-width: 1279px) {
/* Theme Common styles */
html {
font-size: 13px;
line-height: 161.54%; }
h1, .front_page_section_caption {
font-size: 36px;
line-height: 50px;
margin-top: 36px;
margin-bottom: 20px;
letter-spacing: 0; }
h2 {
font-size: 32px;
line-height: 45px;
margin-top: 42px;
margin-bottom: 24px;
letter-spacing: 0; }
h3 {
font-size: 24px;
line-height: 34px;
margin-top: 40px;
margin-bottom: 22px;
letter-spacing: 0; }
h4 {
font-size: 20px;
line-height: 28px;
margin-top: 32px;
margin-bottom: 18px;
letter-spacing: 0; }
h5 {
font-size: 16px;
line-height: 22px;
margin-top: 30px;
margin-bottom: 16px;
letter-spacing: 0; }
h6 {
font-size: 14px;
line-height: 20px;
margin-top: 28px;
margin-bottom: 12px;
letter-spacing: 0; }
p, ul, ol, dl, blockquote, address {
margin-bottom: 1em; }
/* Body sizes */
.body_style_boxed .page_wrap {
width: 100%; }
.header-default-content-wrap,
.content_wrap,
.content_container {
width: 890px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 830px !important; }
.menu_style_side .menu_side_wrap {
width: 60px; }
body.menu_style_left {
margin-left: 60px !important; }
body.menu_style_right {
margin-right: 60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 60px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 60px !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 626.4563106796px; }
body.menu_style_side:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 566.4563106796px; }
[class*="content_wrap"] > .sidebar,
body.body_style_boxed [class*="content_wrap"] > .sidebar {
width: 259.2233009709px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 50px;
padding-right: 50px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 263.5436893204px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: -259.2233009709px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 263.5436893204px; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: -259.2233009709px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 15px;
padding-right: 15px; }
.row, .columns_wrap, .trx_addons_columns_wrap {
margin-right: -30px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 30px; }
.vc_row.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left {
margin-left: -30px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 30px; }
.vc_row.columns_padding_right,
.row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -30px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"], .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 30px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -15px;
margin-right: -15px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 15px;
padding-right: 15px; }
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom,
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom {
padding-bottom: 30px; }
hr, .vc_separator {
margin: 4em 0 !important; }
/* Header */
.menu_side_wrap .sc_layouts_logo {
padding: 55% 8%; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 1px;
padding: 0 2em; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 1.2308em;
line-height: 1.5em; }
/* Buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.theme_button,
.post_item .more-link,
.gallery_preview_show .post_readmore,
.shift_cv_tabs .shift_cv_tabs_titles li a,
#buddypress .comment-reply-link,
#buddypress .generic-button a,
#buddypress a.button,
#buddypress button,
#buddypress input[type="button"],
#buddypress input[type="reset"],
#buddypress input[type="submit"],
#buddypress ul.button-nav li a,
#buddypress div.activity-meta a,
a.bp-title-button,
body #booked-profile-page input[type="submit"],
body #booked-profile-page button,
body .booked-list-view input[type="submit"],
body .booked-list-view button,
body table.booked-calendar input[type="submit"],
body table.booked-calendar button,
body .booked-modal input[type="submit"],
body .booked-modal button,
.edd_download_purchase_form .button,
#edd-purchase-button,
.edd-submit.button,
.widget_edd_cart_widget .edd_checkout a,
form.mc4wp-form .mc4wp-form-fields input[type="submit"],
.sc_button,
.sc_layouts_row .sc_button,
.sc_form button,
.tourmaster-tour-search-wrap input.tourmaster-tour-search-submit[type="submit"],
#tribe-bar-form .tribe-bar-submit input[type="submit"],
#tribe-bar-form button,
#tribe-bar-form a,
#tribe-bar-form input,
#tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a,
.tribe-bar-mini #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a,
#tribe-events .tribe-events-button,
.tribe-events-button,
.tribe-events-cal-links a,
.tribe-events-sub-nav li a,
.tribe-events-read-more,
#tribe-events-footer ~ a.tribe-events-ical.tribe-events-button {
font-size: 14px;
line-height: 14px;
padding: 1.3em 2.5em 1.05em;
letter-spacing: 0; }
.sc_button_simple {
padding: 0 1.8em 0 0; }
/* Tab buttons */
div.esg-filter-wrapper .esg-filterbutton > span,
.mptt-navigation-tabs li a,
div.shift_cv_tabs .shift_cv_tabs_titles li a,
div.shift_cv_tabs .shift_cv_tabs_titles li a.ui-tabs-anchor {
padding: 1em 1.25em; }
/* Post layouts */
.post_item .more-link {
margin-top: 2em; }
/* Single post */
.comments_list_wrap .comment_posted {
font-size: 1em; }
/* Widgets */
.widget .widgettitle {
font-size: 16px;
line-height: 20px; }
.sc_edd_details .downloads_page_tags .downloads_page_data > a,
.widget_product_tag_cloud a,
.widget_tag_cloud a {
letter-spacing: 0; }
/* Video players */
.trx_addons_video_player.with_cover .video_hover,
.format-video .post_featured.with_thumb .post_video_hover {
-webkit-transition: none;
-ms-transition: none;
transition: none;
opacity: 1;
margin-top: -1em; }
.trx_addons_video_player.with_cover:hover .video_hover {
margin-top: -1em; }
.format-video .post_featured.with_thumb:hover .post_video_hover {
margin-top: -1.55em; }
.trx_addons_video_player.with_cover .video_hover,
.body_style_fullwide .format-video .post_featured.with_thumb .post_video_hover,
.post_layout_excerpt.format-video .post_featured.with_thumb .post_video_hover,
.post_layout_chess_1.format-video .post_featured.with_thumb .post_video_hover {
width: 5rem;
height: 5rem;
line-height: 5rem;
text-align: center; }
.format-video .post_featured.with_thumb .post_video_hover {
margin: -1.55em 0 0 -1.5em; }
.trx_addons_video_player.with_cover .video_hover {
margin: -1em 0 0 -1.5em; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
font-size: 2em;
line-height: 1.5em; }
/* Blog layout: Classic */
.post_layout_classic blockquote {
padding: 2.5em 2.5em 2.5em 5em; }
.post_layout_classic blockquote:before {
top: 1.2em;
left: 0.8em; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_show .post_readmore {
margin-top: 2em; }
/* Front Page Builder */
.front_page_section_subscribe_text form.mc4wp-form .mc4wp-form-fields input[type="email"] {
padding: 0.8em 1em; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
height: 540px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
height: 270px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
height: 135px; }
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 890px; }
.body_style_boxed .sc_content_width_1_2 {
width: 445px; }
.body_style_boxed .sc_content_width_1_3 {
width: 296.6666666667px; }
.body_style_boxed .sc_content_width_2_3 {
width: 593.3333333333px; }
.body_style_boxed .sc_content_width_1_4 {
width: 222.5px; }
.body_style_boxed .sc_content_width_3_4 {
width: 667.5px; }
/* Content Area with Side Menu */
.menu_style_side .sc_content_width_1_1 {
width: 830px; }
.menu_style_side .sc_content_width_1_2 {
width: 415px; }
.menu_style_side .sc_content_width_1_3 {
width: 276.6666666667px; }
.menu_style_side .sc_content_width_2_3 {
width: 553.3333333333px; }
.menu_style_side .sc_content_width_1_4 {
width: 207.5px; }
.menu_style_side .sc_content_width_3_4 {
width: 622.5px; }
.body_style_boxed #theme_switcher {
left: 5px; }
.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 35px);
height: -webkit-calc(100% - 35px);
height: calc(100% - 35px); }
/* Testimonials */
.sc_blogger_testimonials .trx_addons_columns_wrap.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon,
.sc_blogger_testimonials .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 1.7rem);
height: -webkit-calc(100% - 1.7rem);
height: calc(100% - 1.7rem); }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 890px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 890px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 900px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 910px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 920px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 930px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 950px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 636.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 646.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 656.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 666.4563106796px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 686.4563106796px; } }
/* SASS Suffix: --md */
@media (max-width: 1023px) {
/* Theme Common styles */
h1, .front_page_section_caption {
font-size: 32px;
line-height: 46px;
margin-top: 30px;
margin-bottom: 16px; }
h2 {
font-size: 28px;
line-height: 38px;
margin-top: 38px;
margin-bottom: 20px; }
h3 {
font-size: 22px;
line-height: 30px;
margin-top: 36px;
margin-bottom: 18px; }
h4 {
font-size: 18px;
line-height: 26px;
margin-top: 30px;
margin-bottom: 16px; }
h5 {
font-size: 16px;
line-height: 22px;
margin-top: 28px;
margin-bottom: 14px; }
h6 {
font-size: 14px;
line-height: 20px;
margin-top: 24px;
margin-bottom: 10px; }
/* Body sizes */
.header-default-content-wrap,
.content_wrap,
.content_container {
width: 625px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 565px !important; }
.menu_style_side .menu_side_wrap {
width: 60px; }
body.menu_style_left {
margin-left: 60px; }
body.menu_style_right {
margin-right: 60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 60px !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 60px !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
width: 100% !important;
float: none; }
[class*="content_wrap"] > .sidebar {
width: 100% !important;
float: none;
margin-top: 4em; }
.post_subtitle + .post_inner {
padding: 2.88rem 4rem 4rem; }
.single .post_subtitle + .post_inner {
padding: 3.36rem 4rem 4rem; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 30px;
padding-right: 30px; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .content {
padding-right: 0 !important;
float: none; }
.body_style_fullwide.sidebar_right [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_right [class*="content_wrap"] > .sidebar {
margin-left: 0 !important;
float: none; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .content,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .content {
padding-left: 0 !important;
float: none; }
.body_style_fullwide.sidebar_left [class*="content_wrap"] > .sidebar,
.body_style_fullscreen.sidebar_left [class*="content_wrap"] > .sidebar {
margin-right: 0 !important;
float: none; }
/* Leave max 5 columns in the gallery */
.gallery.gallery-columns-9 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 20% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 20% !important; }
/* Header */
body.no_layout.menu_style_left {
margin-left: 0; }
body.no_layout.menu_style_right {
margin-right: 0; }
body.no_layout.menu_style_right .menu_side_wrap {
right: -6rem; }
body.no_layout.menu_style_left .menu_side_wrap {
left: -6rem; }
body.no_layout.menu_style_left .sc_layouts_row_fixed_on {
padding-left: 0; }
body.no_layout.menu_style_right .sc_layouts_row_fixed_on {
padding-right: 0; }
body.no_layout.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 0 !important; }
body.no_layout.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 0 !important; }
.top_panel.with_bg_image {
min-height: 20em; }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
margin-bottom: 1em !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 12px !important; }
/* Mobile menu */
.menu_mobile .menu_mobile_nav_area {
position: relative;
top: auto;
margin: 3em 0 0;
max-height: none;
padding-right: 0;
overflow-y: visible;
-webkit-transform: none;
-ms-transform: none;
transform: none; }
.menu_mobile .menu_mobile_inner {
overflow-y: auto; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 1.5em;
line-height: 1.5em; }
.menu_mobile .search_mobile {
position: relative;
bottom: auto;
left: 0;
margin: 3em auto 0; }
.menu_mobile .socials_mobile {
position: relative;
bottom: auto;
margin: 1em 0 0; }
.menu_mobile .sc_layouts_logo {
margin-top: 4em; }
/* Tags layouts */
hr, .vc_separator {
margin: 3em 0 !important; }
/* Post layouts */
.post_item_404:not([class*="post_item_none_"]) .page_title {
font-size: 9em;
line-height: 1em; }
.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
/* Widgets */
.sidebar .sidebar_inner {
padding: 30px 0;
margin-right: -5px; }
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 30px 15px; }
.sidebar .widget, .sidebar[class*="scheme_"] .widget {
display: inline-block;
float: none;
vertical-align: top;
width: 49.2%;
margin-right: 5px;
-webkit-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box; }
.sidebar .widget + .widget, .sidebar[class*="scheme_"] .widget + .widget {
margin-right: 5px;
margin-bottom: 5px;
margin-top: 0;
border-top-width: 0; }
.footer_wrap .widget,
.footer_wrap .widget + .widget + .widget,
.sidebar .widget,
.sidebar .widget + .widget + .widget,
.sidebar[class*="scheme_"] .widget + .widget + .widget {
margin-bottom: 5px !important; }
.widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 50%; }
.footer_wrap .sc_content .wpb_column:not(.vc_col-sm-12) {
width: 50% !important;
float: none;
display: inline-block;
vertical-align: top; }
.footer_wrap .sc_content .wpb_column + .wpb_column + .wpb_column {
margin-top: 30px !important;
padding-top: 30px !important;
border-top-width: 1px;
border-top-style: solid; }
.header_fullwidth .widget,
.footer_fullwidth .widget {
width: 100% !important;
display: block !important;
margin-left: 0 !important;
margin-bottom: 0 !important; }
.column-1_2 .mejs-controls .mejs-button,
.column-1_3 .mejs-controls .mejs-button,
.column-1_4 .mejs-controls .mejs-button {
margin-right: 0; }
.column-1_2 .mejs-controls .mejs-button.mejs-volume-button,
.column-1_3 .mejs-controls .mejs-button.mejs-volume-button,
.column-1_4 .mejs-controls .mejs-button.mejs-volume-button {
margin-left: 0; }
.mejs-controls .mejs-time {
font-size: 12px; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
font-size: 1.75em;
line-height: 1.5em; }
/* Blog layout: Classic */
.post_layout_classic blockquote {
padding: 2em 2em 2em 5em; }
.post_layout_classic blockquote:before {
top: 1.1em;
left: 0.7em; }
.post_layout_classic blockquote p {
font-size: 15px; }
.post_layout_classic blockquote > a, .post_layout_classic blockquote > p > a,
.post_layout_classic blockquote > cite, .post_layout_classic blockquote > p > cite {
font-size: 13px; }
.post_layout_classic .swiper-container-horizontal > .swiper-pagination,
.post_layout_classic .slider_outer > .swiper-pagination {
bottom: 6px; }
.post_layout_classic .slider_container .swiper-pagination-bullet,
.post_layout_classic .slider_outer .swiper-pagination-bullet {
width: 6px;
height: 6px;
line-height: 6px;
text-align: center;
border-width: 1px; }
.post_layout_classic.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
.post_layout_classic.post_format_audio .mejs-time {
display: none; }
/* Blog layout: Masonry */
.masonry_wrap {
margin-right: -30px; }
.masonry_wrap .masonry_item {
padding: 0 30px 0 0; }
.masonry_wrap .post_layout_masonry {
margin-bottom: 30px; }
.masonry_wrap .masonry_item-1_3,
.masonry_wrap .masonry_item-1_4 {
width: 50%; }
/* Blog layout: Portfolio */
.portfolio_wrap {
margin-right: -30px; }
.post_layout_portfolio {
padding: 0 30px 30px 0; }
.portfolio_wrap.portfolio_3 .post_layout_portfolio,
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 50%; }
/* Blog layout: Portfolio Gallery */
.gallery_preview .post_description_content {
display: none !important; }
.gallery_preview_description {
padding: 0 2em; }
.gallery_preview_show .post_readmore {
margin-top: 0; }
/* Front Page Builder */
.front_page_section_subscribe_content .front_page_section_text {
max-width: none; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
width: 100%;
height: 198px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
width: 100%;
height: 198px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
width: 100%;
height: 198px; }
/* Content Area on boxed pages */
.body_style_boxed .sc_content_width_1_1 {
width: 625px; }
.body_style_boxed .sc_content_width_1_2 {
width: 312.5px; }
.body_style_boxed .sc_content_width_1_3 {
width: 208.3333333333px; }
.body_style_boxed .sc_content_width_2_3 {
width: 416.6666666667px; }
.body_style_boxed .sc_content_width_1_4 {
width: 156.25px; }
.body_style_boxed .sc_content_width_3_4 {
width: 468.75px; }
/* Content Area with Side Menu */
.menu_style_side .sc_content_width_1_1 {
width: 565px; }
.menu_style_side .sc_content_width_1_2 {
width: 282.5px; }
.menu_style_side .sc_content_width_1_3 {
width: 188.3333333333px; }
.menu_style_side .sc_content_width_2_3 {
width: 376.6666666667px; }
.menu_style_side .sc_content_width_1_4 {
width: 141.25px; }
.menu_style_side .sc_content_width_3_4 {
width: 423.75px; }
/* Testimonials */
.sc_blogger_testimonials .sc_blogger_item_content {
display: block; }
.sc_blogger_testimonials .sc_testimonials_item_author_avatar + .sc_blogger_item_excerpt {
width: 100%; }
.sc_blogger_item .sc_supertitle .sc_supertitle_icon_empty_column,
.sc_supertitle .sc_supertitle_icon_empty_column {
position: relative; }
.widget_contacts .contacts_wrap_icons {
min-height: 0;
padding: 3.5rem 2rem; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 625px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 625px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 635px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 645px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 655px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 665px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 685px; }
/* Pages with sidebar */
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 635px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 645px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 655px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 665px; }
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 685px; } }
/* SASS Suffix: --sm */
@media (max-width: 767px) {
/* Theme Common styles */
h1, .front_page_section_caption {
font-size: 28px;
line-height: 36px;
margin-top: 32px;
margin-bottom: 18px; }
h2 {
font-size: 26px;
line-height: 32px;
margin-top: 30px;
margin-bottom: 18px; }
h3 {
font-size: 22px;
line-height: 28px;
margin-top: 28px;
margin-bottom: 18px; }
h4 {
font-size: 18px;
line-height: 22px;
margin-top: 26px;
margin-bottom: 16px; }
h5 {
font-size: 16px;
line-height: 20px;
margin-top: 24px;
margin-bottom: 14px; }
h6 {
font-size: 14px;
line-height: 18px;
margin-top: 22px;
margin-bottom: 10px; }
/* Body sizes */
.content_wrap, .header-default-content-wrap,
.content_container {
width: 440px !important; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 440px !important; }
.menu_style_side .menu_side_wrap {
width: 60px !important; }
body.mobile_layout.menu_style_left .menu_side_wrap {
left: -60px; }
body.mobile_layout.menu_style_right .menu_side_wrap {
right: -60px; }
.menu_style_left .sc_layouts_row_fixed_on {
margin-left: 0 !important; }
.menu_style_right .sc_layouts_row_fixed_on {
margin-right: 0 !important; }
/* Content and Sidebar */
body:not(.expand_content):not(.body_style_fullwide):not(.body_style_fullscreen) [class*="content_wrap"] > .content {
margin-bottom: 0; }
[class*="content_wrap"] > .sidebar {
margin-top: 3em; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 20px;
padding-right: 20px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 10px;
padding-right: 10px; }
.row,
.columns_wrap,
.trx_addons_columns_wrap {
margin-right: -20px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 20px; }
.vc_row.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left {
margin-left: -20px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 20px; }
.vc_row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.row.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -20px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 20px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -10px;
margin-right: -10px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 10px;
padding-right: 10px; }
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 20px; }
.row:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+3),
.row:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+4),
.columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="column-"]:nth-child(2n+4),
.trx_addons_columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+3),
.trx_addons_columns_wrap:not(.columns_padding_bottom):not(.columns_fluid) > [class*="trx_addons_column-"]:nth-child(2n+4) {
padding-top: 20px; }
/* Max column's width in the row */
.row:not(.columns_fluid) > [class*="column-"],
.columns_wrap:not(.columns_fluid) > [class*="column-"],
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"] {
width: 100%; }
.trx_addons_columns_wrap:not(.columns_fluid) > .sc_supertitle_right_column[class*="trx_addons_column-"] {
text-align: left; }
.wpcf7 .columns_wrap {
white-space: normal;
letter-spacing: 0; }
.row:not(.columns_fluid) > .column-1_1, .row:not(.columns_fluid) > .column-2_2, .row:not(.columns_fluid) > .column-3_3, .row:not(.columns_fluid) > .column-4_4,
.row:not(.columns_fluid) > .column-5_5, .row:not(.columns_fluid) > .column-6_6, .row:not(.columns_fluid) > .column-7_7, .row:not(.columns_fluid) > .column-8_8,
.row:not(.columns_fluid) > .column-9_9, .row:not(.columns_fluid) > .column-10_10,
.row:not(.columns_fluid) > .column-11_11, .row:not(.columns_fluid) > .column-12_12,
.columns_wrap:not(.columns_fluid) > .column-1_1, .columns_wrap:not(.columns_fluid) > .column-2_2, .columns_wrap:not(.columns_fluid) > .column-3_3,
.columns_wrap:not(.columns_fluid) > .column-4_4, .columns_wrap:not(.columns_fluid) > .column-5_5, .columns_wrap:not(.columns_fluid) > .column-6_6,
.columns_wrap:not(.columns_fluid) > .column-7_7, .columns_wrap:not(.columns_fluid) > .column-8_8, .columns_wrap:not(.columns_fluid) > .column-9_9,
.columns_wrap:not(.columns_fluid) > .column-10_10, .columns_wrap:not(.columns_fluid) > .column-11_11, .columns_wrap:not(.columns_fluid) > .column-12_12,
.row:not(.columns_fluid) > .column-2_3, .columns_wrap:not(.columns_fluid) > .column-2_3,
.row:not(.columns_fluid) > .column-1_3.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_3.after_span_2,
.row:not(.columns_fluid) > .column-2_4, .columns_wrap:not(.columns_fluid) > .column-3_4,
.row:not(.columns_fluid) > .column-1_4.after_span_2, .columns_wrap:not(.columns_fluid) > .column-1_4.after_span_3,
.row:not(.columns_fluid) > .column-2_5, .columns_wrap:not(.columns_fluid) > .column-2_5,
.row:not(.columns_fluid) > .column-3_5, .columns_wrap:not(.columns_fluid) > .column-3_5,
.row:not(.columns_fluid) > .column-4_5, .columns_wrap:not(.columns_fluid) > .column-4_5,
.row:not(.columns_fluid) > .column-2_6, .columns_wrap:not(.columns_fluid) > .column-2_6,
.row:not(.columns_fluid) > .column-3_6, .columns_wrap:not(.columns_fluid) > .column-3_6,
.row:not(.columns_fluid) > .column-4_6, .columns_wrap:not(.columns_fluid) > .column-4_6,
.row:not(.columns_fluid) > .column-5_6, .columns_wrap:not(.columns_fluid) > .column-5_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_1, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_3, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_5, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-6_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-7_7, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-8_8,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-9_9, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-10_10,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-11_11, .trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-12_12,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_3,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_3.after_span_2,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_4,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-1_4.after_span_3,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_5,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-2_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-3_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-4_6,
.trx_addons_columns_wrap:not(.columns_fluid) > .trx_addons_column-5_6 {
width: 100%; }
/* WP Gallery Grid */
.gallery.gallery-columns-9 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-5 .gallery-item {
width: 33.3333% !important; }
.gallery.gallery-columns-4 .gallery-item {
width: 33.3333% !important; }
img.alignleft, img.alignright,
figure.alignleft, figure.alignright {
float: none;
display: block;
margin: 1em auto !important; }
/* Vertical menus */
.sc_layouts_menu_dir_vertical .sc_layouts_menu_nav li.menu-item-has-children > a + .open_child_menu {
display: inline-block; }
/* Header */
.menu_side_icons .toc_menu_item .toc_menu_icon:before {
font-size: 1.5em; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 1px;
padding: 0 1.5em; }
/* Search */
.search_style_fullscreen.search_opened .search_form {
width: 75%; }
.search_style_fullscreen.search_opened .search_submit,
.search_style_fullscreen.search_opened .search_field,
.search_style_fullscreen.search_opened .search_close {
font-size: 1.5em !important;
height: 2.5em;
line-height: 2.5em; }
.search_style_fullscreen.search_opened .search_field {
padding-right: 1.25em !important; }
.search_style_fullscreen.search_opened .search_close {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%); }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
font-size: 14px !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 11px !important; }
/* Widgets */
.sidebar .sidebar_inner {
padding: 20px 0; }
.sidebar[class*="scheme_"] .sidebar_inner {
padding: 20px 10px; }
.sidebar .widget,
.sidebar[class*="scheme_"] .widget {
width: 100%; }
.widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 50%; }
.footer_wrap .sc_content .wpb_column + .wpb_column + .wpb_column {
margin-top: 20px !important;
padding-top: 20px !important; }
/* Tabs */
.shift_cv_tabs .shift_cv_tabs_titles {
margin: 0 0 2em; }
/* Post layouts */
.post_item_404 .page_title {
font-size: 12em;
line-height: 1em;
float: none;
width: 100%;
text-align: center; }
.post_item_none_search .page_title,
.post_item_none_archive .page_title {
font-size: 6em; }
.post_item_404 .page_info {
padding: 2em;
width: 100%;
text-align: center; }
.post_item_404 .page_description {
line-height: 1.7em; }
.post_item_404 .go_home {
padding: 1em 2em; }
blockquote > a, blockquote > p > a, blockquote > cite, blockquote > p > cite {
margin-top: 1.5em; }
/* Single post */
.post_item_single .post_content > .post_meta_single .post_tags,
.post_item_single .post_content > .post_meta_single .post_share {
max-width: none;
float: none;
margin-top: 0; }
.post_item_single .post_content > .post_meta_single .post_share {
margin-top: 2em; }
.nav-links-single .nav-links .nav-next a,
.nav-links-single .nav-links .nav-previous a {
padding: 0; }
.nav-links-single .nav-links a .nav-arrow {
position: static;
left: auto;
top: auto;
right: auto;
display: inline-block;
margin-bottom: 1em; }
.sc_layouts_menu.inited,
.sc_layouts_menu > nav {
overflow: hidden;
visibility: hidden;
max-height: 0; }
/* Other minor plugins */
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
max-width: 100%;
max-height: 100%; }
.mfp-arrow-left {
margin-top: -41px; }
.post_subtitle {
padding: 0 3rem; }
.post_subtitle .post_meta_item:first-child {
margin-right: 0;
margin-left: -3rem;
display: block; }
.single .post_subtitle .post_meta_item:first-child {
display: inline-block;
padding: 1.9rem 3rem 1.4rem 3rem;
margin-right: 40%;
margin-left: -2.85rem;
margin-left: -webkit-calc(-3rem + 2px);
margin-left: -moz-calc(-3rem + 2px);
margin-left: calc(-3rem + 2px); }
.post_subtitle .post_meta_item:first-child a {
padding: 1.9rem 3rem 1.4rem; }
.post_subtitle .post_meta_item:not(:first-child) {
padding: 1.5rem 2.4rem 0 0; }
.post_subtitle .post_meta_item.post_author {
padding-right: 1rem; }
.post_subtitle .post_meta_item.post_counters_item {
padding-left: 0; }
.single .post_subtitle + .post_inner,
.post_subtitle + .post_inner {
padding: 2.4rem 3rem 3rem; }
.header-default-content-wrap {
padding: 1rem 3rem; }
.single .comments_form_wrap .comments_form_title,
.single .comments_list_wrap .comments_list_title,
.single .post_subtitle .post_meta_item:first-child {
margin-left: -2.85rem;
margin-left: -webkit-calc(-3rem + 2px);
margin-left: -moz-calc(-3rem + 2px);
margin-left: calc(-3rem + 2px); }
.comments_form_wrap,
.comments_list_wrap {
padding: 0 3rem 3rem; }
.nav-links-single .nav-links {
padding: 2.4rem 3rem 3rem; }
.author_info {
padding: 2.4em 3em 3em; }
.post_meta .post_meta_label {
display: block; }
.post_featured.with_thumb .mejs-container, .post_featured.with_thumb .mejs-controls, .post_featured > div > .mejs-container,
.post_featured > div > .mejs-container .mejs-controls, .trx_addons_audio_player.with_cover .mejs-container,
.trx_addons_audio_player.with_cover .mejs-controls {
padding: 0 1rem; }
.mejs-controls .mejs-horizontal-volume-total,
.mejs-controls .mejs-horizontal-volume-slider {
width: 35px; }
.mejs-controls .mejs-button {
margin-right: .5rem; }
.mejs-controls .mejs-button.mejs-volume-button {
margin-left: 0.5rem; }
.esg-pagination, .esg-filters {
text-align: center !important; }
div.esg-filter-wrapper .esg-filterbutton,
div.esg-filter-wrapper .esg-filterbutton + .esg-filterbutton {
margin-left: .7rem;
margin-right: .7rem; }
.responsive-centered {
text-align: center !important; }
.footer_copyright_inner {
text-align: center;
padding-bottom: 3.5rem; }
.footer_copyright_inner .copyright_text {
padding: 0 3rem; }
/* Blog layout: Excerpt */
.post_layout_excerpt .post_header .post_price {
position: static;
right: auto;
top: auto;
margin-top: 0.3em; }
.post_layout_excerpt .post_header + .post_content {
margin-top: 1.5em; }
.post_layout_excerpt blockquote {
padding: 2em 2em 2em 4em;
margin-left: 0;
margin-right: 0; }
.post_layout_excerpt blockquote:before {
top: 1.3em;
left: 1em; }
/* Blog layout: Masonry */
.masonry_wrap {
margin-right: 0; }
.masonry_wrap .masonry_item {
padding: 0; }
.masonry_wrap .post_layout_masonry {
margin-bottom: 1.5em; }
.masonry_wrap .masonry_item-1_2,
.masonry_wrap .masonry_item-1_3,
.masonry_wrap .masonry_item-1_4 {
width: 100%; }
/* Blog layout: Portfolio */
.portfolio_wrap {
margin-right: 0; }
.post_layout_portfolio {
padding: 0 0 1.5em 0; }
.portfolio_wrap.portfolio_2 .post_layout_portfolio,
.portfolio_wrap.portfolio_3 .post_layout_portfolio,
.portfolio_wrap.portfolio_4 .post_layout_portfolio {
width: 100%; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_description {
padding: 0 1.6em; }
/* Front Page Builder */
.front_page_section_paddings_small .front_page_section_content_wrap {
padding: 15% 0; }
.front_page_section_paddings_medium .front_page_section_content_wrap {
padding: 20% 0; }
.front_page_section_paddings_large .front_page_section_content_wrap {
padding: 25% 0; }
.front_page_section_paddings_huge .front_page_section_content_wrap {
padding: 30% 0; }
.front_page_section_title_description {
line-height: 1.5em; }
.front_page_section_subscribe .front_page_section_output {
max-width: none; }
/* ThemeREX Addons */
/* Recent News on expanded pages */
body.expand_content .sc_recent_news_style_news-announce .post_size_full {
width: 100%;
height: 124px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_big {
width: 100%;
height: 124px; }
body.expand_content .sc_recent_news_style_news-announce .post_size_medium,
body.expand_content .sc_recent_news_style_news-announce .post_size_small {
width: 100%;
height: 124px; }
/* Content Area */
.sc_content_width_1_1 {
width: 440px !important; }
.sc_content_width_1_2 {
width: 220px !important; }
.sc_content_width_1_3 {
width: 146.6666666667px !important; }
.sc_content_width_2_3 {
width: 293.3333333333px !important; }
.sc_content_width_1_4 {
width: 110px !important; }
.sc_content_width_3_4 {
width: 330px !important; }
.sc_accordionposts_item_header .vertical-middle {
display: block;
text-align: center; }
/* SC Super Title */
.sc_supertitle .trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"] {
padding-bottom: 15px; }
.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 17px);
height: -webkit-calc(100% - 17px);
height: calc(100% - 17px); }
/* Testimonials */
.sc_blogger_testimonials .trx_addons_columns_wrap.columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon,
.sc_blogger_testimonials .trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom.sc_supertitle_icon_empty_column .sc_supertitle_no_icon {
height: -moz-calc(100% - 1.4rem);
height: -webkit-calc(100% - 1.4rem);
height: calc(100% - 1.4rem); }
/* Print buttons */
.content .sc_printbuttons {
display: block;
position: relative;
padding: 2rem 0; }
.content .sc_printbuttons_out_content.sc_align_right {
text-align: left; }
.content .sc_printbuttons_out_content .sc_printbuttons_item {
display: inline-block;
position: relative;
width: auto;
margin: 0 1rem 1rem 0; }
.content .sc_printbuttons_out_content .sc_printbuttons_title {
display: inline-block;
position: relative;
width: auto;
padding: 1.75rem 2rem 1.4rem 0;
z-index: 1; }
.content .sc_printbuttons_out_content .sc_printbuttons_title:hover {
padding: 1.75rem 2rem 1.4rem 0; }
.content .sc_printbuttons_out_content .sc_printbuttons_icon {
position: relative;
float: left; }
.content .sc_printbuttons_out_content.sc_align_right,
.content .sc_printbuttons_out_content.sc_align_left,
.content .sc_accordionposts .sc_accordionposts_item_inner .sc_printbuttons_out_content,
.content .sc_accordionposts .stick-to-top .sc_printbuttons,
.content .sc_accordionposts .stick-to-top .sc_printbuttons {
top: initial;
right: initial;
bottom: initial;
left: initial; }
.content .sc_printbuttons_out_content .sc_printbuttons_item:hover .sc_printbuttons_title {
padding: 1.75rem 2rem 1.4rem 0;
right: 0; }
.content .sc_printbuttons .sc_printbuttons_icon, .content .sc_printbuttons .sc_printbuttons_item_title {
-webkit-transition: none;
-ms-transition: none;
transition: none; }
.content .sc_printbuttons_out_content.sc_align_right .sc_printbuttons_title {
right: 0; }
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item .sc_printbuttons_title,
.sc_printbuttons_out_content.sc_align_right .sc_printbuttons_item:hover .sc_printbuttons_title {
font-size: 14px; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 440px; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 440px; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 450px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 460px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 470px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 480px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 500px; } }
/* SASS Suffix: --xs */
@media (max-width: 480px) {
/* Theme Common styles */
html {
font-size: 13px;
line-height: 153.84615%; }
h1, .front_page_section_caption {
font-size: 28px;
line-height: 36px;
margin-top: 32px;
margin-bottom: 20px; }
h2 {
font-size: 24px;
line-height: 32px;
margin-top: 30px;
margin-bottom: 18px; }
h3 {
font-size: 20px;
line-height: 26px;
margin-top: 28px;
margin-bottom: 16px; }
h4 {
font-size: 17px;
line-height: 22px;
margin-top: 24px;
margin-bottom: 14px; }
h5 {
font-size: 15px;
line-height: 20px;
margin-top: 22px;
margin-bottom: 10px; }
h6 {
font-size: 13px;
line-height: 18px;
margin-top: 20px;
margin-bottom: 8px; }
.widget .widgettitle {
font-size: 15px;
line-height: 18px; }
figure figcaption {
font-size: 12px; }
/* Body sizes */
.header-default-content-wrap, .content_wrap, .content_container {
width: 100% !important; }
/* Content and Sidebar */
[class*="content_wrap"] > .sidebar {
margin-top: 3.5em; }
.menu_style_side .header-default-content-wrap,
.menu_style_side .content_wrap,
.menu_style_side .content_container {
width: 300px !important; }
.menu_style_side .menu_side_wrap {
width: 60px !important; }
body.mobile_layout.menu_style_left .menu_side_wrap {
left: -60px; }
body.mobile_layout.menu_style_right .menu_side_wrap {
right: -60px; }
/* Fullwide or Fullscreen with sidebar */
.body_style_fullwide .content_wrap {
padding-left: 20px;
padding-right: 20px; }
/* Grid */
.container, .container-fluid,
.trx_addons_container, .trx_addons_container-fluid {
padding-left: 10px;
padding-right: 10px; }
.row,
.columns_wrap,
.trx_addons_columns_wrap {
margin-right: -20px; }
.row > [class*="column-"],
.columns_wrap > [class*="column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"] {
padding-right: 20px; }
.vc_row.columns_padding_left,
.trx_addons_columns_wrap.columns_padding_left,
.row.columns_padding_left,
.columns_wrap.columns_padding_left {
margin-left: -20px; }
.vc_row.columns_padding_left .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_left > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_left,
.row.columns_padding_left > [class*="column-"], .columns_wrap.columns_padding_left > [class*="column-"],
.row > [class*="column-"].columns_padding_left, .columns_wrap > [class*="column-"].columns_padding_left {
padding-left: 20px; }
.vc_row.columns_padding_right,
.trx_addons_columns_wrap.columns_padding_right,
.row.columns_padding_right,
.columns_wrap.columns_padding_right {
margin-right: -20px; }
.vc_row.columns_padding_right .vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_right > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_right,
.row.columns_padding_right > [class*="column-"], .columns_wrap.columns_padding_right > [class*="column-"],
.row > [class*="column-"].columns_padding_right, .columns_wrap > [class*="column-"].columns_padding_right {
padding-right: 20px; }
.vc_row,
.trx_addons_columns_wrap.columns_padding_center,
.row.columns_padding_center,
.columns_wrap.columns_padding_center {
margin-left: -10px;
margin-right: -10px; }
.vc_column_container > .vc_column-inner,
.trx_addons_columns_wrap.columns_padding_center > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_center,
.row.columns_padding_center > [class*="column-"], .columns_wrap.columns_padding_center > [class*="column-"],
.row > [class*="column-"].columns_padding_center, .columns_wrap > [class*="column-"].columns_padding_center {
padding-left: 10px;
padding-right: 10px; }
.row.columns_padding_bottom > [class*="column-"], .columns_wrap.columns_padding_bottom > [class*="column-"],
.row > [class*="column-"].columns_padding_bottom, .columns_wrap > [class*="column-"].columns_padding_bottom,
.trx_addons_columns_wrap.columns_padding_bottom > [class*="trx_addons_column-"],
.trx_addons_columns_wrap > [class*="trx_addons_column-"].columns_padding_bottom {
padding-bottom: 20px; }
/* Max column's width in the not-fluid rows */
.row:not(.columns_fluid) > [class*="column-"],
.columns_wrap:not(.columns_fluid) > [class*="column-"],
.trx_addons_columns_wrap:not(.columns_fluid) > [class*="trx_addons_column-"] {
width: 100%; }
/* Max column's width in the fluid rows */
.row.columns_fluid > [class*="column-"],
.columns_wrap.columns_fluid > [class*="column-"],
.trx_addons_columns_wrap.columns_fluid > [class*="trx_addons_column-"] {
width: 50%; }
.row.columns_fluid > .column-1_1, .columns_wrap.columns_fluid > .column-1_1,
.row.columns_fluid > .column-2_2, .columns_wrap.columns_fluid > .column-2_2,
.row.columns_fluid > .column-3_3, .columns_wrap.columns_fluid > .column-3_3,
.row.columns_fluid > .column-4_4, .columns_wrap.columns_fluid > .column-4_4,
.row.columns_fluid > .column-5_5, .columns_wrap.columns_fluid > .column-5_5,
.row.columns_fluid > .column-6_6, .columns_wrap.columns_fluid > .column-6_6,
.row.columns_fluid > .column-7_7, .columns_wrap.columns_fluid > .column-7_7,
.row.columns_fluid > .column-8_8, .columns_wrap.columns_fluid > .column-8_8,
.row.columns_fluid > .column-9_9, .columns_wrap.columns_fluid > .column-9_9,
.row.columns_fluid > .column-10_10, .columns_wrap.columns_fluid > .column-10_10,
.row.columns_fluid > .column-11_11, .columns_wrap.columns_fluid > .column-11_11,
.row.columns_fluid > .column-12_12, .columns_wrap.columns_fluid > .column-12_12 {
width: 100%; }
.content article {
overflow: hidden; }
/* WP Gallery Grid */
.gallery.gallery-columns-9 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-8 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-7 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-6 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-5 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-4 .gallery-item {
width: 50% !important; }
.gallery.gallery-columns-3 .gallery-item {
width: 50% !important; }
/* Header */
.top_panel_mobile {
display: block; }
body.header_mobile_enabled .top_panel {
display: none; }
.menu_side_wrap .sc_layouts_logo {
padding: 40% 8%; }
.menu_side_icons .toc_menu_item .toc_menu_icon,
.menu_side_icons .toc_menu_item .toc_menu_description:before {
height: 5.5rem; }
.menu_side_icons .toc_menu_item .toc_menu_description span {
letter-spacing: 0; }
.mobile_device .menu_mobile .sc_layouts_logo img,
.mobile_layout .menu_mobile .sc_layouts_logo img {
max-height: 40px; }
.mobile_device .menu_mobile .menu_mobile_nav_area,
.mobile_layout .menu_mobile .menu_mobile_nav_area {
margin-top: 2em; }
.mobile_device .menu_mobile .search_mobile,
.mobile_layout .menu_mobile .search_mobile {
margin-top: 2em;
width: 280px; }
.menu_mobile .menu_mobile_nav_area > ul > li > a {
font-size: 18px;
line-height: 1.5em; }
.menu_mobile .menu_mobile_nav_area li > a {
font-size: 14px;
line-height: 1.5em;
width: 236px; }
.menu_mobile .menu_mobile_nav_area ul.sc_layouts_submenu {
width: 250px; }
.top_panel.with_bg_image {
min-height: 18em; }
/* Slider */
.top_panel .slider_engine_revo .slide_subtitle {
font-size: 13px !important; }
.top_panel .slider_engine_revo .slide_button {
font-size: 9px !important; }
/* Widgets */
.sidebar .widget, .sidebar[class*="scheme_"] .widget {
width: 100%; }
.widget.column-1_2, .widget.column-1_3, .widget.column-1_4, .widget.column-1_5, .widget.column-1_6, .widget.column-1_7, .widget.column-1_8, .widget.column-1_9, .widget.column-1_10, .widget.column-1_11, .widget.column-1_12 {
width: 100%; }
.footer_wrap .sc_content .wpb_column,
.footer_wrap .sc_content .wpb_column:not(.vc_col-sm-12) {
display: block;
float: none;
vertical-align: top;
width: 100% !important; }
.footer_wrap .sc_content .wpb_column + .wpb_column {
margin-top: 20px !important;
padding-top: 20px !important;
border-top-width: 1px;
border-top-style: solid; }
/* Tags layouts */
blockquote:before {
top: 1.05em;
left: -1.5em; }
blockquote p {
font-size: 16px; }
blockquote > a, blockquote > p > a,
blockquote > cite, blockquote > p > cite {
font-size: 12px; }
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
select,
textarea,
textarea.wp-editor-area,
.tourmaster-form-field input[type="text"],
.tourmaster-form-field input[type="email"],
.tourmaster-form-field input[type="password"],
.tourmaster-form-field textarea,
.tourmaster-form-field select,
.tourmaster-form-field.tourmaster-with-border input[type="text"],
.tourmaster-form-field.tourmaster-with-border input[type="email"],
.tourmaster-form-field.tourmaster-with-border input[type="password"],
.tourmaster-form-field.tourmaster-with-border textarea,
.tourmaster-form-field.tourmaster-with-border select,
#buddypress .dir-search input[type="search"],
#buddypress .dir-search input[type="text"],
#buddypress .groups-members-search input[type="search"],
#buddypress .groups-members-search input[type="text"],
#buddypress .standard-form input[type="color"],
#buddypress .standard-form input[type="date"],
#buddypress .standard-form input[type="datetime-local"],
#buddypress .standard-form input[type="datetime"],
#buddypress .standard-form input[type="email"],
#buddypress .standard-form input[type="month"],
#buddypress .standard-form input[type="number"],
#buddypress .standard-form input[type="password"],
#buddypress .standard-form input[type="range"],
#buddypress .standard-form input[type="search"],
#buddypress .standard-form input[type="tel"],
#buddypress .standard-form input[type="text"],
#buddypress .standard-form input[type="time"],
#buddypress .standard-form input[type="url"],
#buddypress .standard-form input[type="week"],
#buddypress .standard-form select,
#buddypress .standard-form textarea {
padding: 1em;
width: 100%; }
/* Post layouts */
.post_item_404:not([class*="post_item_none_"]) .page_title {
font-size: 8em; }
.post_item_404 .page_info {
padding-top: 1em; }
.post_item_404 .page_description {
margin-bottom: 2em; }
.post_item_none_search .page_title, .post_item_none_archive .page_title {
font-size: 5em; }
.format-audio .post_featured.with_thumb .post_audio {
bottom: 1em; }
.format-audio .post_featured.with_thumb .post_audio.with_iframe {
bottom: -3px;
left: 0;
right: 0; }
.mejs-controls a.mejs-horizontal-volume-slider,
.mejs-controls .mejs-horizontal-volume-total {
width: 20px; }
.mejs-controls .mejs-time-rail {
padding-top: 12px; }
.mejs-controls .mejs-horizontal-volume-total {
top: 16px; }
.mejs-container:not(.mejs-video) .mejs-controls, .mejs-container:not(.mejs-video), .trx_addons_audio_player .mejs-container:not(.mejs-video), .format-audio .post_featured .mejs-container,
.post_featured.with_thumb .mejs-container, .post_featured.with_thumb .mejs-controls, .post_featured > div > .mejs-container, .post_featured > div > .mejs-container .mejs-controls, .trx_addons_audio_player.with_cover .mejs-container, .trx_addons_audio_player.with_cover .mejs-controls {
padding: 0 1rem; }
.page_links > span:not(.page_links_title), .page_links > a, .nav-links .page-numbers {
width: 3em;
height: 3em;
line-height: 3em;
text-align: center;
margin: 3px 3px 0 0; }
.breadcrumbs, .post_subtitle {
padding: 0 2rem; }
/* Single post */
.single .post_subtitle + .post_inner,
.post_subtitle + .post_inner {
padding: 2.4rem 2rem 2rem; }
.header-default-content-wrap {
padding: 1rem 2rem; }
.post_item_single > .post_featured {
margin-bottom: 2em; }
.nav-links-single .nav-links, .author_info {
padding: 2em; }
.nav-links-single .nav-links .nav-previous a .nav-text, .nav-links-single .nav-links .nav-next a .nav-text {
padding: .7rem 1.3rem; }
.author_avatar {
position: static;
margin-bottom: 1.5em; }
.author_description {
padding-left: 0; }
.nav-links-single .nav-links .nav-previous {
padding-right: 8px; }
.nav-links-single .nav-links .nav-next {
padding-left: 8px; }
.nav-links-single .nav-links .post-title {
letter-spacing: 0; }
.nav-links-single .nav-links .meta-nav,
.nav-links-single .nav-links .post_date {
font-size: 1em; }
.comments_list_wrap .comment_posted {
font-size: 1em;
display: block;
margin-left: 0; }
.comments_list_wrap li + li, .comments_list_wrap li ul {
margin-top: 2em; }
.comments_list_wrap ul li + li, .comments_list_wrap li > ul > li {
padding-top: 2em; }
.comments_list_wrap ul ul {
margin-left: 2em; }
.comments_list_wrap ul ul ul ul {
margin-left: 0; }
.comments_list_wrap ul li + li > .comment_body > .comment_author_avatar,
.comments_list_wrap li > ul > li > .comment_body > .comment_author_avatar {
top: 0; }
.comments_list_wrap .comment_author_avatar {
position: relative;
top: 0;
left: 0;
margin-bottom: 1.5em; }
.comments_list_wrap .comment_content {
padding-left: 0; }
/* Other minor plugins */
.mfp-title {
line-height: 13px; }
.single .post_subtitle .post_meta .post_meta_item:first-child {
margin-right: 10%; }
.mejs-controls .mejs-button {
height: 2rem;
width: 2rem; }
.mejs-controls .mejs-time-rail {
margin: 0 5px; }
/* Blog layout: Portfolio Gallery */
.gallery_preview_show .post_title {
font-size: 16px;
line-height: 20px; }
.gallery_preview_description {
padding: 0 1.4em; }
.gallery_preview_show .post_meta .post_meta_item {
display: block; }
.gallery_preview_show .post_meta .post_meta_item:before {
display: none; }
/* Front Page Builder */
.front_page_section_buttons > .front_page_section_button {
margin-right: 0; }
/* Theme Hovers */
.post_featured.hover_border .post_info .post_info_back {
padding: 2.5em; }
.post_featured.hover_border .post_info:before,
.post_featured.hover_border .post_info:after {
position: absolute;
z-index: 1;
top: 20px;
right: 20px;
bottom: 20px;
left: 20px; }
.post_featured.hover_border .post_info .post_title {
padding-bottom: 4px; }
/* ThemeREX Addons */
/* Content Area */
.sc_content_width_1_1 {
width: 100% !important; }
.sc_content_width_1_2 {
width: 50% !important; }
.sc_content_width_1_3 {
width: 33.3% !important; }
.sc_content_width_2_3 {
width: 200px !important; }
.sc_content_width_1_4 {
width: 75px !important; }
.sc_content_width_3_4 {
width: 225px !important; }
.widget_contacts .contacts_wrap_icons {
padding: 2.5rem 1.5rem; }
.widget_contacts .contacts_info:not(.show_labels) span.contacts_email, .widget_contacts .contacts_info:not(.show_labels) span.contacts_phone, .widget_contacts .contacts_info:not(.show_labels) a.contacts_phone, .widget_contacts .contacts_info:not(.show_labels) span.contacts_address, .widget_contacts .contacts_info:not(.show_labels) span.contacts_name, .widget_contacts .contacts_info:not(.show_labels) span.contacts_bdate, .widget_contacts .contacts_info:not(.show_labels) a.contacts_site {
padding: 1.367rem 1rem 1.367rem 4.87rem;
background-color: #ffffff;
line-height: 1.1; }
/* SC Skills */
.sc_skills_pie.sc_skills_compact_on .sc_skills_legend_title, .sc_skills_circles .sc_skills_legend_title {
min-width: 30%; }
nav.sc_item_pagination .page-count {
display: inline-block;
margin: 3px 3px 0 0;
float: none;
line-height: 1; }
.trx_addons_scroll_to_top {
display: none !important; }
/* Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
max-width: 100%; }
.body_style_boxed .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 100%; }
/* Stretch rows (like VC) on pages without sidebar */
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-narrow {
width: 310px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-default {
width: 320px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-extended {
width: 330px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wide {
width: 340px; }
.elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-boxed:not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider,
.sidebar_show .content_wrap .elementor-section.elementor-section-justified.elementor-section-full_width:not(.elementor-section-stretched):not(.elementor-inner-section) > .elementor-container.elementor-column-gap-wider {
width: 360px; } }
/*# sourceMappingURL=responsive.css.map */ | 0.434461 | 0.062588 |
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
html {
background-color: #141414;
}
h1 {
font-family: "Abril Fatface";
font-weight: 400;
}
.mmm {
margin: 0;
padding: 0;
text-decoration: none;
overflow-anchor: none;
}
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index: -5;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}
/* HERO SECTION */
.hero {
background-image: url(/assets/Images/our-menus-hero-image.png);
background-position: center;
background-repeat: no-repeat;
width: 100%;
height: 40vh;
}
.hero-text {
position: relative;
top: 50%;
transform: translateY(-50%);
color: white;
text-align: center;
}
.hero-p {
font-family: sans-serif;
font-size: 18px;
}
/* MAIN MENU NAVIGATION */
.main-menu-nav-div {
width: 100%;
height: 5rem;
display: flex;
}
.menu-nav-btn {
width: 50%;
background-color: #96192B;
cursor: pointer;
text-decoration: none;
overflow-anchor: none;
}
.menu-nav-btn:hover {
background-color: white;
}
.menu-nav-btn:hover>div>.menu-nav-p {
color: #96192B;
}
/* .menu-nav-btn:active {
background-color: white;
}
.menu-nav-btn:active>div>.menu-nav-p {
color: #96192B;
} */
.monthly-menu-nav-btn {
width: 50%;
background-color: #96192B;
cursor: pointer;
text-decoration: none;
}
.monthly-menu-nav-btn:hover {
background-color: white;
}
.monthly-menu-nav-btn:hover>div>.monthly-menu-nav-p {
color: #96192B;
}
/* .monthly-menu-nav-btn:active {
background-color: white;
} */
.active-bg {
background-color: white;
}
.active-cl {
color: #96192B !important;
}
.menu-main-nav {
position: relative;
transform: translateY(50%);
text-align: center;
font-family: sans-serif;
font-weight: bold;
font-size: large;
}
.menu-nav-p {
color: white;
}
.monthly-menu-nav-p {
color: white;
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 90%;
}
.menu-h1 {
text-align: center;
padding: 2em;
color: white;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: space-evenly;
gap: 5em;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-img {
height: 50px;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
}
.nav-menu-item:hover>div>p {
color: #96192B;
}
.nav-menu-item:active>div>p {
color: #96192B;
}
.activate {
display: block;
}
.deactivate {
display: none;
}
.active-p {
color: #96192B !important;
}
.active-fill {
fill: #96192B;
stroke: #96192B;
}
.nav-menu-item:hover>div>.nav-menu-img>path {
fill: #96192B;
stroke: #96192B;
}
.nav-menu-item:active>.nav-menu-img>path {
fill: #96192B;
stroke: #96192B;
}
.add-2 {
margin-left: -1em;
}
.add-3 {
margin-left: -.5em;
}
.add-4 {
margin-left: -.3em;
}
.add-5 {
margin-left: -.3em;
}
.add-6 {
margin-left: .3em;
}
.nav-menu-hr {
width: 90%;
color: white;
height: 2px;
background-color: white;
border: none;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 90%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
.prectivated-starters {
display: grid;
}
.menu-item {
display: flex;
gap: 2em;
margin-bottom: 1em;
}
.dish-img {
width: 12em;
height: 8em;
border-radius: 3px;
}
.dish-text {
width: 25em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price-wrap {
display: flex;
}
.dots {
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
margin: 0 auto;
width: 90%;
}
.total-price {
margin: 0 auto;
width: 90%;
color: white;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 16.5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 32em;
margin-bottom: 1em;
}
.monthly-dish-img {
width: 100%;
height: 20em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
font-family: sans-serif;
color: white;
font-size: 18px;
padding-top: .5em;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
font-family: sans-serif;
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 11%;
}
@media only screen and (max-width: 1440px) {
/* HERO SECTION */
.hero {
margin-top: -.5rem;
}
/* MENU */
.nav-menu-hr {
width: 95%;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
/* MONTHLY MENU */
.add-wrapper-mm {
column-gap: 17%;
}
.total-price {
width: 95%;
}
}
@media only screen and (max-width: 1324px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
column-gap: 11%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 10em;
height: 7em;
border-radius: 3px;
}
.dish-text {
width: 15em;
margin-top: -.7em;
}
.dish-name {
font-size: 16px;
}
.dots {
display: none;
}
.dish-price::before {
content: "..................................";
font-family: sans-serif;
color: white;
font-size: 18px;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 17%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 25em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
display: none;
}
.dish-price-m::before {
content: "....................................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 14%;
}
}
@media only screen and (max-width: 1024px) {
/* HERO SECTION */
.hero {
margin-top: -.7rem;
height: 35vh;
}
/* MENU */
.menu-h1 {
padding: 1.5em;
}
.nav-menu {
gap: 5em;
}
.nav-menu-img {
height: 40px;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
column-gap: 2%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 10em;
height: 7em;
border-radius: 3px;
}
.dish-text {
width: 15em;
margin-top: -.7em;
}
.dish-name {
font-size: 16px;
}
.dots {
display: none;
}
.dish-price::before {
content: "..................................";
font-family: sans-serif;
color: white;
font-size: 18px;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 9%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 25em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
display: none;
}
.dish-price-m::before {
content: "....................................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 14%;
}
}
@media only screen and (max-width: 926px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 3em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 8%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 7em;
height: 5em;
border-radius: 3px;
}
.dish-text {
width: 12em;
margin-left: -1em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 14px;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dots {
display: none;
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 16px;
font-weight: bold;
}
.dish-price::before {
content: ".......................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 6%;
margin-bottom: 1em;
}
.monthly-menu-item {
width: 20em;
}
.monthly-dish-img {
width: 100%;
height: 13em;
}
.dish-price-m::before {
content: "...............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 18%;
}
}
@media only screen and (max-width: 900px) {
/* MENU */
.nav-menu {
gap: 4em;
}
}
@media only screen and (max-width: 768px) {
/* HERO SECTION */
.hero {
margin-top: 3em;
height: 30vh;
}
/* MENU */
.menu-h1 {
padding-top: 1em;
}
.menu-wrapper {
width: 94%;
}
.nav-menu {
gap: 3%;
}
.nav-menu-img {
height: 35px;
}
.nav-menu-p {
padding-top: .6em;
font-size: 14px;
margin-top: .1em;
}
.add-2 {
margin-left: -.5em;
}
.add-3 {
margin-left: -.6em;
}
.add-4 {
margin-left: .2em;
}
.add-5 {
margin-left: -.9em;
}
.add-6 {
margin-left: .5em;
}
.nav-menu-hr {
width: 95%;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 3em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 7em;
height: 5em;
border-radius: 3px;
}
.dish-text {
width: 12em;
margin-left: -1em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 14px;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dots {
display: none;
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 16px;
font-weight: bold;
}
.dish-price::before {
content: ".......................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 6%;
margin-bottom: 1em;
}
.monthly-menu-item {
width: 20em;
}
.monthly-dish-img {
width: 100%;
height: 13em;
}
.dish-price-m::before {
content: "...............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 18%;
}
}
@media only screen and (max-width: 600px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 95%;
display: block;
}
.prectivated-starters {
display: block;
}
.menu-item {
display: flex;
margin-bottom: 1em;
}
.dish-text {
width: 18em;
margin-left: -1em;
}
.dish-price::before {
content: ".......................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
margin-top: -1.2em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 100%;
margin-bottom: 2em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.dish-price-m::before {
content: "..............................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 32%;
font-size: 16px;
padding: 5px;
}
}
@media only screen and (max-width: 425px) {
/* HERO SECTION */
.hero {
margin-top: 2em;
height: 25vh;
}
.hero-text {
margin-left: 2%;
margin-right: 2%;
}
.hero-p {
font-size: 16px;
}
/* MAIN MENU NAVIGATION */
.main-menu-nav-div {
height: 3rem;
}
.menu-main-nav {
font-size: 14px;
transform: translateY(10%);
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 98%;
}
.menu-h1 {
text-align: center;
padding-top: .5em;
padding-bottom: 2em;
color: white;
font-size: 25px;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: center;
gap: 3.5%;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
font-size: 10px;
line-height: .5em;
margin-top: .1em;
}
.add-1 {
margin-left: 1em;
}
.add-2 {
margin-left: .5em;
}
.add-3 {
margin-left: .5em;
}
.add-4 {
margin-left: .5em;
}
.add-5 {
margin-left: .5em;
}
.add-6 {
margin-left: 1.5em;
}
.nav-menu-hr {
width: 95%;
color: white;
height: 1px;
background-color: white;
border: none;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 95%;
display: block;
}
.prectivated-starters {
display: block;
}
.menu-item {
display: flex;
margin-bottom: 1em;
}
.dish-text {
width: 18em;
margin-left: -1em;
}
.dish-price::before {
content: ".......................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
margin-top: -1.2em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 100%;
margin-bottom: 2em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.dish-price-m::before {
content: "..............................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 32%;
font-size: 16px;
padding: 5px;
}
}
@media only screen and (max-width: 375px) {
/* HERO SECTION */
.hero-p {
font-size: 15px;
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 96%;
}
.menu-h1 {
padding-top: .5em;
padding-bottom: 2em;
font-size: 22px;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: center;
gap: 2.4%;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
font-size: 10px;
line-height: .5em;
margin-top: .1em;
}
.add-1 {
margin-left: 1em;
}
.add-2 {
margin-left: 0em;
}
.add-3 {
margin-left: .5em;
}
.add-4 {
margin-left: .5em;
}
.add-5 {
margin-left: .5em;
}
.add-6 {
margin-left: 1.5em;
}
.nav-menu-hr {
width: 100%;
height: 1px;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 100%;
display: block;
}
.dish-text {
width: 15em;
margin-left: -1em;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dish-price {
font-size: 14px;
}
.dish-price::before {
content: "..................................................";
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 96%;
}
.total-price {
width: 97%;
font-size: 1em;
margin-top: -2em;
}
/* CONTENT MONTHLY MENU */
.monthly-dish-img {
width: 100%;
height: 14em;
}
.dish-price-m::before {
content: ".........................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
}
@media only screen and (max-width: 320px) {
/* HERO SECTION */
.hero-p {
font-size: 14px;
}
/* MENU */
.menu-wrapper {
width: 98%;
}
.menu-h1 {
font-size: 20px;
}
.nav-menu-img {
height: 30px;
}
.nav-menu {
gap: 0%;
}
.nav-menu-p {
font-size: 9px;
line-height: .3em;
margin-top: .1em;
}
.add-4 {
margin-left: .5em;
}
/* CONTENT MENU */
.menu-item {
display: flex;
margin-bottom: .5em;
}
.dish-text {
width: 14em;
margin-left: -1em;
}
.dish-price::before {
content: "........................................";
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 98%;
}
.total-price {
width: 97%;
font-size: 1em;
margin-top: -2em;
}
/* CONTENT MONTHLY MENU */
.monthly-dish-img {
width: 100%;
height: 12em;
}
.dish-price-m::before {
content: "..............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 38%;
font-size: 14.5px;
padding: 4px;
}
} | Joana-L0501/assets/Css/menu.css | @import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
html {
background-color: #141414;
}
h1 {
font-family: "Abril Fatface";
font-weight: 400;
}
.mmm {
margin: 0;
padding: 0;
text-decoration: none;
overflow-anchor: none;
}
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index: -5;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
}
/* HERO SECTION */
.hero {
background-image: url(/assets/Images/our-menus-hero-image.png);
background-position: center;
background-repeat: no-repeat;
width: 100%;
height: 40vh;
}
.hero-text {
position: relative;
top: 50%;
transform: translateY(-50%);
color: white;
text-align: center;
}
.hero-p {
font-family: sans-serif;
font-size: 18px;
}
/* MAIN MENU NAVIGATION */
.main-menu-nav-div {
width: 100%;
height: 5rem;
display: flex;
}
.menu-nav-btn {
width: 50%;
background-color: #96192B;
cursor: pointer;
text-decoration: none;
overflow-anchor: none;
}
.menu-nav-btn:hover {
background-color: white;
}
.menu-nav-btn:hover>div>.menu-nav-p {
color: #96192B;
}
/* .menu-nav-btn:active {
background-color: white;
}
.menu-nav-btn:active>div>.menu-nav-p {
color: #96192B;
} */
.monthly-menu-nav-btn {
width: 50%;
background-color: #96192B;
cursor: pointer;
text-decoration: none;
}
.monthly-menu-nav-btn:hover {
background-color: white;
}
.monthly-menu-nav-btn:hover>div>.monthly-menu-nav-p {
color: #96192B;
}
/* .monthly-menu-nav-btn:active {
background-color: white;
} */
.active-bg {
background-color: white;
}
.active-cl {
color: #96192B !important;
}
.menu-main-nav {
position: relative;
transform: translateY(50%);
text-align: center;
font-family: sans-serif;
font-weight: bold;
font-size: large;
}
.menu-nav-p {
color: white;
}
.monthly-menu-nav-p {
color: white;
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 90%;
}
.menu-h1 {
text-align: center;
padding: 2em;
color: white;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: space-evenly;
gap: 5em;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-img {
height: 50px;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
}
.nav-menu-item:hover>div>p {
color: #96192B;
}
.nav-menu-item:active>div>p {
color: #96192B;
}
.activate {
display: block;
}
.deactivate {
display: none;
}
.active-p {
color: #96192B !important;
}
.active-fill {
fill: #96192B;
stroke: #96192B;
}
.nav-menu-item:hover>div>.nav-menu-img>path {
fill: #96192B;
stroke: #96192B;
}
.nav-menu-item:active>.nav-menu-img>path {
fill: #96192B;
stroke: #96192B;
}
.add-2 {
margin-left: -1em;
}
.add-3 {
margin-left: -.5em;
}
.add-4 {
margin-left: -.3em;
}
.add-5 {
margin-left: -.3em;
}
.add-6 {
margin-left: .3em;
}
.nav-menu-hr {
width: 90%;
color: white;
height: 2px;
background-color: white;
border: none;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 90%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
.prectivated-starters {
display: grid;
}
.menu-item {
display: flex;
gap: 2em;
margin-bottom: 1em;
}
.dish-img {
width: 12em;
height: 8em;
border-radius: 3px;
}
.dish-text {
width: 25em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price-wrap {
display: flex;
}
.dots {
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
margin: 0 auto;
width: 90%;
}
.total-price {
margin: 0 auto;
width: 90%;
color: white;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 16.5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 32em;
margin-bottom: 1em;
}
.monthly-dish-img {
width: 100%;
height: 20em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
font-family: sans-serif;
color: white;
font-size: 18px;
padding-top: .5em;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
font-family: sans-serif;
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 11%;
}
@media only screen and (max-width: 1440px) {
/* HERO SECTION */
.hero {
margin-top: -.5rem;
}
/* MENU */
.nav-menu-hr {
width: 95%;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
/* MONTHLY MENU */
.add-wrapper-mm {
column-gap: 17%;
}
.total-price {
width: 95%;
}
}
@media only screen and (max-width: 1324px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
column-gap: 11%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 10em;
height: 7em;
border-radius: 3px;
}
.dish-text {
width: 15em;
margin-top: -.7em;
}
.dish-name {
font-size: 16px;
}
.dots {
display: none;
}
.dish-price::before {
content: "..................................";
font-family: sans-serif;
color: white;
font-size: 18px;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 17%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 25em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
display: none;
}
.dish-price-m::before {
content: "....................................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 14%;
}
}
@media only screen and (max-width: 1024px) {
/* HERO SECTION */
.hero {
margin-top: -.7rem;
height: 35vh;
}
/* MENU */
.menu-h1 {
padding: 1.5em;
}
.nav-menu {
gap: 5em;
}
.nav-menu-img {
height: 40px;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 5em;
width: 95%;
column-gap: 2%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 10em;
height: 7em;
border-radius: 3px;
}
.dish-text {
width: 15em;
margin-top: -.7em;
}
.dish-name {
font-size: 16px;
}
.dots {
display: none;
}
.dish-price::before {
content: "..................................";
font-family: sans-serif;
color: white;
font-size: 18px;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 9%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 25em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.title-price-wrap {
display: flex;
width: 100%;
}
.dish-category {
color: white;
}
.dots-m {
display: none;
}
.dish-price-m::before {
content: "....................................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
.dish-price-m {
font-family: sans-serif;
color: white;
font-size: 18px;
font-weight: bold;
padding-top: .5em;
}
.dish-desc {
width: 100%;
color: white;
margin-top: -.5em;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 14%;
}
}
@media only screen and (max-width: 926px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 3em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 8%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 7em;
height: 5em;
border-radius: 3px;
}
.dish-text {
width: 12em;
margin-left: -1em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 14px;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dots {
display: none;
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 16px;
font-weight: bold;
}
.dish-price::before {
content: ".......................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 6%;
margin-bottom: 1em;
}
.monthly-menu-item {
width: 20em;
}
.monthly-dish-img {
width: 100%;
height: 13em;
}
.dish-price-m::before {
content: "...............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 18%;
}
}
@media only screen and (max-width: 900px) {
/* MENU */
.nav-menu {
gap: 4em;
}
}
@media only screen and (max-width: 768px) {
/* HERO SECTION */
.hero {
margin-top: 3em;
height: 30vh;
}
/* MENU */
.menu-h1 {
padding-top: 1em;
}
.menu-wrapper {
width: 94%;
}
.nav-menu {
gap: 3%;
}
.nav-menu-img {
height: 35px;
}
.nav-menu-p {
padding-top: .6em;
font-size: 14px;
margin-top: .1em;
}
.add-2 {
margin-left: -.5em;
}
.add-3 {
margin-left: -.6em;
}
.add-4 {
margin-left: .2em;
}
.add-5 {
margin-left: -.9em;
}
.add-6 {
margin-left: .5em;
}
.nav-menu-hr {
width: 95%;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 3em;
width: 95%;
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 4%;
}
.menu-item {
display: flex;
gap: 2em;
}
.dish-img {
width: 7em;
height: 5em;
border-radius: 3px;
}
.dish-text {
width: 12em;
margin-left: -1em;
}
.dish-name {
font-family: sans-serif;
color: white;
font-size: 14px;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dots {
display: none;
font-family: sans-serif;
color: white;
font-size: 18px;
}
.dish-price {
font-family: sans-serif;
color: white;
font-size: 16px;
font-weight: bold;
}
.dish-price::before {
content: ".......................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 6%;
margin-bottom: 1em;
}
.monthly-menu-item {
width: 20em;
}
.monthly-dish-img {
width: 100%;
height: 13em;
}
.dish-price-m::before {
content: "...............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
width: 18%;
}
}
@media only screen and (max-width: 600px) {
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 95%;
display: block;
}
.prectivated-starters {
display: block;
}
.menu-item {
display: flex;
margin-bottom: 1em;
}
.dish-text {
width: 18em;
margin-left: -1em;
}
.dish-price::before {
content: ".......................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
margin-top: -1.2em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 100%;
margin-bottom: 2em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.dish-price-m::before {
content: "..............................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 32%;
font-size: 16px;
padding: 5px;
}
}
@media only screen and (max-width: 425px) {
/* HERO SECTION */
.hero {
margin-top: 2em;
height: 25vh;
}
.hero-text {
margin-left: 2%;
margin-right: 2%;
}
.hero-p {
font-size: 16px;
}
/* MAIN MENU NAVIGATION */
.main-menu-nav-div {
height: 3rem;
}
.menu-main-nav {
font-size: 14px;
transform: translateY(10%);
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 98%;
}
.menu-h1 {
text-align: center;
padding-top: .5em;
padding-bottom: 2em;
color: white;
font-size: 25px;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: center;
gap: 3.5%;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
font-size: 10px;
line-height: .5em;
margin-top: .1em;
}
.add-1 {
margin-left: 1em;
}
.add-2 {
margin-left: .5em;
}
.add-3 {
margin-left: .5em;
}
.add-4 {
margin-left: .5em;
}
.add-5 {
margin-left: .5em;
}
.add-6 {
margin-left: 1.5em;
}
.nav-menu-hr {
width: 95%;
color: white;
height: 1px;
background-color: white;
border: none;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 95%;
display: block;
}
.prectivated-starters {
display: block;
}
.menu-item {
display: flex;
margin-bottom: 1em;
}
.dish-text {
width: 18em;
margin-left: -1em;
}
.dish-price::before {
content: ".......................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 94%;
}
.total-price {
width: 95%;
font-size: 1.3em;
margin-top: -1.2em;
}
/* CONTENT MONTHLY MENU */
.add-wrapper-mm {
column-gap: 5%;
margin-bottom: 2em;
}
.monthly-menu-item {
width: 100%;
margin-bottom: 2em;
}
.monthly-dish-img {
width: 100%;
height: 15em;
}
.dish-price-m::before {
content: "..............................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 32%;
font-size: 16px;
padding: 5px;
}
}
@media only screen and (max-width: 375px) {
/* HERO SECTION */
.hero-p {
font-size: 15px;
}
/* MENU */
.menu-wrapper {
margin: 0 auto;
width: 96%;
}
.menu-h1 {
padding-top: .5em;
padding-bottom: 2em;
font-size: 22px;
}
.nav-menu {
margin: 0 auto;
display: flex;
justify-content: center;
gap: 2.4%;
}
.nav-menu-item {
cursor: pointer;
}
.nav-menu-p {
font-family: sans-serif;
font-weight: bolder;
color: #fff;
font-size: 10px;
line-height: .5em;
margin-top: .1em;
}
.add-1 {
margin-left: 1em;
}
.add-2 {
margin-left: 0em;
}
.add-3 {
margin-left: .5em;
}
.add-4 {
margin-left: .5em;
}
.add-5 {
margin-left: .5em;
}
.add-6 {
margin-left: 1.5em;
}
.nav-menu-hr {
width: 100%;
height: 1px;
}
/* CONTENT MENU */
.content-menu-wrapper {
margin: 0 auto;
margin-top: 2em;
width: 100%;
display: block;
}
.dish-text {
width: 15em;
margin-left: -1em;
}
.dish-price-wrap {
display: flex;
margin-top: -.5em;
}
.dish-price {
font-size: 14px;
}
.dish-price::before {
content: "..................................................";
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 96%;
}
.total-price {
width: 97%;
font-size: 1em;
margin-top: -2em;
}
/* CONTENT MONTHLY MENU */
.monthly-dish-img {
width: 100%;
height: 14em;
}
.dish-price-m::before {
content: ".........................................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
}
@media only screen and (max-width: 320px) {
/* HERO SECTION */
.hero-p {
font-size: 14px;
}
/* MENU */
.menu-wrapper {
width: 98%;
}
.menu-h1 {
font-size: 20px;
}
.nav-menu-img {
height: 30px;
}
.nav-menu {
gap: 0%;
}
.nav-menu-p {
font-size: 9px;
line-height: .3em;
margin-top: .1em;
}
.add-4 {
margin-left: .5em;
}
/* CONTENT MENU */
.menu-item {
display: flex;
margin-bottom: .5em;
}
.dish-text {
width: 14em;
margin-left: -1em;
}
.dish-price::before {
content: "........................................";
}
/* MONTHLY MENU */
.monthly-menu-wrapper {
width: 98%;
}
.total-price {
width: 97%;
font-size: 1em;
margin-top: -2em;
}
/* CONTENT MONTHLY MENU */
.monthly-dish-img {
width: 100%;
height: 12em;
}
.dish-price-m::before {
content: "..............................................";
font-family: sans-serif;
color: white;
font-size: 14px;
font-weight: bold;
}
/* <!-- RESERVE BTN --> */
.reserve-btn {
margin: 0 auto;
margin-top: 2em;
margin-bottom: 4em;
width: 38%;
font-size: 14.5px;
padding: 4px;
}
} | 0.362179 | 0.058132 |
@import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500&display=swap");
:root {
--font: "Montserrat Alternates", sans-serif;
--crimson: #dc143c;
}
footer {
width: 100%;
bottom: 0;
background: var(--crimson);
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
color: #fff;
padding: 20px;
font-family: var(--font);
}
footer .text {
font-size: 30px;
font-weight: bold;
margin: 20px auto;
}
footer input[type="email"] {
width: calc(100vw - 40vw);
font-size: 26px;
padding: 10px;
border-radius: 30px 0 0 30px;
color: var(--crimson);
outline: none;
border: 1px solid #fff;
}
footer input[type="submit"] {
outline: none;
border: 1px solid #fff;
border-radius: 0 30px 30px 0;
padding: 10px;
color: #fff;
font-size: 26px;
font-family: var(--font);
background: var(--crimson);
cursor: pointer;
margin-left: 2px;
}
footer input:hover[type="submit"] {
background: #580818;
color: #fff;
border: 1px solid transparent;
transition: all 0.3s ease-in-out;
}
footer .footer-list {
margin: 25px auto;
display: flex;
list-style-type: none;
}
footer .footer-list li a {
font-size: 20px;
text-decoration: none;
padding: 20px;
font-weight: bold;
color: #fff;
transition: all 0.4s ease;
line-height: 30px;
}
footer .footer-list li a:hover {
border-bottom: 4px solid #580818;
color: #580818;
transition: all 0.4s ease;
}
footer .social-media-container {
margin: 5px auto;
}
footer .social-media-container i {
padding: 20px;
font-size: 30px;
color: #fff;
transition: all 0.4s ease;
text-shadow: 0px 0px 20px #580818;
}
footer .social-media-container i:hover {
color: #580818;
transform: rotate(360deg);
transition: transform 200ms ease-in-out;
}
span {
display: flex;
justify-content: center;
line-height: 30px;
font-family: var(--font);
}
span a {
margin-left: 5px;
}
/* MEDIA QUERIES */
@media (max-width: 810px) {
footer .text,
footer input[type="email"],
footer input[type="submit"] {
font-size: 20px;
}
footer .footer-list li a {
padding: 15px;
font-size: 15px;
}
footer .social-media-container i {
padding: 10px;
}
}
@media (max-width: 610px) {
.text,
footer input[type="email"],
footer input[type="submit"] {
font-size: 14px;
}
footer .footer-list li a {
padding: 10px;
font-size: 12px;
}
footer .social-media-container i {
font-size: 15px;
}
}
@media (max-width: 470px) {
footer .text {
font-size: 12px;
}
footer .footer-list li a {
padding: 5px;
}
}
@media (max-width: 330px) {
.text {
font-size: 10px;
}
} | src/css/Footer.css | @import url("https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500&display=swap");
:root {
--font: "Montserrat Alternates", sans-serif;
--crimson: #dc143c;
}
footer {
width: 100%;
bottom: 0;
background: var(--crimson);
display: flex;
align-items: center;
flex-direction: column;
text-align: center;
color: #fff;
padding: 20px;
font-family: var(--font);
}
footer .text {
font-size: 30px;
font-weight: bold;
margin: 20px auto;
}
footer input[type="email"] {
width: calc(100vw - 40vw);
font-size: 26px;
padding: 10px;
border-radius: 30px 0 0 30px;
color: var(--crimson);
outline: none;
border: 1px solid #fff;
}
footer input[type="submit"] {
outline: none;
border: 1px solid #fff;
border-radius: 0 30px 30px 0;
padding: 10px;
color: #fff;
font-size: 26px;
font-family: var(--font);
background: var(--crimson);
cursor: pointer;
margin-left: 2px;
}
footer input:hover[type="submit"] {
background: #580818;
color: #fff;
border: 1px solid transparent;
transition: all 0.3s ease-in-out;
}
footer .footer-list {
margin: 25px auto;
display: flex;
list-style-type: none;
}
footer .footer-list li a {
font-size: 20px;
text-decoration: none;
padding: 20px;
font-weight: bold;
color: #fff;
transition: all 0.4s ease;
line-height: 30px;
}
footer .footer-list li a:hover {
border-bottom: 4px solid #580818;
color: #580818;
transition: all 0.4s ease;
}
footer .social-media-container {
margin: 5px auto;
}
footer .social-media-container i {
padding: 20px;
font-size: 30px;
color: #fff;
transition: all 0.4s ease;
text-shadow: 0px 0px 20px #580818;
}
footer .social-media-container i:hover {
color: #580818;
transform: rotate(360deg);
transition: transform 200ms ease-in-out;
}
span {
display: flex;
justify-content: center;
line-height: 30px;
font-family: var(--font);
}
span a {
margin-left: 5px;
}
/* MEDIA QUERIES */
@media (max-width: 810px) {
footer .text,
footer input[type="email"],
footer input[type="submit"] {
font-size: 20px;
}
footer .footer-list li a {
padding: 15px;
font-size: 15px;
}
footer .social-media-container i {
padding: 10px;
}
}
@media (max-width: 610px) {
.text,
footer input[type="email"],
footer input[type="submit"] {
font-size: 14px;
}
footer .footer-list li a {
padding: 10px;
font-size: 12px;
}
footer .social-media-container i {
font-size: 15px;
}
}
@media (max-width: 470px) {
footer .text {
font-size: 12px;
}
footer .footer-list li a {
padding: 5px;
}
}
@media (max-width: 330px) {
.text {
font-size: 10px;
}
} | 0.283186 | 0.103976 |
.size li a{
font-size: 14px !important;
text-transform: uppercase;
}
.size li a:hover{
color: #216DED !important;
}
.flou{
background-color:red !important;
z-index: 999;
}
.line{
border-bottom: 2px solid red !important;
width:15px;
}
/* debut code source banniere avec compte a reboure */
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 7em 0;
clear: both; }
@media screen and (max-width: 768px) {
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 3em 0; } }
#colorlib-counter {
position: relative; }
.colorlib-counters {
padding: 3em 0;
background-size: cover;
background-attachment: fixed;
background-position: center center; }
.colorlib-counters .overlay {
z-index: 0;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.4); }
.colorlib-counters .icon {
width: 100px;
height: 100px;
display: table;
margin: 0 auto;
margin-bottom: 20px; }
.colorlib-counters .icon i {
display: table-cell;
vertical-align: middle;
width: 100px;
height: 100px;
font-size: 50px;
color: #fff;
background: #216DED;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%; }
.colorlib-counters .counter-wrap {
border: 1px solid red !important; }
.colorlib-counters .colorlib-counter {
font-size: 40px;
display: block;
color: white;
font-family: "Montserrat", Arial, sans-serif;
width: 100%;
font-weight: 700;
margin-bottom: .3em; }
.colorlib-counters .colorlib-counter-label {
color: rgba(255, 255, 255, 0.7);
text-transform: uppercase;
font-size: 14px;
letter-spacing: 5px;
margin-bottom: 2em;
display: block; }
/* fin code source banniere avec compte a reboure */
/* debut du code de la partie notre blog */
a {
-webkit-transition: .3s all ease;
-o-transition: .3s all ease;
transition: .3s all ease;
text-decoration: none; }
a:hover {
text-decoration: none; }
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
font-weight: 300;
color: #364d59; }
.post-entry-1 .meta {
color: #ccc; }
.post-entry-1 .post-entry-1-contents {
background: #fff;
padding: 20px; }
.post-entry-1 .post-entry-1-contents h2 {
font-size: 22px;
margin-bottom: 20px; }
.post-entry-1 .post-entry-1-contents h2 a {
color: #000; }
.post-entry-1 .post-entry-1-contents h2 a:hover {
color: #216DED; }
.line-bottom {
position: relative;
padding-bottom: 20px;
margin-bottom: 20px; }
.line-bottom:after {
content: "";
position: absolute;
width: 50px;
height: 2px;
left: 0;
background-color: #216DED;
bottom: 0; }
.line-bottom.text-center:after {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
/* fin du code de la partie notre blog */
/* debut du code de la newsletter */
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 7em 0;
clear: both; }
@media screen and (max-width: 768px) {
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 3em 0; } }
#colorlib-subscribe {
padding: 2em 0;
color: #fff;
background: #216DED; }
#colorlib-subscribe .colorlib-heading {
margin-bottom: 0; }
#colorlib-subscribe .colorlib-heading h2 {
color: #fff !important;
font-size: 50px;
margin-bottom: 50px;
font-weight: 700; }
@media screen and (max-width: 768px) {
#colorlib-subscribe .colorlib-heading h2 {
font-size: 30px; } }
#colorlib-subscribe .colorlib-heading p {
font-size: 22px;
font-weight: 400; }
.qbstp-header-subscribe .form-group {
position: relative;
width: 100%; }
@media screen and (max-width: 480px) {
.qbstp-header-subscribe .form-group {
width: 100%; } }
.qbstp-header-subscribe .form-group input::-webkit-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-moz-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-ms-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-o-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::input-placeholder {
color: #333333; }
.qbstp-header-subscribe #email {
font-size: 18px;
width: 100%;
padding-right: 3em;
border: none;
border: 2px solid #fff;
background: #fff;
color: #333333 !important; }
.qbstp-header-subscribe button {
position: absolute;
top: 0;
right: -4px;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
background: #000;
color: #fff;
border: none;
padding: 14px;
}
#mail{
width: 500px !important;
}
@media all and (max-width: 1080px){
#mail{
width: 400px !important;
}
}
@media all and (max-width: 900px){
#mail{
width: 300px !important;
}
}
/* fin du code de la newsletter */
/* debut du code pour la page blog details */
.right_widget {
border: 2px solid #ebebeb;
margin-bottom: 64px;
padding: 0px 30px 30px 30px;
}
.right_widget:last-child {
margin-bottom: 0px;
}
.r_w_title {
padding-top: 32px;
padding-bottom: 25px;
}
.r_w_title h3 {
font-size: 16px;
color: #444444;
font-family: "PT Sans", sans-serif;
text-transform: uppercase;
position: relative;
}
.r_w_title h3:before {
content: "";
width: 127px;
right: 0px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
height: 1px;
background: #216DED;
position: absolute;
}
.r_post_widget .r_post_inner .r_post_item {
padding-bottom: 16px;
border-bottom: 1px solid #ebebeb;
margin-bottom: 20px;
}
.r_post_widget .r_post_inner .r_post_item img {
width: 100%;
}
.r_post_widget .r_post_inner .r_post_item p {
font-size: 15px;
color: #444444;
font-family: "PT Sans", sans-serif;
font-style: italic;
line-height: 20px;
padding-top: 12px;
}
.r_post_widget .r_post_inner .r_post_item:last-child {
border: none;
margin-bottom: 0px;
padding-bottom: 0px;
}
.r_social_widget ul li {
display: inline-block;
margin-right: 10px;
}
.r_social_widget ul li a {
height: 34px;
width: 34px;
background: #216DED;
text-align: center;
line-height: 34px;
color: #fff;
font-size: 18px;
display: inline-block;
border-radius: 50%;
-webkit-transition: all 400ms linear 0s;
-o-transition: all 400ms linear 0s;
transition: all 400ms linear 0s;
}
.r_social_widget ul li:last-child {
margin-right: 0px;
}
.r_social_widget ul li:hover a {
color: #31353d;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_text {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #444444;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_text a {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #216DED;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_date {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #444444;
}
.r_twitter_widget .tweets_feed ul li .tw_content .footer .tweet_time {
color: #216DED;
font-size: 14px;
font-family: "Open Sans", sans-serif;
}
.blog_details_img {
position: relative;
}
.blog_details_img img {
width: 100%;
}
.blog_details_img .b_date {
background: #216DED;
text-align: center;
display: inline-block;
padding: 15px;
position: absolute;
left: 0px;
top: 0px;
}
.blog_details_img .b_date h3 {
font-size: 30px;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
padding-bottom: 6px;
}
.blog_details_img .b_date h5 {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: white;
text-transform: uppercase;
}
.blog_d_text {
padding-left: 25px;
}
.blog_d_text h6 {
color: #444444;
font-family: "Open Sans", sans-serif;
font-style: italic;
font-size: 14px;
padding-top: 30px;
}
.blog_d_text h6 a {
color: #216DED;
}
.blog_d_text h6 span {
padding-left: 40px;
}
.blog_d_text h3 {
font-size: 20px;
text-transform: uppercase;
font-family: "PT Sans", sans-serif;
color: #31353d;
font-weight: bold;
padding: 30px 0px 40px 0px;
}
.blog_d_text p {
font-size: 14px;
line-height: 24px;
font-family: "Open Sans", sans-serif;
color: #444444;
padding-bottom: 18px;
}
/* fin du code blog details */
.gris{
background-color: #EFEFEF !important;
}
.card{
border-radius: 10px !important;
}
@media all and (max-width:700px){
.none{
display: none;
}
}
.site-footer h4 {
color: white !important;
}
.site-footer a{
color: #5F7878 !important;
}
.actif{
color:#216DED !important;
}
@media all and (max-width:400px){
.form-responsive{
padding: 20px !important;
}
.content-form{
margin-left: -40px !important;
width: 300px !important;
}
.modify-form{
padding: 0px !important;
}
} | public/css/styl2.css | .size li a{
font-size: 14px !important;
text-transform: uppercase;
}
.size li a:hover{
color: #216DED !important;
}
.flou{
background-color:red !important;
z-index: 999;
}
.line{
border-bottom: 2px solid red !important;
width:15px;
}
/* debut code source banniere avec compte a reboure */
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 7em 0;
clear: both; }
@media screen and (max-width: 768px) {
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 3em 0; } }
#colorlib-counter {
position: relative; }
.colorlib-counters {
padding: 3em 0;
background-size: cover;
background-attachment: fixed;
background-position: center center; }
.colorlib-counters .overlay {
z-index: 0;
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.4); }
.colorlib-counters .icon {
width: 100px;
height: 100px;
display: table;
margin: 0 auto;
margin-bottom: 20px; }
.colorlib-counters .icon i {
display: table-cell;
vertical-align: middle;
width: 100px;
height: 100px;
font-size: 50px;
color: #fff;
background: #216DED;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
border-radius: 50%; }
.colorlib-counters .counter-wrap {
border: 1px solid red !important; }
.colorlib-counters .colorlib-counter {
font-size: 40px;
display: block;
color: white;
font-family: "Montserrat", Arial, sans-serif;
width: 100%;
font-weight: 700;
margin-bottom: .3em; }
.colorlib-counters .colorlib-counter-label {
color: rgba(255, 255, 255, 0.7);
text-transform: uppercase;
font-size: 14px;
letter-spacing: 5px;
margin-bottom: 2em;
display: block; }
/* fin code source banniere avec compte a reboure */
/* debut du code de la partie notre blog */
a {
-webkit-transition: .3s all ease;
-o-transition: .3s all ease;
transition: .3s all ease;
text-decoration: none; }
a:hover {
text-decoration: none; }
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
font-weight: 300;
color: #364d59; }
.post-entry-1 .meta {
color: #ccc; }
.post-entry-1 .post-entry-1-contents {
background: #fff;
padding: 20px; }
.post-entry-1 .post-entry-1-contents h2 {
font-size: 22px;
margin-bottom: 20px; }
.post-entry-1 .post-entry-1-contents h2 a {
color: #000; }
.post-entry-1 .post-entry-1-contents h2 a:hover {
color: #216DED; }
.line-bottom {
position: relative;
padding-bottom: 20px;
margin-bottom: 20px; }
.line-bottom:after {
content: "";
position: absolute;
width: 50px;
height: 2px;
left: 0;
background-color: #216DED;
bottom: 0; }
.line-bottom.text-center:after {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%); }
/* fin du code de la partie notre blog */
/* debut du code de la newsletter */
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 7em 0;
clear: both; }
@media screen and (max-width: 768px) {
#colorlib-intro,
#colorlib-about,
#colorlib-services,
#colorlib-contact,
#colorlib-testimony,
#colorlib-blog,
#colorlib-project,
#colorlib-counter,
#colorlib-subscribe,
#colorlib-footer {
padding: 3em 0; } }
#colorlib-subscribe {
padding: 2em 0;
color: #fff;
background: #216DED; }
#colorlib-subscribe .colorlib-heading {
margin-bottom: 0; }
#colorlib-subscribe .colorlib-heading h2 {
color: #fff !important;
font-size: 50px;
margin-bottom: 50px;
font-weight: 700; }
@media screen and (max-width: 768px) {
#colorlib-subscribe .colorlib-heading h2 {
font-size: 30px; } }
#colorlib-subscribe .colorlib-heading p {
font-size: 22px;
font-weight: 400; }
.qbstp-header-subscribe .form-group {
position: relative;
width: 100%; }
@media screen and (max-width: 480px) {
.qbstp-header-subscribe .form-group {
width: 100%; } }
.qbstp-header-subscribe .form-group input::-webkit-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-moz-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-ms-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::-o-input-placeholder {
color: #333333; }
.qbstp-header-subscribe .form-group input::input-placeholder {
color: #333333; }
.qbstp-header-subscribe #email {
font-size: 18px;
width: 100%;
padding-right: 3em;
border: none;
border: 2px solid #fff;
background: #fff;
color: #333333 !important; }
.qbstp-header-subscribe button {
position: absolute;
top: 0;
right: -4px;
border-top-left-radius: 0px !important;
border-bottom-left-radius: 0px !important;
background: #000;
color: #fff;
border: none;
padding: 14px;
}
#mail{
width: 500px !important;
}
@media all and (max-width: 1080px){
#mail{
width: 400px !important;
}
}
@media all and (max-width: 900px){
#mail{
width: 300px !important;
}
}
/* fin du code de la newsletter */
/* debut du code pour la page blog details */
.right_widget {
border: 2px solid #ebebeb;
margin-bottom: 64px;
padding: 0px 30px 30px 30px;
}
.right_widget:last-child {
margin-bottom: 0px;
}
.r_w_title {
padding-top: 32px;
padding-bottom: 25px;
}
.r_w_title h3 {
font-size: 16px;
color: #444444;
font-family: "PT Sans", sans-serif;
text-transform: uppercase;
position: relative;
}
.r_w_title h3:before {
content: "";
width: 127px;
right: 0px;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
height: 1px;
background: #216DED;
position: absolute;
}
.r_post_widget .r_post_inner .r_post_item {
padding-bottom: 16px;
border-bottom: 1px solid #ebebeb;
margin-bottom: 20px;
}
.r_post_widget .r_post_inner .r_post_item img {
width: 100%;
}
.r_post_widget .r_post_inner .r_post_item p {
font-size: 15px;
color: #444444;
font-family: "PT Sans", sans-serif;
font-style: italic;
line-height: 20px;
padding-top: 12px;
}
.r_post_widget .r_post_inner .r_post_item:last-child {
border: none;
margin-bottom: 0px;
padding-bottom: 0px;
}
.r_social_widget ul li {
display: inline-block;
margin-right: 10px;
}
.r_social_widget ul li a {
height: 34px;
width: 34px;
background: #216DED;
text-align: center;
line-height: 34px;
color: #fff;
font-size: 18px;
display: inline-block;
border-radius: 50%;
-webkit-transition: all 400ms linear 0s;
-o-transition: all 400ms linear 0s;
transition: all 400ms linear 0s;
}
.r_social_widget ul li:last-child {
margin-right: 0px;
}
.r_social_widget ul li:hover a {
color: #31353d;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_text {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #444444;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_text a {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #216DED;
}
.r_twitter_widget .tweets_feed ul li .tw_content .tweet_date {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: #444444;
}
.r_twitter_widget .tweets_feed ul li .tw_content .footer .tweet_time {
color: #216DED;
font-size: 14px;
font-family: "Open Sans", sans-serif;
}
.blog_details_img {
position: relative;
}
.blog_details_img img {
width: 100%;
}
.blog_details_img .b_date {
background: #216DED;
text-align: center;
display: inline-block;
padding: 15px;
position: absolute;
left: 0px;
top: 0px;
}
.blog_details_img .b_date h3 {
font-size: 30px;
color: white;
font-family: "Open Sans", sans-serif;
font-weight: 600;
padding-bottom: 6px;
}
.blog_details_img .b_date h5 {
font-size: 14px;
font-family: "Open Sans", sans-serif;
color: white;
text-transform: uppercase;
}
.blog_d_text {
padding-left: 25px;
}
.blog_d_text h6 {
color: #444444;
font-family: "Open Sans", sans-serif;
font-style: italic;
font-size: 14px;
padding-top: 30px;
}
.blog_d_text h6 a {
color: #216DED;
}
.blog_d_text h6 span {
padding-left: 40px;
}
.blog_d_text h3 {
font-size: 20px;
text-transform: uppercase;
font-family: "PT Sans", sans-serif;
color: #31353d;
font-weight: bold;
padding: 30px 0px 40px 0px;
}
.blog_d_text p {
font-size: 14px;
line-height: 24px;
font-family: "Open Sans", sans-serif;
color: #444444;
padding-bottom: 18px;
}
/* fin du code blog details */
.gris{
background-color: #EFEFEF !important;
}
.card{
border-radius: 10px !important;
}
@media all and (max-width:700px){
.none{
display: none;
}
}
.site-footer h4 {
color: white !important;
}
.site-footer a{
color: #5F7878 !important;
}
.actif{
color:#216DED !important;
}
@media all and (max-width:400px){
.form-responsive{
padding: 20px !important;
}
.content-form{
margin-left: -40px !important;
width: 300px !important;
}
.modify-form{
padding: 0px !important;
}
} | 0.264358 | 0.095476 |
* PHOTOS SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* Photos slider > Minimal
*---------------------------------*/
.photoslider-mini{width:500px;height:335px;}
/* Panels buttons */
.photoslider-mini .sliderkit-go-btn{position:absolute;top:0;z-index:10;width:50px;height:335px;}
.photoslider-mini .sliderkit-go-prev{left:0;}
.photoslider-mini .sliderkit-go-next{right:0;}
.photoslider-mini .sliderkit-go-btn a{display:block;width:50px;height:335px;opacity:0.6;cursor:pointer;background-color:#fff;background-repeat:no-repeat;background-position:center center;}
.photoslider-mini .sliderkit-go-prev a{background-image:url("../images/slider-arrow-left.gif");}
.photoslider-mini .sliderkit-go-next a{background-image:url("../images/slider-arrow-right.gif");}
.photoslider-mini .sliderkit-btn-disable a{opacity:0/*can be set to any value until 1*/;cursor:default;}
.photoslider-mini .sliderkit-btn-disable a:hover{cursor:default;}
.photoslider-mini .sliderkit-go-btn span{display:none;}
/*---------------------------------
* Photos slider > With nav bullets
*---------------------------------*/
.photoslider-bullets{width:500px;height:335px;}
/* Nav */
.photoslider-bullets .sliderkit-nav{position:absolute;top:10px;right:10px;}
.photoslider-bullets .sliderkit-nav-clip ul li{float:left;margin:0 1px 0 0;}
.photoslider-bullets .sliderkit-nav-clip ul li a{width:13px;height:13px;background:transparent url("../images/bullet-off.png") no-repeat 0 0;}
.photoslider-bullets .sliderkit-nav-clip ul li.sliderkit-selected a{background:transparent url("../images/bullet-on.png") no-repeat 0 0;}
/*---------------------------------
* Photos slider > 1 click
*---------------------------------*/
.photoslider-1click{width:500px;height:335px;}
/* Nav */
.photoslider-1click .sliderkit-nav{position:absolute;bottom:10px;right:10px;}
.photoslider-1click .sliderkit-nav-clip ul li{float:left;margin:0 1px 0 0;}
.photoslider-1click .sliderkit-nav-clip ul li a{display:block;padding:2px 6px;color:#fff;background:#000}
.photoslider-1click .sliderkit-nav-clip ul li.sliderkit-selected a{color:#000;background:#fff;}
.photoslider-1click .sliderkit-nav-clip ul a:hover{color:#fff;background:#00668d;}
/*---------------------------------
* Photos slider > Vertical
*---------------------------------*/
#photoslider-vertical{width:300px;height:335px;padding-left:200px;}
/* Nav */
#photoslider-vertical .sliderkit-nav{left:10px;top:99px;width:150px;height:90px;}
#photoslider-vertical .sliderkit-nav-clip{top:19px;width:150px !important;text-align:center;}
#photoslider-vertical .sliderkit-nav-clip li{width:150px !important;text-align:center;display:block;color:#090909;font-size:1.2em;text-transform:uppercase;}
/* Buttons */
#photoslider-vertical .sliderkit-nav-btn{position:absolute;z-index:10;left:110px;width:15px;height:15px;}
#photoslider-vertical .sliderkit-nav-prev{top:0;}
#photoslider-vertical .sliderkit-nav-next{top:75px;}
#photoslider-vertical .sliderkit-nav-btn a{display:block;width:15px;height:15px;cursor:pointer;background:transparent url("../images/mc-hpslider-arrows.gif") no-repeat 0 0;}
#photoslider-vertical .sliderkit-nav-prev a{background-position:0 0;}
#photoslider-vertical .sliderkit-nav-next a{background-position:0 -15px;}
#photoslider-vertical .sliderkit-nav-btn span{display:none;}
#photoslider-vertical .sliderkit-panels{}
/*
* PHOTOS SLIDERS #2
* ------------------------------------------------
*/
/*---------------------------------
* Photos slider > Multiple sliders
*---------------------------------*/
.multiple-sliders{width:600px;}
.multiple-sliders-part{position:relative;float:left;width:190px;height:127px;}
.multiple-sliders-part .sliderkit{width:190px;height:127px;margin:0;}
.multiple-sliders-part .sliderkit-panel img{width:190px;}
/*
* CONTENT SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* Content slider > Standard
*---------------------------------*/
.contentslider-std{
width:870px;
/*height:250px;*/
padding:0 50px;
}
/* Nav */
.contentslider-std .sliderkit-nav{position:relative;width:470px;height:22px;text-align:left;}
.contentslider-std .sliderkit-nav-clip{margin:0;}
.contentslider-std .sliderkit-nav-clip li{height:22px;padding:0;margin:0 2px 0 0;}
.contentslider-std .sliderkit-nav-clip li{float:left;}
.contentslider-std .sliderkit-nav-clip li a{float:left;background:#424242;}
.contentslider-std .sliderkit-nav-clip li a{height:18px;margin:0;padding:3px 10px 1px;color:#fff;text-decoration:none;}
.contentslider-std .sliderkit-nav-clip li a:hover{background:#666;}
.contentslider-std .sliderkit-nav-clip li.sliderkit-selected{}
.contentslider-std .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background:#ddd;}
/* Panel */
.contentslider-std .sliderkit-panels{
width:870px;
/*width:470px;height:426px;
*/
overflow:hidden;
padding:10px 0;
background:#fff;
min-height: 350px;
}
.contentslider-std .sliderkit-panel{
width:830px;
/*width:450px;height:406px;*/
min-height: 400px;
overflow:auto;padding:0 20px;background:#fff;
}
.contentslider-std .sliderkit-panel h2{margin:5px 0 20px;}
/* Panels buttons */
.contentslider-std .sliderkit-go-btn{position:absolute;top:40%;z-index:10;}
.contentslider-std .sliderkit-go-prev{left:0;}
.contentslider-std .sliderkit-go-next{right:0;}
.contentslider-std .sliderkit-go-btn a{display:block;width:30px;height:40px;cursor:pointer;background:transparent url("../images/arrows-h-big.png") no-repeat 0 0;}
.contentslider-std .sliderkit-go-prev a{background-position:-30px 0;}
.contentslider-std .sliderkit-go-next a{background-position:0 0;}
.contentslider-std .sliderkit-go-prev a:hover{background-position:-90px 0;}
.contentslider-std .sliderkit-go-next a:hover{background-position:-60px 0;}
.contentslider-std .sliderkit-go-btn span{display:none;}
/*
* PHOTOS GALLERIES
* ------------------------------------------------
*/
/*---------------------------------
* Photos gallery > Standard
*---------------------------------*/
.photosgallery-std{width:500px;height:335px;padding:0 0 76px;}
/* Navbar */
.photosgallery-std .sliderkit-nav{left:0;bottom:0;width:480px;padding:10px;background:#000;}
.photosgallery-std .sliderkit-nav-clip ul li{float:left;margin:0;}
.photosgallery-std .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.photosgallery-std .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.photosgallery-std .sliderkit-btn{position:absolute;top:0;}
.photosgallery-std .sliderkit-btn span{display:none;}
.photosgallery-std .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
.photosgallery-std .sliderkit-btn-disable a:hover{cursor:default;}
/* Navbar buttons */
.photosgallery-std .sliderkit-nav .sliderkit-btn a{display:block;width:15px;height:76px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next{right:20px;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Panels buttons */
.photosgallery-std .sliderkit-go-btn{position:absolute;top:0;z-index:10;width:50px;height:335px;}
.photosgallery-std .sliderkit-go-prev{left:0;}
.photosgallery-std .sliderkit-go-next{right:0;}
.photosgallery-std .sliderkit-go-btn a{display:block;width:50px;height:335px;opacity:0.6;cursor:pointer;background-color:#fff;background-repeat:no-repeat;background-position:center center;}
.photosgallery-std .sliderkit-go-prev a{background-image:url("../images/slider-arrow-left.gif");}
.photosgallery-std .sliderkit-go-next a{background-image:url("../images/slider-arrow-right.gif");}
.photosgallery-std .sliderkit-btn-disable a{opacity:0/*can be set to any value until 1*/;cursor:default;}
.photosgallery-std .sliderkit-go-btn span{display:none;}
/* Panel */
.photosgallery-std .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*---------------------------------
* Photos gallery > With captions
*---------------------------------*/
.photosgallery-captions{width:500px;height:335px;padding:0 0 76px;}
/* Navbar */
.photosgallery-captions .sliderkit-nav{left:0;bottom:0;width:480px;padding:10px;background:#000;}
.photosgallery-captions .sliderkit-nav-clip ul li{float:left;margin:0;}
.photosgallery-captions .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.photosgallery-captions .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.photosgallery-captions .sliderkit-btn{position:absolute;top:0;}
.photosgallery-captions .sliderkit-btn a{display:block;height:76px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.photosgallery-captions .sliderkit-btn span{display:none;}
.photosgallery-captions .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;}
.photosgallery-captions .sliderkit-btn-disable a:hover{cursor:default;}
/* Buttons > Navbar buttons */
.photosgallery-captions .sliderkit-nav-btn{width:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev{left:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next{right:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Go buttons */
.photosgallery-captions .sliderkit-go-btn{width:10px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev{left:40px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next{right:40px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a{background-position:0 center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a{background-position:-20px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a:focus{background-position:-40px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a:focus{background-position:-60px center;}
/* Panel */
.photosgallery-captions .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel > Textbox */
.photosgallery-captions .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;width:500px;height:70px;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-text{height:50px;padding:10px 15px;font-size:0.9em;color:#fff;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-overlay{width:500px;height:70px;background:#000;opacity:0.6;}
/*---------------------------------
* Photos gallery > Vertical
*---------------------------------*/
.photosgallery-vertical{width:500px;height:335px;}
/* Nav */
.photosgallery-vertical .sliderkit-nav{top:0;left:0;width:95px;height:100%;background:#000;}
.photosgallery-vertical .sliderkit-nav-clip{left:7px;}
.photosgallery-vertical .sliderkit-nav-clip ul li{margin:0;padding:0;}
.photosgallery-vertical .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;padding:3px;}
.photosgallery-vertical .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #c5dbe6;}
.photosgallery-vertical .sliderkit-nav-clip ul li img{width:75px;height:50px;margin-bottom:-3px;}
/* Nav buttons */
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn{position:absolute;left:0;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn a{display:block;width:95px;height:16px;background:transparent url("../images/arrows-v.png") no-repeat center 0;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn a span{display:none;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev{top:25px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next{bottom:25px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a{background-position:center -89px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a{background-position:center -108px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:center -126px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a:focus{background-position:center -145px;}
/* Go Buttons */
.photosgallery-vertical .sliderkit-go-btn a{width:200px;height:300px;background:#ccc;opacity:.8;}
.photosgallery-vertical .sliderkit-go-prev{top:0;left:0;}
.photosgallery-vertical .sliderkit-go-next{top:0;right:0;}
/* Panel */
.photosgallery-vertical .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel > Textbox */
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;height:85px;width:500px;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-text{height:65px;padding:10px 15px 10px 115px;font-size:0.9em;color:#fff;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-overlay{height:85px;width:500px;background:#000;opacity:0.6;}
/*---------------------------------
* Photos gallery > Minimalistic
*---------------------------------*/
.photosgallery-minimalistic{width:500px;height:335px;padding:0 0 50px;}
/* Navbar */
.photosgallery-minimalistic .sliderkit-nav{left:0;bottom:0;width:500px;padding:0;background:#000;}
.photosgallery-minimalistic .sliderkit-nav-clip{margin:0 auto;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li{float:left;margin:0 0 0 0;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:0;opacity:0.4;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li a:hover{cursor:default;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li.sliderkit-selected a{opacity:1;}
/* Panel */
.photosgallery-minimalistic .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel */
.photosgallery-minimalistic .sliderkit-timer{top:332px;}
/*---------------------------------
* Photos gallery > #5 = 'navpanelautoswitch' option
*---------------------------------*/
.photosgallery-5 .sliderkit-count-lines{left:220px;top:auto;right:auto;bottom:75px;}
/*
* NEWS SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* News slider > Vertical
*---------------------------------*/
.newslider-vertical{width:560px;height:165px;}
/* Nav */
.newslider-vertical .sliderkit-nav{width:200px;height:165px;}
.newslider-vertical .sliderkit-nav-clip li{height:50px;width:190px;margin-bottom:5px;padding-right:10px;}
.newslider-vertical .sliderkit-nav-clip li.sliderkit-selected{background:transparent url("../images/newslider-arrow.gif") no-repeat right center;}
.newslider-vertical .sliderkit-nav-clip li a{height:37px;width:180px;padding:13px 0 0 10px;text-align:left;font-size:1.3em;color:#fff;text-decoration:none;background:#00668d;}
.newslider-vertical .sliderkit-nav-clip li a:hover,
.newslider-vertical .sliderkit-nav-clip li a:focus{color:#fff;}
/* Panel */
.newslider-vertical .sliderkit-panels{position:absolute;left:200px;width:358px;height:158px;overflow:hidden;border:1px solid #ccc;}
.newslider-vertical .sliderkit-panel{left:0;top:0;width:338px;height:138px;padding:10px;background:#fff;}
/* News block */
.newslider-vertical .sliderkit-news h3,
.newslider-vertical .sliderkit-news h3 a{color:#000;font-weight:bold;}
.newslider-vertical .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.newslider-vertical .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.newslider-vertical .sliderkit-news p{margin:0;}
.newslider-vertical .sliderkit-news-readmore{position:absolute;right:10px;bottom:10px;}
/*---------------------------------
* News slider > Horizontal
*---------------------------------*/
.newslider-horizontal{width:550px;height:165px;}
/* Nav */
.newslider-horizontal .sliderkit-nav{position:absolute;bottom:0;width:550px;height:50px;}
.newslider-horizontal .sliderkit-nav-clip li{float:left;height:35px;width:110px;padding:10px 0 0;margin:0;}
.newslider-horizontal .sliderkit-nav-clip li.sliderkit-selected{background:transparent url("../images/newslider-arrow-up.gif") no-repeat center 0;}
.newslider-horizontal .sliderkit-nav-clip li a{height:32px;width:89px;margin:0;padding:3px 10px 0;text-align:left;font-size:1em;color:#fff;text-decoration:none;border-right:1px solid #fff;background:#00668d;}
.newslider-horizontal .sliderkit-nav-clip li a:hover,
.newslider-horizontal .sliderkit-nav-clip li a:focus{color:#fff;}
/* Panel */
.newslider-horizontal .sliderkit-panels{position:absolute;left:0;width:550px;height:115px;overflow:hidden;}
.newslider-horizontal .sliderkit-panel{left:0;top:0;width:530px;height:95px;padding:10px;background:#fff;}
/* News block */
.newslider-horizontal .sliderkit-news h3,
.newslider-horizontal .sliderkit-news h3 a{color:#000;font-weight:bold;}
.newslider-horizontal .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.newslider-horizontal .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.newslider-horizontal .sliderkit-news p{margin:0;}
/*---------------------------------
* News slider > Minimal
*---------------------------------*/
.newslider-minimal{width:570px;height:16px;}
/* Navbar */
.newslider-minimal .sliderkit-panels{float:left;position:relative;width:450px;}
.newslider-minimal .sliderkit-panel{height:16px;}
.newslider-minimal .sliderkit-panel a{display:block;}
.newslider-minimal .sliderkit-panel a:hover{text-decoration:underline;}
/* Buttons > Disable */
.newslider-minimal .sliderkit-legend{float:left;margin-right:10px;background:yellow;}
/*
* CAROUSEL
* ------------------------------------------------
*/
/*---------------------------------
* Carousel > Demo #1
*---------------------------------*/
.carousel-demo1{width:500px;height:84px;}
/* Navbar */
.carousel-demo1 .sliderkit-nav{left:0;bottom:0;width:480px;height:64px;padding:10px;background:#ccc;}
.carousel-demo1 .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-demo1 .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-demo1 .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Buttons */
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next{right:20px;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-demo1 .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #2
*---------------------------------*/
.carousel-demo2{width:400px;height:84px;}
/* Navbar */
.carousel-demo2 .sliderkit-nav{left:0;bottom:0;width:380px;height:64px;padding:10px;background:#ccc;}
.carousel-demo2 .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-demo2 .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-demo2 .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Navbar buttons */
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next{right:20px;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-demo2 .sliderkit-nav .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #3
*---------------------------------*/
#carousel-demo3{width:300px;height:84px;}
#carousel-demo3 .sliderkit-nav{width:280px;}
/*---------------------------------
* Carousel > Continuous
*---------------------------------*/
.carousel-continuous{width:570px;height:84px;}
/* Navbar */
.carousel-continuous .sliderkit-nav{left:0;bottom:0;width:550px;height:64px;padding:10px;background:#ccc;}
.carousel-continuous .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-continuous .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-continuous .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Navbar buttons */
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev{left:10px;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next{right:10px;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-continuous .sliderkit-nav .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #5
*---------------------------------*/
#carousel-demo5{width:700px;height:180px;margin:20px 0 0;}
/* Navbar */
#carousel-demo5 .sliderkit-nav{left:0;bottom:0;width:700px;height:180px;padding:0;background:none;}
#carousel-demo5 .sliderkit-nav-clip ul li{float:left;width:130px;margin:0 60px 0 0;text-align:left;}
#carousel-demo5 .sliderkit-nav-clip ul li > a{display:block;width:130px;height:87px;overflow:hidden;margin:0;opacity:0.8;border:1px solid #eee;}
#carousel-demo5 .sliderkit-nav-clip ul li > a:hover{opacity:1;}
#carousel-demo5 .sliderkit-nav-clip ul li h3{margin:5px 0;font-size:1em;}
#carousel-demo5 .sliderkit-nav-clip ul li p{font-size:0.9em;}
#carousel-demo5 .sliderkit-nav-clip ul li .rlt-link-readmore:hover{text-decoration:underline;}
/* Buttons */
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:74px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:26px;height:31px;background:transparent url("../images/arrows-h-btn.gif") no-repeat 0 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next{right:20px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a{background-position:0 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a{background-position:0 -31px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a:hover,
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-26px 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a:hover,
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-26px -31px;}
#carousel-demo5 .sliderkit-nav .sliderkit-btn-disable a{cursor:default;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev.sliderkit-btn-disable a{background-position:-52px 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next.sliderkit-btn-disable a{background-position:-52px -31px;}
/*
* SLIDESHOW
* ------------------------------------------------
*/
/*---------------------------------
* Slideshow > Basic
*---------------------------------*/
.slideshow-standard{width:500px;height:335px;}
/* Navbar */
.slideshow-standard .sliderkit-nav{left:0;bottom:0;width:295px;padding:10px 0 10px 205px;background:#000;}
.slideshow-standard .sliderkit-nav-clip ul li{float:left;margin:0;}
.slideshow-standard .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.slideshow-standard .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.slideshow-standard .sliderkit-btn a{position:relative;float:left;display:block;width:20px;height:23px;margin:0 5px;background:transparent url("../images/slideshow-btns.gif") no-repeat 0 0;}
.slideshow-standard .sliderkit-btn span{display:none;}
/* Play button */
.slideshow-standard .sliderkit-play-btn a{background-position:-50px 0;}
.slideshow-standard .sliderkit-play-btn a:hover,
.slideshow-standard .sliderkit-play-btn a:focus{background-position:-50px -23px;}
.slideshow-standard .sliderkit-pause-btn a{background-position:-75px 0;}
.slideshow-standard .sliderkit-pause-btn a:hover,
.slideshow-standard .sliderkit-pause-btn a:focus{background-position:-75px -23px;}
/* Go buttons */
.slideshow-standard .sliderkit-go-prev a{background-position:-25px 0;}
.slideshow-standard .sliderkit-go-next a{background-position:0 0;}
.slideshow-standard .sliderkit-go-prev a:hover,
.slideshow-standard .sliderkit-go-prev a:focus{background-position:-25px -23px;}
.slideshow-standard .sliderkit-go-next a:hover,
.slideshow-standard .sliderkit-go-next a:focus{background-position:0 -23px;}
/* Panel */
.slideshow-standard .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*---------------------------------
* Slideshow > + Carousel
*---------------------------------*/
.slideshow-carousel{width:500px;height:335px;padding:0 0 40px;}
/* Navbar */
.slideshow-carousel .sliderkit-nav{left:0;bottom:40px;width:480px;padding:10px;}
.slideshow-carousel .sliderkit-nav-clip ul li{float:left;margin:0;}
.slideshow-carousel .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.slideshow-carousel .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Controls */
.slideshow-carousel .sliderkit-controls{position:absolute;bottom:0;left:0;width:295px;padding:10px 0 10px 205px;background:#000;}
/* Go buttons */
.slideshow-carousel .sliderkit-go-btn a,
.slideshow-carousel .sliderkit-play-btn a{position:relative;float:left;display:block;width:20px;height:23px;margin:0 5px;background:transparent url("../images/slideshow-btns.gif") no-repeat 0 0;}
.slideshow-carousel .sliderkit-btn span,
.slideshow-carousel .sliderkit-play-btn span{display:none;}
.slideshow-carousel .sliderkit-play-btn a{background-position:-50px 0;}
.slideshow-carousel .sliderkit-play-btn a:hover,
.slideshow-carousel .sliderkit-play-btn a:focus{background-position:-50px -23px;}
.slideshow-carousel .sliderkit-pause-btn a{background-position:-75px 0;}
.slideshow-carousel .sliderkit-pause-btn a:hover,
.slideshow-carousel .sliderkit-pause-btn a:focus{background-position:-75px -23px;}
.slideshow-carousel .sliderkit-go-prev a{background-position:-25px 0;}
.slideshow-carousel .sliderkit-go-next a{background-position:0 0;}
.slideshow-carousel .sliderkit-go-prev a:hover,
.slideshow-carousel .sliderkit-go-prev a:focus{background-position:-25px -23px;}
.slideshow-carousel .sliderkit-go-next a:hover,
.slideshow-carousel .sliderkit-go-next a:focus{background-position:0 -23px;}
/* Panel */
.slideshow-carousel .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*
* TABS
* ------------------------------------------------
*/
/*---------------------------------
* Tabs > Standard
*---------------------------------*/
.tabs-standard{width:550px;height:185px;}
/* Nav */
.tabs-standard .sliderkit-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-standard .sliderkit-nav-clip{margin:0;}
.tabs-standard .sliderkit-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-standard .sliderkit-nav-clip li,
.tabs-standard .sliderkit-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-standard .sliderkit-nav-clip li a{height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-standard .sliderkit-nav-clip li.sliderkit-selected{background-position:0 -44px;}
.tabs-standard .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-standard .sliderkit-panels{width:528px;height:140px;overflow:hidden;padding:10px;border:1px solid #a3a3a3;background:#fff;}
.tabs-standard .sliderkit-panel{width:528px;height:140px;background:#fff;}
/* News block */
.tabs-standard .sliderkit-news h3,
.tabs-standard .sliderkit-news h3 a{color:#000;font-weight:bold;}
.tabs-standard .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-standard .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-standard .sliderkit-news p{margin:0;}
/*---------------------------------
* Tabs > No height
*---------------------------------*/
.tabs-noheight{width:550px;}
/* Nav */
.tabs-noheight .sliderkit-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-noheight .sliderkit-nav-clip{margin:0;}
.tabs-noheight .sliderkit-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-noheight .sliderkit-nav-clip li,
.tabs-noheight .sliderkit-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-noheight .sliderkit-nav-clip li a{height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-noheight .sliderkit-nav-clip li.sliderkit-selected{background-position:0 -44px;}
.tabs-noheight .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-noheight .sliderkit-panels{width:528px;padding:10px;border:1px solid #a3a3a3;background:#fff;}
.tabs-noheight .sliderkit-panel{position:relative;}
/* News block */
.tabs-noheight .sliderkit-news h3,
.tabs-noheight .sliderkit-news h3 a{color:#000;font-weight:bold;}
.tabs-noheight .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-noheight .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-noheight .sliderkit-news p{margin:0;}
/*---------------------------------
* Tabs > Imbricate
*---------------------------------*/
.tabs-imbricate{width:550px;height:200px;}
.tabs-imbricate img{border:none;}
/* Nav */
.tabs-imbricate .customtabs-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-imbricate .customtabs-nav-clip{margin:0;}
.tabs-imbricate .customtabs-nav-clip ul{position:relative;left:0;top:0;list-style:none;margin:0;padding:0;}
.tabs-imbricate .customtabs-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-imbricate .customtabs-nav-clip li,
.tabs-imbricate .customtabs-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-imbricate .customtabs-nav-clip li a{display:block;overflow:hidden;height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-imbricate .customtabs-nav-clip li.customtabs-selected{background-position:0 -44px;}
.tabs-imbricate .customtabs-nav-clip li.customtabs-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-imbricate .customtabs-panels{width:528px;height:150px;padding:10px;border:1px solid #a3a3a3;}
.tabs-imbricate .customtabs-panel{z-index:1;position:absolute;overflow:hidden;width:528px;height:150px;background:#fff;}
.tabs-imbricate .customtabs-panel-active{z-index:5;}
.tabs-imbricate .customtabs-panel-old{z-index:4;}
/* News block */
.tabs-imbricate .customtabs-news h3,
.tabs-imbricate .customtabs-news h3 a{color:#000;font-weight:bold;}
.tabs-imbricate .customtabs-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-imbricate .customtabs-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-imbricate .customtabs-news p{margin:0;}
/* Imbricated carousel */
.tabs-imbricate .carousel-demo2{width:528px;}
.tabs-imbricate .carousel-demo2 .sliderkit-nav{width:508px;}
/*---------------------------------
* Tabs > Pagination
*---------------------------------*/
.pagination-basic .sliderkit-nav{margin:0 0 10px;text-align:right;}
.pagination-basic .sliderkit-nav li{display:inline;margin:0 2px;}
.pagination-basic .sliderkit-nav li a{padding:1px 3px;border:1px solid #ccc;text-decoration:none;}
.pagination-basic .sliderkit-nav li.sliderkit-selected a,
.pagination-basic .sliderkit-nav li a:hover{color:#fff;border:1px solid #666;background:#666;}
/* Content block */
.pagination-basic .sliderkit-block{margin:0 0 10px;padding:15px;border:1px solid #666;}
/*
* MENUS
* ------------------------------------------------
*/
/*---------------------------------
* Menus > Vertical menu list
*---------------------------------*/
.vertical-menulist{width:200px;height:400px;margin:15px 0 0;}
/* Nav */
.vertical-menulist .sliderkit-nav-clip{text-align:left;border:1px solid #ccc;}
.vertical-menulist .sliderkit-nav-clip,
.vertical-menulist .sliderkit-nav-clip ul li{width:198px !important;margin:0;}
.vertical-menulist .sliderkit-nav-clip ul li a{display:block;padding:5px 10px;}
.vertical-menulist .sliderkit-nav-clip ul li a:hover{color:#fff;background:#666;}
/* Buttons */
.vertical-menulist .sliderkit-controls{width:200px;margin:0 0 5px;text-align:center;}
.vertical-menulist .sliderkit-controls .sliderkit-btn-disable a{cursor:default;color:#b2ceea;}
/*
* EXTERNAL CONTROLS
* ------------------------------------------------
*/
#content .sliderkit-pagination ul{display:inline;margin:0 0 10px;list-style:none;}
#content .sliderkit-pagination ul li{display:inline;}
#content .sliderkit-pagination ul li.selected a{color:#fff;background:#000;}
#content .sliderkit-pagination ul li a{padding:5px;}
#content .sliderkit-pagination ul li a:hover{color:#fff;background:#006a91;}
/*
* ADD-ONS
* ------------------------------------------------
*/
/*---------------------------------
* Add-on > Counter
*---------------------------------*/
/* Example 01 */
.counter-demo1 .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;width:500px;height:70px;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-text{height:50px;padding:10px 15px;font-size:0.9em;color:#fff;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-overlay{width:500px;height:70px;background:#000;opacity:0.6;}
/* Example 02 */
.counter-demo2{height:120px;}
.counter-demo2 .sliderkit-count-lines{position:relative;text-align:center;color:#000;background:none;}
.counter-demo2 .sliderkit-count-current{font-weight:bold;}
/*---------------------------------
* Add-on > DelayCaption
*---------------------------------*/
/* Example 01 */
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-textbox{bottom:0;}
/* Example 02 */
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-textbox{width:150px;height:335px;}
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-text{width:120px;height:315px;}
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-overlay{width:150px;height:335px;}
/*---------------------------------
* Add-on > Timer
*---------------------------------*/
/* Example 01 */
.timer-demo01{height:335px;padding:0;}
.timer-demo01 .sliderkit-timer-wrapper{position:absolute;z-index:10;/*top:323px;*/bottom:0;width:500px;height:8px;opacity:0.8;/*background:#0f5f7e;*/}
.timer-demo01 .sliderkit-timer{top:0;height:8px;background:#0089BE url("../images/timer-img01.gif") repeat-x 0 center;}
/*---------------------------------
* Add-on > ImageFx
*---------------------------------*/
/* Example 01 */
.transition-demo01{padding:0 36px 5px;}
.transition-demo01 .sliderkit-go-btn{top:45%;width:30px;height:30px;}
.transition-demo01 .sliderkit-go-btn a{width:30px;height:30px;background:#fff url("../images/h-arrows-round.gif") no-repeat 0 0;}
.transition-demo01 .sliderkit-go-prev{left:0px;}
.transition-demo01 .sliderkit-go-prev a{background-position:0 0;}
.transition-demo01 .sliderkit-go-prev a:hover{background-position:-60px 0;}
.transition-demo01 .sliderkit-go-next{right:0px;}
.transition-demo01 .sliderkit-go-next a{background-position:-30px 0;}
.transition-demo01 .sliderkit-go-next a:hover{background-position:-90px 0;}
.transition-demo01 .sliderkit-btn-disable{display:none;opacity:0/*can be set to any value until 1*/;cursor:default;}
.transition-demo01 .sliderkit-btn-disable a:hover{cursor:default;}
/* Example 02 */
.transition-demo01 .sliderkit-timer-wrapper{position:absolute;bottom:0;width:500px;height:5px;background:#000;}
.transition-demo01 .sliderkit-timer{top:0;height:5px;background:#0089BE url("../images/timer-img01.gif") repeat-x 0 center;}
/* Example 02 > Buttons > Go buttons */
.transition-demo02 .sliderkit-nav-btn{width:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev{left:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next{right:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Example 02 > Buttons > Go buttons */
.transition-demo02 .sliderkit-go-btn{width:10px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev{left:40px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next{right:40px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a{background-position:0 center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next a{background-position:-20px center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a:focus{background-position:-40px center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-go-next a:focus{background-position:-60px center;} | assets/sliderkit/css/sliderkit-demos.css | * PHOTOS SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* Photos slider > Minimal
*---------------------------------*/
.photoslider-mini{width:500px;height:335px;}
/* Panels buttons */
.photoslider-mini .sliderkit-go-btn{position:absolute;top:0;z-index:10;width:50px;height:335px;}
.photoslider-mini .sliderkit-go-prev{left:0;}
.photoslider-mini .sliderkit-go-next{right:0;}
.photoslider-mini .sliderkit-go-btn a{display:block;width:50px;height:335px;opacity:0.6;cursor:pointer;background-color:#fff;background-repeat:no-repeat;background-position:center center;}
.photoslider-mini .sliderkit-go-prev a{background-image:url("../images/slider-arrow-left.gif");}
.photoslider-mini .sliderkit-go-next a{background-image:url("../images/slider-arrow-right.gif");}
.photoslider-mini .sliderkit-btn-disable a{opacity:0/*can be set to any value until 1*/;cursor:default;}
.photoslider-mini .sliderkit-btn-disable a:hover{cursor:default;}
.photoslider-mini .sliderkit-go-btn span{display:none;}
/*---------------------------------
* Photos slider > With nav bullets
*---------------------------------*/
.photoslider-bullets{width:500px;height:335px;}
/* Nav */
.photoslider-bullets .sliderkit-nav{position:absolute;top:10px;right:10px;}
.photoslider-bullets .sliderkit-nav-clip ul li{float:left;margin:0 1px 0 0;}
.photoslider-bullets .sliderkit-nav-clip ul li a{width:13px;height:13px;background:transparent url("../images/bullet-off.png") no-repeat 0 0;}
.photoslider-bullets .sliderkit-nav-clip ul li.sliderkit-selected a{background:transparent url("../images/bullet-on.png") no-repeat 0 0;}
/*---------------------------------
* Photos slider > 1 click
*---------------------------------*/
.photoslider-1click{width:500px;height:335px;}
/* Nav */
.photoslider-1click .sliderkit-nav{position:absolute;bottom:10px;right:10px;}
.photoslider-1click .sliderkit-nav-clip ul li{float:left;margin:0 1px 0 0;}
.photoslider-1click .sliderkit-nav-clip ul li a{display:block;padding:2px 6px;color:#fff;background:#000}
.photoslider-1click .sliderkit-nav-clip ul li.sliderkit-selected a{color:#000;background:#fff;}
.photoslider-1click .sliderkit-nav-clip ul a:hover{color:#fff;background:#00668d;}
/*---------------------------------
* Photos slider > Vertical
*---------------------------------*/
#photoslider-vertical{width:300px;height:335px;padding-left:200px;}
/* Nav */
#photoslider-vertical .sliderkit-nav{left:10px;top:99px;width:150px;height:90px;}
#photoslider-vertical .sliderkit-nav-clip{top:19px;width:150px !important;text-align:center;}
#photoslider-vertical .sliderkit-nav-clip li{width:150px !important;text-align:center;display:block;color:#090909;font-size:1.2em;text-transform:uppercase;}
/* Buttons */
#photoslider-vertical .sliderkit-nav-btn{position:absolute;z-index:10;left:110px;width:15px;height:15px;}
#photoslider-vertical .sliderkit-nav-prev{top:0;}
#photoslider-vertical .sliderkit-nav-next{top:75px;}
#photoslider-vertical .sliderkit-nav-btn a{display:block;width:15px;height:15px;cursor:pointer;background:transparent url("../images/mc-hpslider-arrows.gif") no-repeat 0 0;}
#photoslider-vertical .sliderkit-nav-prev a{background-position:0 0;}
#photoslider-vertical .sliderkit-nav-next a{background-position:0 -15px;}
#photoslider-vertical .sliderkit-nav-btn span{display:none;}
#photoslider-vertical .sliderkit-panels{}
/*
* PHOTOS SLIDERS #2
* ------------------------------------------------
*/
/*---------------------------------
* Photos slider > Multiple sliders
*---------------------------------*/
.multiple-sliders{width:600px;}
.multiple-sliders-part{position:relative;float:left;width:190px;height:127px;}
.multiple-sliders-part .sliderkit{width:190px;height:127px;margin:0;}
.multiple-sliders-part .sliderkit-panel img{width:190px;}
/*
* CONTENT SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* Content slider > Standard
*---------------------------------*/
.contentslider-std{
width:870px;
/*height:250px;*/
padding:0 50px;
}
/* Nav */
.contentslider-std .sliderkit-nav{position:relative;width:470px;height:22px;text-align:left;}
.contentslider-std .sliderkit-nav-clip{margin:0;}
.contentslider-std .sliderkit-nav-clip li{height:22px;padding:0;margin:0 2px 0 0;}
.contentslider-std .sliderkit-nav-clip li{float:left;}
.contentslider-std .sliderkit-nav-clip li a{float:left;background:#424242;}
.contentslider-std .sliderkit-nav-clip li a{height:18px;margin:0;padding:3px 10px 1px;color:#fff;text-decoration:none;}
.contentslider-std .sliderkit-nav-clip li a:hover{background:#666;}
.contentslider-std .sliderkit-nav-clip li.sliderkit-selected{}
.contentslider-std .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background:#ddd;}
/* Panel */
.contentslider-std .sliderkit-panels{
width:870px;
/*width:470px;height:426px;
*/
overflow:hidden;
padding:10px 0;
background:#fff;
min-height: 350px;
}
.contentslider-std .sliderkit-panel{
width:830px;
/*width:450px;height:406px;*/
min-height: 400px;
overflow:auto;padding:0 20px;background:#fff;
}
.contentslider-std .sliderkit-panel h2{margin:5px 0 20px;}
/* Panels buttons */
.contentslider-std .sliderkit-go-btn{position:absolute;top:40%;z-index:10;}
.contentslider-std .sliderkit-go-prev{left:0;}
.contentslider-std .sliderkit-go-next{right:0;}
.contentslider-std .sliderkit-go-btn a{display:block;width:30px;height:40px;cursor:pointer;background:transparent url("../images/arrows-h-big.png") no-repeat 0 0;}
.contentslider-std .sliderkit-go-prev a{background-position:-30px 0;}
.contentslider-std .sliderkit-go-next a{background-position:0 0;}
.contentslider-std .sliderkit-go-prev a:hover{background-position:-90px 0;}
.contentslider-std .sliderkit-go-next a:hover{background-position:-60px 0;}
.contentslider-std .sliderkit-go-btn span{display:none;}
/*
* PHOTOS GALLERIES
* ------------------------------------------------
*/
/*---------------------------------
* Photos gallery > Standard
*---------------------------------*/
.photosgallery-std{width:500px;height:335px;padding:0 0 76px;}
/* Navbar */
.photosgallery-std .sliderkit-nav{left:0;bottom:0;width:480px;padding:10px;background:#000;}
.photosgallery-std .sliderkit-nav-clip ul li{float:left;margin:0;}
.photosgallery-std .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.photosgallery-std .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.photosgallery-std .sliderkit-btn{position:absolute;top:0;}
.photosgallery-std .sliderkit-btn span{display:none;}
.photosgallery-std .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
.photosgallery-std .sliderkit-btn-disable a:hover{cursor:default;}
/* Navbar buttons */
.photosgallery-std .sliderkit-nav .sliderkit-btn a{display:block;width:15px;height:76px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next{right:20px;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-std .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-std .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Panels buttons */
.photosgallery-std .sliderkit-go-btn{position:absolute;top:0;z-index:10;width:50px;height:335px;}
.photosgallery-std .sliderkit-go-prev{left:0;}
.photosgallery-std .sliderkit-go-next{right:0;}
.photosgallery-std .sliderkit-go-btn a{display:block;width:50px;height:335px;opacity:0.6;cursor:pointer;background-color:#fff;background-repeat:no-repeat;background-position:center center;}
.photosgallery-std .sliderkit-go-prev a{background-image:url("../images/slider-arrow-left.gif");}
.photosgallery-std .sliderkit-go-next a{background-image:url("../images/slider-arrow-right.gif");}
.photosgallery-std .sliderkit-btn-disable a{opacity:0/*can be set to any value until 1*/;cursor:default;}
.photosgallery-std .sliderkit-go-btn span{display:none;}
/* Panel */
.photosgallery-std .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*---------------------------------
* Photos gallery > With captions
*---------------------------------*/
.photosgallery-captions{width:500px;height:335px;padding:0 0 76px;}
/* Navbar */
.photosgallery-captions .sliderkit-nav{left:0;bottom:0;width:480px;padding:10px;background:#000;}
.photosgallery-captions .sliderkit-nav-clip ul li{float:left;margin:0;}
.photosgallery-captions .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.photosgallery-captions .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.photosgallery-captions .sliderkit-btn{position:absolute;top:0;}
.photosgallery-captions .sliderkit-btn a{display:block;height:76px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.photosgallery-captions .sliderkit-btn span{display:none;}
.photosgallery-captions .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;}
.photosgallery-captions .sliderkit-btn-disable a:hover{cursor:default;}
/* Buttons > Navbar buttons */
.photosgallery-captions .sliderkit-nav-btn{width:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev{left:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next{right:15px;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Go buttons */
.photosgallery-captions .sliderkit-go-btn{width:10px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev{left:40px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next{right:40px;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a{background-position:0 center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a{background-position:-20px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-go-prev a:focus{background-position:-40px center;}
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a:hover,
.photosgallery-captions .sliderkit-nav .sliderkit-go-next a:focus{background-position:-60px center;}
/* Panel */
.photosgallery-captions .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel > Textbox */
.photosgallery-captions .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;width:500px;height:70px;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-text{height:50px;padding:10px 15px;font-size:0.9em;color:#fff;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.photosgallery-captions .sliderkit-panel .sliderkit-panel-overlay{width:500px;height:70px;background:#000;opacity:0.6;}
/*---------------------------------
* Photos gallery > Vertical
*---------------------------------*/
.photosgallery-vertical{width:500px;height:335px;}
/* Nav */
.photosgallery-vertical .sliderkit-nav{top:0;left:0;width:95px;height:100%;background:#000;}
.photosgallery-vertical .sliderkit-nav-clip{left:7px;}
.photosgallery-vertical .sliderkit-nav-clip ul li{margin:0;padding:0;}
.photosgallery-vertical .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;padding:3px;}
.photosgallery-vertical .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #c5dbe6;}
.photosgallery-vertical .sliderkit-nav-clip ul li img{width:75px;height:50px;margin-bottom:-3px;}
/* Nav buttons */
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn{position:absolute;left:0;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn a{display:block;width:95px;height:16px;background:transparent url("../images/arrows-v.png") no-repeat center 0;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-btn a span{display:none;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev{top:25px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next{bottom:25px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a{background-position:center -89px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a{background-position:center -108px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a:hover,
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:center -126px;}
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a:hover,
.photosgallery-vertical .sliderkit-nav .sliderkit-nav-next a:focus{background-position:center -145px;}
/* Go Buttons */
.photosgallery-vertical .sliderkit-go-btn a{width:200px;height:300px;background:#ccc;opacity:.8;}
.photosgallery-vertical .sliderkit-go-prev{top:0;left:0;}
.photosgallery-vertical .sliderkit-go-next{top:0;right:0;}
/* Panel */
.photosgallery-vertical .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel > Textbox */
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;height:85px;width:500px;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-text{height:65px;padding:10px 15px 10px 115px;font-size:0.9em;color:#fff;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.photosgallery-vertical .sliderkit-panel .sliderkit-panel-overlay{height:85px;width:500px;background:#000;opacity:0.6;}
/*---------------------------------
* Photos gallery > Minimalistic
*---------------------------------*/
.photosgallery-minimalistic{width:500px;height:335px;padding:0 0 50px;}
/* Navbar */
.photosgallery-minimalistic .sliderkit-nav{left:0;bottom:0;width:500px;padding:0;background:#000;}
.photosgallery-minimalistic .sliderkit-nav-clip{margin:0 auto;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li{float:left;margin:0 0 0 0;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:0;opacity:0.4;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li a:hover{cursor:default;}
.photosgallery-minimalistic .sliderkit-nav-clip ul li.sliderkit-selected a{opacity:1;}
/* Panel */
.photosgallery-minimalistic .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/* Panel */
.photosgallery-minimalistic .sliderkit-timer{top:332px;}
/*---------------------------------
* Photos gallery > #5 = 'navpanelautoswitch' option
*---------------------------------*/
.photosgallery-5 .sliderkit-count-lines{left:220px;top:auto;right:auto;bottom:75px;}
/*
* NEWS SLIDERS
* ------------------------------------------------
*/
/*---------------------------------
* News slider > Vertical
*---------------------------------*/
.newslider-vertical{width:560px;height:165px;}
/* Nav */
.newslider-vertical .sliderkit-nav{width:200px;height:165px;}
.newslider-vertical .sliderkit-nav-clip li{height:50px;width:190px;margin-bottom:5px;padding-right:10px;}
.newslider-vertical .sliderkit-nav-clip li.sliderkit-selected{background:transparent url("../images/newslider-arrow.gif") no-repeat right center;}
.newslider-vertical .sliderkit-nav-clip li a{height:37px;width:180px;padding:13px 0 0 10px;text-align:left;font-size:1.3em;color:#fff;text-decoration:none;background:#00668d;}
.newslider-vertical .sliderkit-nav-clip li a:hover,
.newslider-vertical .sliderkit-nav-clip li a:focus{color:#fff;}
/* Panel */
.newslider-vertical .sliderkit-panels{position:absolute;left:200px;width:358px;height:158px;overflow:hidden;border:1px solid #ccc;}
.newslider-vertical .sliderkit-panel{left:0;top:0;width:338px;height:138px;padding:10px;background:#fff;}
/* News block */
.newslider-vertical .sliderkit-news h3,
.newslider-vertical .sliderkit-news h3 a{color:#000;font-weight:bold;}
.newslider-vertical .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.newslider-vertical .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.newslider-vertical .sliderkit-news p{margin:0;}
.newslider-vertical .sliderkit-news-readmore{position:absolute;right:10px;bottom:10px;}
/*---------------------------------
* News slider > Horizontal
*---------------------------------*/
.newslider-horizontal{width:550px;height:165px;}
/* Nav */
.newslider-horizontal .sliderkit-nav{position:absolute;bottom:0;width:550px;height:50px;}
.newslider-horizontal .sliderkit-nav-clip li{float:left;height:35px;width:110px;padding:10px 0 0;margin:0;}
.newslider-horizontal .sliderkit-nav-clip li.sliderkit-selected{background:transparent url("../images/newslider-arrow-up.gif") no-repeat center 0;}
.newslider-horizontal .sliderkit-nav-clip li a{height:32px;width:89px;margin:0;padding:3px 10px 0;text-align:left;font-size:1em;color:#fff;text-decoration:none;border-right:1px solid #fff;background:#00668d;}
.newslider-horizontal .sliderkit-nav-clip li a:hover,
.newslider-horizontal .sliderkit-nav-clip li a:focus{color:#fff;}
/* Panel */
.newslider-horizontal .sliderkit-panels{position:absolute;left:0;width:550px;height:115px;overflow:hidden;}
.newslider-horizontal .sliderkit-panel{left:0;top:0;width:530px;height:95px;padding:10px;background:#fff;}
/* News block */
.newslider-horizontal .sliderkit-news h3,
.newslider-horizontal .sliderkit-news h3 a{color:#000;font-weight:bold;}
.newslider-horizontal .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.newslider-horizontal .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.newslider-horizontal .sliderkit-news p{margin:0;}
/*---------------------------------
* News slider > Minimal
*---------------------------------*/
.newslider-minimal{width:570px;height:16px;}
/* Navbar */
.newslider-minimal .sliderkit-panels{float:left;position:relative;width:450px;}
.newslider-minimal .sliderkit-panel{height:16px;}
.newslider-minimal .sliderkit-panel a{display:block;}
.newslider-minimal .sliderkit-panel a:hover{text-decoration:underline;}
/* Buttons > Disable */
.newslider-minimal .sliderkit-legend{float:left;margin-right:10px;background:yellow;}
/*
* CAROUSEL
* ------------------------------------------------
*/
/*---------------------------------
* Carousel > Demo #1
*---------------------------------*/
.carousel-demo1{width:500px;height:84px;}
/* Navbar */
.carousel-demo1 .sliderkit-nav{left:0;bottom:0;width:480px;height:64px;padding:10px;background:#ccc;}
.carousel-demo1 .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-demo1 .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-demo1 .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Buttons */
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next{right:20px;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-demo1 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-demo1 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-demo1 .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #2
*---------------------------------*/
.carousel-demo2{width:400px;height:84px;}
/* Navbar */
.carousel-demo2 .sliderkit-nav{left:0;bottom:0;width:380px;height:64px;padding:10px;background:#ccc;}
.carousel-demo2 .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-demo2 .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-demo2 .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Navbar buttons */
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next{right:20px;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-demo2 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-demo2 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-demo2 .sliderkit-nav .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #3
*---------------------------------*/
#carousel-demo3{width:300px;height:84px;}
#carousel-demo3 .sliderkit-nav{width:280px;}
/*---------------------------------
* Carousel > Continuous
*---------------------------------*/
.carousel-continuous{width:570px;height:84px;}
/* Navbar */
.carousel-continuous .sliderkit-nav{left:0;bottom:0;width:550px;height:64px;padding:10px;background:#ccc;}
.carousel-continuous .sliderkit-nav-clip ul li{float:left;margin:0 5px 0 0;}
.carousel-continuous .sliderkit-nav-clip ul li a{display:block;width:96px;height:64px;overflow:hidden;margin:0;opacity:0.8;}
.carousel-continuous .sliderkit-nav-clip ul li a:hover{opacity:1;}
/* Navbar buttons */
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:0;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn span{display:none;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-btn a{display:block;width:15px;height:84px;background:transparent url("../images/arrows-h.png") no-repeat center 0;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev{left:10px;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next{right:10px;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a:hover,
.carousel-continuous .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a:hover,
.carousel-continuous .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Buttons > Disable */
.carousel-continuous .sliderkit-nav .sliderkit-btn-disable{opacity:0.3/*can be set to any value until 1*/;cursor:default;}
/*---------------------------------
* Carousel > Demo #5
*---------------------------------*/
#carousel-demo5{width:700px;height:180px;margin:20px 0 0;}
/* Navbar */
#carousel-demo5 .sliderkit-nav{left:0;bottom:0;width:700px;height:180px;padding:0;background:none;}
#carousel-demo5 .sliderkit-nav-clip ul li{float:left;width:130px;margin:0 60px 0 0;text-align:left;}
#carousel-demo5 .sliderkit-nav-clip ul li > a{display:block;width:130px;height:87px;overflow:hidden;margin:0;opacity:0.8;border:1px solid #eee;}
#carousel-demo5 .sliderkit-nav-clip ul li > a:hover{opacity:1;}
#carousel-demo5 .sliderkit-nav-clip ul li h3{margin:5px 0;font-size:1em;}
#carousel-demo5 .sliderkit-nav-clip ul li p{font-size:0.9em;}
#carousel-demo5 .sliderkit-nav-clip ul li .rlt-link-readmore:hover{text-decoration:underline;}
/* Buttons */
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn{position:absolute;top:74px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn span{display:none;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-btn a{display:block;width:26px;height:31px;background:transparent url("../images/arrows-h-btn.gif") no-repeat 0 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev{left:20px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next{right:20px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a{background-position:0 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a{background-position:0 -31px;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a:hover,
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-26px 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a:hover,
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-26px -31px;}
#carousel-demo5 .sliderkit-nav .sliderkit-btn-disable a{cursor:default;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-prev.sliderkit-btn-disable a{background-position:-52px 0;}
#carousel-demo5 .sliderkit-nav .sliderkit-nav-next.sliderkit-btn-disable a{background-position:-52px -31px;}
/*
* SLIDESHOW
* ------------------------------------------------
*/
/*---------------------------------
* Slideshow > Basic
*---------------------------------*/
.slideshow-standard{width:500px;height:335px;}
/* Navbar */
.slideshow-standard .sliderkit-nav{left:0;bottom:0;width:295px;padding:10px 0 10px 205px;background:#000;}
.slideshow-standard .sliderkit-nav-clip ul li{float:left;margin:0;}
.slideshow-standard .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.slideshow-standard .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Buttons */
.slideshow-standard .sliderkit-btn a{position:relative;float:left;display:block;width:20px;height:23px;margin:0 5px;background:transparent url("../images/slideshow-btns.gif") no-repeat 0 0;}
.slideshow-standard .sliderkit-btn span{display:none;}
/* Play button */
.slideshow-standard .sliderkit-play-btn a{background-position:-50px 0;}
.slideshow-standard .sliderkit-play-btn a:hover,
.slideshow-standard .sliderkit-play-btn a:focus{background-position:-50px -23px;}
.slideshow-standard .sliderkit-pause-btn a{background-position:-75px 0;}
.slideshow-standard .sliderkit-pause-btn a:hover,
.slideshow-standard .sliderkit-pause-btn a:focus{background-position:-75px -23px;}
/* Go buttons */
.slideshow-standard .sliderkit-go-prev a{background-position:-25px 0;}
.slideshow-standard .sliderkit-go-next a{background-position:0 0;}
.slideshow-standard .sliderkit-go-prev a:hover,
.slideshow-standard .sliderkit-go-prev a:focus{background-position:-25px -23px;}
.slideshow-standard .sliderkit-go-next a:hover,
.slideshow-standard .sliderkit-go-next a:focus{background-position:0 -23px;}
/* Panel */
.slideshow-standard .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*---------------------------------
* Slideshow > + Carousel
*---------------------------------*/
.slideshow-carousel{width:500px;height:335px;padding:0 0 40px;}
/* Navbar */
.slideshow-carousel .sliderkit-nav{left:0;bottom:40px;width:480px;padding:10px;}
.slideshow-carousel .sliderkit-nav-clip ul li{float:left;margin:0;}
.slideshow-carousel .sliderkit-nav-clip ul li a{display:block;width:75px;height:50px;overflow:hidden;margin:0;padding:3px;}
.slideshow-carousel .sliderkit-nav-clip ul li.sliderkit-selected a{padding:0;border:3px solid #fff;}
/* Controls */
.slideshow-carousel .sliderkit-controls{position:absolute;bottom:0;left:0;width:295px;padding:10px 0 10px 205px;background:#000;}
/* Go buttons */
.slideshow-carousel .sliderkit-go-btn a,
.slideshow-carousel .sliderkit-play-btn a{position:relative;float:left;display:block;width:20px;height:23px;margin:0 5px;background:transparent url("../images/slideshow-btns.gif") no-repeat 0 0;}
.slideshow-carousel .sliderkit-btn span,
.slideshow-carousel .sliderkit-play-btn span{display:none;}
.slideshow-carousel .sliderkit-play-btn a{background-position:-50px 0;}
.slideshow-carousel .sliderkit-play-btn a:hover,
.slideshow-carousel .sliderkit-play-btn a:focus{background-position:-50px -23px;}
.slideshow-carousel .sliderkit-pause-btn a{background-position:-75px 0;}
.slideshow-carousel .sliderkit-pause-btn a:hover,
.slideshow-carousel .sliderkit-pause-btn a:focus{background-position:-75px -23px;}
.slideshow-carousel .sliderkit-go-prev a{background-position:-25px 0;}
.slideshow-carousel .sliderkit-go-next a{background-position:0 0;}
.slideshow-carousel .sliderkit-go-prev a:hover,
.slideshow-carousel .sliderkit-go-prev a:focus{background-position:-25px -23px;}
.slideshow-carousel .sliderkit-go-next a:hover,
.slideshow-carousel .sliderkit-go-next a:focus{background-position:0 -23px;}
/* Panel */
.slideshow-carousel .sliderkit-panel{top:0;left:0;width:500px;height:335px;}
/*
* TABS
* ------------------------------------------------
*/
/*---------------------------------
* Tabs > Standard
*---------------------------------*/
.tabs-standard{width:550px;height:185px;}
/* Nav */
.tabs-standard .sliderkit-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-standard .sliderkit-nav-clip{margin:0;}
.tabs-standard .sliderkit-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-standard .sliderkit-nav-clip li,
.tabs-standard .sliderkit-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-standard .sliderkit-nav-clip li a{height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-standard .sliderkit-nav-clip li.sliderkit-selected{background-position:0 -44px;}
.tabs-standard .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-standard .sliderkit-panels{width:528px;height:140px;overflow:hidden;padding:10px;border:1px solid #a3a3a3;background:#fff;}
.tabs-standard .sliderkit-panel{width:528px;height:140px;background:#fff;}
/* News block */
.tabs-standard .sliderkit-news h3,
.tabs-standard .sliderkit-news h3 a{color:#000;font-weight:bold;}
.tabs-standard .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-standard .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-standard .sliderkit-news p{margin:0;}
/*---------------------------------
* Tabs > No height
*---------------------------------*/
.tabs-noheight{width:550px;}
/* Nav */
.tabs-noheight .sliderkit-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-noheight .sliderkit-nav-clip{margin:0;}
.tabs-noheight .sliderkit-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-noheight .sliderkit-nav-clip li,
.tabs-noheight .sliderkit-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-noheight .sliderkit-nav-clip li a{height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-noheight .sliderkit-nav-clip li.sliderkit-selected{background-position:0 -44px;}
.tabs-noheight .sliderkit-nav-clip li.sliderkit-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-noheight .sliderkit-panels{width:528px;padding:10px;border:1px solid #a3a3a3;background:#fff;}
.tabs-noheight .sliderkit-panel{position:relative;}
/* News block */
.tabs-noheight .sliderkit-news h3,
.tabs-noheight .sliderkit-news h3 a{color:#000;font-weight:bold;}
.tabs-noheight .sliderkit-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-noheight .sliderkit-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-noheight .sliderkit-news p{margin:0;}
/*---------------------------------
* Tabs > Imbricate
*---------------------------------*/
.tabs-imbricate{width:550px;height:200px;}
.tabs-imbricate img{border:none;}
/* Nav */
.tabs-imbricate .customtabs-nav{position:relative;width:550px;height:22px;text-align:left;}
.tabs-imbricate .customtabs-nav-clip{margin:0;}
.tabs-imbricate .customtabs-nav-clip ul{position:relative;left:0;top:0;list-style:none;margin:0;padding:0;}
.tabs-imbricate .customtabs-nav-clip li{height:22px;padding:0 0 0 5px;margin:0 2px 0 0;}
.tabs-imbricate .customtabs-nav-clip li,
.tabs-imbricate .customtabs-nav-clip li a{float:left;background:transparent url("../images/tabs-menu.gif") no-repeat 0 0;}
.tabs-imbricate .customtabs-nav-clip li a{display:block;overflow:hidden;height:18px;margin:0;padding:4px 10px 0;color:#fff;text-decoration:none;background-position:right -22px;}
.tabs-imbricate .customtabs-nav-clip li.customtabs-selected{background-position:0 -44px;}
.tabs-imbricate .customtabs-nav-clip li.customtabs-selected a{color:#000;background-position:right -66px;}
/* Panel */
.tabs-imbricate .customtabs-panels{width:528px;height:150px;padding:10px;border:1px solid #a3a3a3;}
.tabs-imbricate .customtabs-panel{z-index:1;position:absolute;overflow:hidden;width:528px;height:150px;background:#fff;}
.tabs-imbricate .customtabs-panel-active{z-index:5;}
.tabs-imbricate .customtabs-panel-old{z-index:4;}
/* News block */
.tabs-imbricate .customtabs-news h3,
.tabs-imbricate .customtabs-news h3 a{color:#000;font-weight:bold;}
.tabs-imbricate .customtabs-news h3{font-size:1.2em;margin:0 0 15px;}
.tabs-imbricate .customtabs-news img{float:right;width:130px;height:auto;margin:0 0 0 10px;overflow:hidden;}
.tabs-imbricate .customtabs-news p{margin:0;}
/* Imbricated carousel */
.tabs-imbricate .carousel-demo2{width:528px;}
.tabs-imbricate .carousel-demo2 .sliderkit-nav{width:508px;}
/*---------------------------------
* Tabs > Pagination
*---------------------------------*/
.pagination-basic .sliderkit-nav{margin:0 0 10px;text-align:right;}
.pagination-basic .sliderkit-nav li{display:inline;margin:0 2px;}
.pagination-basic .sliderkit-nav li a{padding:1px 3px;border:1px solid #ccc;text-decoration:none;}
.pagination-basic .sliderkit-nav li.sliderkit-selected a,
.pagination-basic .sliderkit-nav li a:hover{color:#fff;border:1px solid #666;background:#666;}
/* Content block */
.pagination-basic .sliderkit-block{margin:0 0 10px;padding:15px;border:1px solid #666;}
/*
* MENUS
* ------------------------------------------------
*/
/*---------------------------------
* Menus > Vertical menu list
*---------------------------------*/
.vertical-menulist{width:200px;height:400px;margin:15px 0 0;}
/* Nav */
.vertical-menulist .sliderkit-nav-clip{text-align:left;border:1px solid #ccc;}
.vertical-menulist .sliderkit-nav-clip,
.vertical-menulist .sliderkit-nav-clip ul li{width:198px !important;margin:0;}
.vertical-menulist .sliderkit-nav-clip ul li a{display:block;padding:5px 10px;}
.vertical-menulist .sliderkit-nav-clip ul li a:hover{color:#fff;background:#666;}
/* Buttons */
.vertical-menulist .sliderkit-controls{width:200px;margin:0 0 5px;text-align:center;}
.vertical-menulist .sliderkit-controls .sliderkit-btn-disable a{cursor:default;color:#b2ceea;}
/*
* EXTERNAL CONTROLS
* ------------------------------------------------
*/
#content .sliderkit-pagination ul{display:inline;margin:0 0 10px;list-style:none;}
#content .sliderkit-pagination ul li{display:inline;}
#content .sliderkit-pagination ul li.selected a{color:#fff;background:#000;}
#content .sliderkit-pagination ul li a{padding:5px;}
#content .sliderkit-pagination ul li a:hover{color:#fff;background:#006a91;}
/*
* ADD-ONS
* ------------------------------------------------
*/
/*---------------------------------
* Add-on > Counter
*---------------------------------*/
/* Example 01 */
.counter-demo1 .sliderkit-panel .sliderkit-panel-textbox{bottom:0;left:0;width:500px;height:70px;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-text{height:50px;padding:10px 15px;font-size:0.9em;color:#fff;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-text h4{height:auto;margin:0 0 7px;line-height:1.1em;font-size:1.1em;font-weight:bold;border:none;}
.counter-demo1 .sliderkit-panel .sliderkit-panel-overlay{width:500px;height:70px;background:#000;opacity:0.6;}
/* Example 02 */
.counter-demo2{height:120px;}
.counter-demo2 .sliderkit-count-lines{position:relative;text-align:center;color:#000;background:none;}
.counter-demo2 .sliderkit-count-current{font-weight:bold;}
/*---------------------------------
* Add-on > DelayCaption
*---------------------------------*/
/* Example 01 */
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-textbox{bottom:0;}
/* Example 02 */
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-textbox{width:150px;height:335px;}
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-text{width:120px;height:315px;}
.delaycaptions-02 .sliderkit-panel .sliderkit-panel-overlay{width:150px;height:335px;}
/*---------------------------------
* Add-on > Timer
*---------------------------------*/
/* Example 01 */
.timer-demo01{height:335px;padding:0;}
.timer-demo01 .sliderkit-timer-wrapper{position:absolute;z-index:10;/*top:323px;*/bottom:0;width:500px;height:8px;opacity:0.8;/*background:#0f5f7e;*/}
.timer-demo01 .sliderkit-timer{top:0;height:8px;background:#0089BE url("../images/timer-img01.gif") repeat-x 0 center;}
/*---------------------------------
* Add-on > ImageFx
*---------------------------------*/
/* Example 01 */
.transition-demo01{padding:0 36px 5px;}
.transition-demo01 .sliderkit-go-btn{top:45%;width:30px;height:30px;}
.transition-demo01 .sliderkit-go-btn a{width:30px;height:30px;background:#fff url("../images/h-arrows-round.gif") no-repeat 0 0;}
.transition-demo01 .sliderkit-go-prev{left:0px;}
.transition-demo01 .sliderkit-go-prev a{background-position:0 0;}
.transition-demo01 .sliderkit-go-prev a:hover{background-position:-60px 0;}
.transition-demo01 .sliderkit-go-next{right:0px;}
.transition-demo01 .sliderkit-go-next a{background-position:-30px 0;}
.transition-demo01 .sliderkit-go-next a:hover{background-position:-90px 0;}
.transition-demo01 .sliderkit-btn-disable{display:none;opacity:0/*can be set to any value until 1*/;cursor:default;}
.transition-demo01 .sliderkit-btn-disable a:hover{cursor:default;}
/* Example 02 */
.transition-demo01 .sliderkit-timer-wrapper{position:absolute;bottom:0;width:500px;height:5px;background:#000;}
.transition-demo01 .sliderkit-timer{top:0;height:5px;background:#0089BE url("../images/timer-img01.gif") repeat-x 0 center;}
/* Example 02 > Buttons > Go buttons */
.transition-demo02 .sliderkit-nav-btn{width:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev{left:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next{right:15px;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a{background-position:-89px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a{background-position:-108px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-nav-prev a:focus{background-position:-126px center;}
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-nav-next a:focus{background-position:-145px center;}
/* Example 02 > Buttons > Go buttons */
.transition-demo02 .sliderkit-go-btn{width:10px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev{left:40px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next{right:40px;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a{background-position:0 center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next a{background-position:-20px center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-go-prev a:focus{background-position:-40px center;}
.transition-demo02 .sliderkit-nav .sliderkit-go-next a:hover,
.transition-demo02 .sliderkit-nav .sliderkit-go-next a:focus{background-position:-60px center;} | 0.167015 | 0.038975 |
.yui3-datatable-table .editable {
display: block;
background-color: #3399FF;
height: 14px;
}
.wegas-pmg-reservation .past .notEditable {
background-color: #ffbdbd;
}
.wegas-pmg-reservation .past .editable {
background-color: #bddeff;
color: rgb(80, 80, 80);
font-size: 6pt;
text-align: center;
}
.yui3-datatable-table .notEditable {
display: block;
background-color: #FF0000;
height: 14px;
}
.yui3-datatable-table .engagementDelay,
.yui3-datatable-table .delay .editable {
display: block;
background-image: url(../../wegas-pmg/images/hatching.png);
background-repeat: repeat;
height: 14px;
}
.yui3-datatable-table .fill100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
}
.yui3-datatable-table .fill0to25 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 75%;
}
.yui3-datatable-table .fill0to50 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 50%;
}
.yui3-datatable-table .fill0to75 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 25%;
}
.yui3-datatable-table .fill25to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 25%;
}
.yui3-datatable-table .fill50to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 50%;
}
.yui3-datatable-table .fill75to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 75%;
}
/*tbody .past span {
opacity: 0.3;
}*/
tbody .past .activity {
opacity: 1;
}
.body .yui3-datatable-cell.schedulecolumn {
border-left: 1px solid lightgray;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.yui3-skin-sam tbody .schedulecolumn.past {
background: #f7f7f7;
}
.yui3-datatable-columns .schedulecolumn.present {
/*background-image: url(../../wegas-pmg/images/next.png), url(../../wegas-pmg/images/h2.png);*/
/*background-repeat: no-repeat, repeat-x;*/
/*background-position: left, center;*/
background: #0981A9;
color: white;
}
.body .yui3-datatable-columns .past {
background-color: #c0c0c0;
background-image: none;
}
.yui3-datatable-data .right {
text-align: right;
}
.yui3-datatable-data .center {
text-align: center;
}
/* Assignment plugin CSS */
.yui3-datatable-col-assignments {
white-space: nowrap;
vertical-align: middle;
}
.yui3-datatable-col-assignments .assignment {
display: block;
float: left;
width: 17px;
text-align: center;
}
.yui3-datatable-col-assignments .assignment span {
display: block;
float: left;
background-repeat: no-repeat;
height: 16px;
width: 16px;
}
.yui3-datatable-col-assignments .assignment .assign {
background-image: url(../../wegas-pmg/images/add.png);
}
.yui3-datatable-col-assignments .tasks {
display: inline-block;
white-space: normal;
}
.yui3-datatable-col-assignments .task {
display: inline-block;
position: relative;
margin: 0 1px;
}
.yui3-datatable-col-assignments .task:hover .label {
background: #0981A9;
color: white;
}
.yui3-datatable-col-assignments .task .label {
cursor: move;
padding: 0 3px;
display: block;
font-style: normal;
text-align: center;
line-height: 17px;
border: 1px solid gray;
/* margin: 0; */
color: #000000;
letter-spacing: -2px;
padding-right: 5px;
border-radius: 2px;
}
.tasks .task .menu {
display: none;
position: absolute;
padding-top: 3px;
margin-top: 17px;
z-index: 1;
top: 0;
left: -10px;
width: 41px;
}
.tasks .task .remove,
.tasks .task .dirleft,
.tasks .task .dirright {
height: 16px;
width: 16px;
background-image: url(../../wegas-pmg/images/remove.png);
cursor: pointer;
top: 37px;
display: inline-block;
}
.tasks .task:hover .menu,
.tasks .task:hover .menu:hover {
display: block;
}
.tasks .task .dirleft {
background: url(../../wegas-pmg/images/move-left.png) -3px;
width: 10px;
}
.tasks .task .dirright {
background: url(../../wegas-pmg/images/move-right.png) -3px;
width: 10px;
}
/* bac plugin */
.yui3-datatable-table input.invalid {
border-color: #E43737;
}
/* Line completeness plugin*/
.task-execution-page .yui3-datatable-table .pmg-line-completeness-complete,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-index,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-label,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-Realized {
background-color: #E5FFE5;
}
.task-execution-page .yui3-datatable-table .pmg-line-completeness-started,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-index,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-label,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-Realized,
.yui3-menu-content > button.pmg-line-completeness-started {
background-color: #FFFDC2;
}
.yui3-button.pmg-menu-invalid {
opacity: 0.8;
cursor: default;
font-style: italic;
}
/* --------------- SlidePanel css ------------------------------------*/
.wegas-pmg-slidepanel .wegas-pmg-slidepanel-content {
overflow: hidden;
width: 100%;
}
/* Legends */
.pmg-legend {
margin: 5px 10px 10px;
padding: 1px 0;
}
.pmg-legend > div {
font-style: italic;
color: #ADADAE;
padding: 0 10px 0 0;
line-height: 1.1em;
display: inline-block;
*display: inline;
*zoom: 1;
}
.pmg-legend > div > div {
width: 2em;
height: 1em;
display: inline-block;
*display: inline;
*zoom: 1;
margin-right: 3px;
}
.pmg-legend .engagementDelay {
background-image: url(../../wegas-pmg/images/hatching.png);
background-repeat: repeat;
}
.pmg-legend .editable {
background-color: #3399FF;
}
.pmg-legend .fill100 {
background-color: rgba(51, 153, 255, 0.3);
}
.pmg-legend .notEditable {
background-color: #FF0000;
}
.pmg-legend .planification {
background-color: rgba(135, 135, 135, 0.3);
}
.onclickpopup {
text-decoration: underline;
cursor: pointer;
}
.pmg-popup-overlay {
background: white;
border: 1px solid lightgray;
box-shadow: 1px 2px 4px #6d6d6d;
z-index: 100;
/* position: absolute; */
font-size: 8pt;
min-width: 12em;
/* padding: 5px; */
}
.pmg-popup-overlay .yui3-widget-bd .subtitle {
color: rgb(28, 28, 28);
margin-bottom: 3px;
font-weight: bold;
font-size: 8.5pt;
}
.pmg-popup-overlay .yui3-widget-hd {
font-size: 9pt;
font-weight: bold;
padding: 5px 10px 0;
color: rgb(28, 28, 28);
}
.wegas-pmg-resourcespanels-content .resourcepanel-warn .yui3-datatable-col-label {
border-left: 3px solid rgb(201, 0, 0) !important;
border-radius: 7px 0px 0px 7px;
}
.indicators-management .yui3-numericaxis + .yui3-numericaxis {
display: none;
} | wegas-app/src/main/webapp/wegas-pmg/css/wegas-pmgwidget.css |
.yui3-datatable-table .editable {
display: block;
background-color: #3399FF;
height: 14px;
}
.wegas-pmg-reservation .past .notEditable {
background-color: #ffbdbd;
}
.wegas-pmg-reservation .past .editable {
background-color: #bddeff;
color: rgb(80, 80, 80);
font-size: 6pt;
text-align: center;
}
.yui3-datatable-table .notEditable {
display: block;
background-color: #FF0000;
height: 14px;
}
.yui3-datatable-table .engagementDelay,
.yui3-datatable-table .delay .editable {
display: block;
background-image: url(../../wegas-pmg/images/hatching.png);
background-repeat: repeat;
height: 14px;
}
.yui3-datatable-table .fill100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
}
.yui3-datatable-table .fill0to25 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 75%;
}
.yui3-datatable-table .fill0to50 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 50%;
}
.yui3-datatable-table .fill0to75 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-right: 25%;
}
.yui3-datatable-table .fill25to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 25%;
}
.yui3-datatable-table .fill50to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 50%;
}
.yui3-datatable-table .fill75to100 {
display: block;
background-color: #3399FF;
height: 14px;
opacity: 0.3;
margin-left: 75%;
}
/*tbody .past span {
opacity: 0.3;
}*/
tbody .past .activity {
opacity: 1;
}
.body .yui3-datatable-cell.schedulecolumn {
border-left: 1px solid lightgray;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.yui3-skin-sam tbody .schedulecolumn.past {
background: #f7f7f7;
}
.yui3-datatable-columns .schedulecolumn.present {
/*background-image: url(../../wegas-pmg/images/next.png), url(../../wegas-pmg/images/h2.png);*/
/*background-repeat: no-repeat, repeat-x;*/
/*background-position: left, center;*/
background: #0981A9;
color: white;
}
.body .yui3-datatable-columns .past {
background-color: #c0c0c0;
background-image: none;
}
.yui3-datatable-data .right {
text-align: right;
}
.yui3-datatable-data .center {
text-align: center;
}
/* Assignment plugin CSS */
.yui3-datatable-col-assignments {
white-space: nowrap;
vertical-align: middle;
}
.yui3-datatable-col-assignments .assignment {
display: block;
float: left;
width: 17px;
text-align: center;
}
.yui3-datatable-col-assignments .assignment span {
display: block;
float: left;
background-repeat: no-repeat;
height: 16px;
width: 16px;
}
.yui3-datatable-col-assignments .assignment .assign {
background-image: url(../../wegas-pmg/images/add.png);
}
.yui3-datatable-col-assignments .tasks {
display: inline-block;
white-space: normal;
}
.yui3-datatable-col-assignments .task {
display: inline-block;
position: relative;
margin: 0 1px;
}
.yui3-datatable-col-assignments .task:hover .label {
background: #0981A9;
color: white;
}
.yui3-datatable-col-assignments .task .label {
cursor: move;
padding: 0 3px;
display: block;
font-style: normal;
text-align: center;
line-height: 17px;
border: 1px solid gray;
/* margin: 0; */
color: #000000;
letter-spacing: -2px;
padding-right: 5px;
border-radius: 2px;
}
.tasks .task .menu {
display: none;
position: absolute;
padding-top: 3px;
margin-top: 17px;
z-index: 1;
top: 0;
left: -10px;
width: 41px;
}
.tasks .task .remove,
.tasks .task .dirleft,
.tasks .task .dirright {
height: 16px;
width: 16px;
background-image: url(../../wegas-pmg/images/remove.png);
cursor: pointer;
top: 37px;
display: inline-block;
}
.tasks .task:hover .menu,
.tasks .task:hover .menu:hover {
display: block;
}
.tasks .task .dirleft {
background: url(../../wegas-pmg/images/move-left.png) -3px;
width: 10px;
}
.tasks .task .dirright {
background: url(../../wegas-pmg/images/move-right.png) -3px;
width: 10px;
}
/* bac plugin */
.yui3-datatable-table input.invalid {
border-color: #E43737;
}
/* Line completeness plugin*/
.task-execution-page .yui3-datatable-table .pmg-line-completeness-complete,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-index,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-label,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-complete .yui3-datatable-col-Realized {
background-color: #E5FFE5;
}
.task-execution-page .yui3-datatable-table .pmg-line-completeness-started,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-index,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-label,
.gantt-execution-page .yui3-datatable-table .pmg-line-completeness-started .yui3-datatable-col-Realized,
.yui3-menu-content > button.pmg-line-completeness-started {
background-color: #FFFDC2;
}
.yui3-button.pmg-menu-invalid {
opacity: 0.8;
cursor: default;
font-style: italic;
}
/* --------------- SlidePanel css ------------------------------------*/
.wegas-pmg-slidepanel .wegas-pmg-slidepanel-content {
overflow: hidden;
width: 100%;
}
/* Legends */
.pmg-legend {
margin: 5px 10px 10px;
padding: 1px 0;
}
.pmg-legend > div {
font-style: italic;
color: #ADADAE;
padding: 0 10px 0 0;
line-height: 1.1em;
display: inline-block;
*display: inline;
*zoom: 1;
}
.pmg-legend > div > div {
width: 2em;
height: 1em;
display: inline-block;
*display: inline;
*zoom: 1;
margin-right: 3px;
}
.pmg-legend .engagementDelay {
background-image: url(../../wegas-pmg/images/hatching.png);
background-repeat: repeat;
}
.pmg-legend .editable {
background-color: #3399FF;
}
.pmg-legend .fill100 {
background-color: rgba(51, 153, 255, 0.3);
}
.pmg-legend .notEditable {
background-color: #FF0000;
}
.pmg-legend .planification {
background-color: rgba(135, 135, 135, 0.3);
}
.onclickpopup {
text-decoration: underline;
cursor: pointer;
}
.pmg-popup-overlay {
background: white;
border: 1px solid lightgray;
box-shadow: 1px 2px 4px #6d6d6d;
z-index: 100;
/* position: absolute; */
font-size: 8pt;
min-width: 12em;
/* padding: 5px; */
}
.pmg-popup-overlay .yui3-widget-bd .subtitle {
color: rgb(28, 28, 28);
margin-bottom: 3px;
font-weight: bold;
font-size: 8.5pt;
}
.pmg-popup-overlay .yui3-widget-hd {
font-size: 9pt;
font-weight: bold;
padding: 5px 10px 0;
color: rgb(28, 28, 28);
}
.wegas-pmg-resourcespanels-content .resourcepanel-warn .yui3-datatable-col-label {
border-left: 3px solid rgb(201, 0, 0) !important;
border-radius: 7px 0px 0px 7px;
}
.indicators-management .yui3-numericaxis + .yui3-numericaxis {
display: none;
} | 0.310694 | 0.064949 |
/* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html, body {
height: 100%;
font-size: 1.1em;
line-height: inherit !important;
color: #666;
line-height: 1.4 !important;
font-family: 'Lato', sans-serif;
}
html {
}
html, body, h1, h2, h3, h4, h5, h6, p, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, p:first-child {
/*font-size: inherit !important;*/
/*line-height: inherit !important;*/
margin-top: inherit !important;
}
*, :after, :before {
box-sizing: initial;
}
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important;
}
/*
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.clearfix:after {
clear: both;
}
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after,
*:first-letter,
*:first-line {
background: transparent !important;
color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
a.typeform-share.button {
padding: 0 1em;
font-weight: normal;
border: solid #6354f3 3px;
border-radius: 10px;
background: white;
color: #6354f3;
text-decoration: none;
font-family: Lato, sans-serif;
line-height: inherit;
float: none;
display: inline-block;
}
.highlight {
font-weight: bold;
color: #6354f3;
}
.highlight.pink {
color: #ff6678;
}
.highlight.grey {
color: #666;
}
.bold {
font-weight: 600 !important;
}
.max-width-large {
margin: auto;
max-width: 1000px;
}
.max-width {
margin: auto;
max-width: 900px;
}
.max-width-2 {
margin: auto;
max-width: 750px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.float-left, .float-right {
width: 40%;
text-align: center;
}
.float-left img, .float-right img {
max-width: 300px;
}
.navbar {
margin: auto;
padding: 0.5em 3em;
max-width: 1200px;
height: 50px;
font-size: 1em;
}
.navbar .logo, .navbar ul {
display: inline-block;
width: 49%;
margin: 0;
padding: 0;
}
.navbar .logo img {
margin: 12px 0;
height: 55px;
max-height: 12vw;
}
.navbar ul {
text-align: right;
}
.navbar ul li {
display: inline-block;
padding: 10px 25px;
margin: 0 15px;
/*font-weight: bold;*/
border-radius: 30px;
color: #FF6678;
background: #eee;
transition: background 0.4s;
}
.navbar ul li:hover {
background: #ddd;
}
.landing-panel {
margin: 2.5em auto -4em auto;
padding: 3em;
max-width: 1200px;
color: #666;
/*background-image: url('../img/landing-bot.png');*/
background-position: top right;
background-repeat: no-repeat;
background-size: contain;
}
.landing-panel img.landing-bot, .landing-panel img.landing-bot-2 {
-webkit-filter: hue-rotate(-13deg) saturate(140%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-13deg) saturate(140%);
}
.landing-panel img.landing-bot {
position: absolute;
right: 100px;
margin-top: -230px;
width: 250px;
z-index: -1;
border-radius: 6px;
}
.landing-panel img.landing-bot-2 {
display: none;
}
.landing-panel .example-demo {
float: right;
width: 300px;
height: 500px;
margin-top: -270px;
margin-right: 50px;
text-align: center;
}
.landing-panel .example-demo img {
max-width: 100%;
z-index: 10;
position: relative;
pointer-events: none;
}
.landing-panel .example-demo > iframe {
position: relative;
top: -521px;
width: 249px;
height: 437px;
border: none;
}
.landing-panel h2 span, .landing-panel h3 span {
font-weight: normal;
background: rgba(255,255,255,0.8);
}
.landing-panel h2 {
font-size: 3.2em;
}
.landing-panel h3 {
margin-top: 1em !important;
margin-bottom: 1.5em;
font-size: 1.3em;
}
.landing-panel .example-demo .gradient {
display: none;
}
.landing-panel a.brexit {
border-bottom: 6px solid #ea3899;
color: inherit;
}
.landing-panel a.brexit:hover {
color: #ea3899;
}
.landing-panel a {
text-decoration: none;
cursor: pointer;
}
.landing-panel a:hover h4 {
opacity: 0.8;
}
.landing-panel a.why-should-i {
display: block;
margin: 8em auto 0 auto;
width: 250px;
height: 90px;
}
.landing-panel a.why-should-i h4 {
text-align: center;
font-size: 1.4em;
font-weight: 400;
color: #6354f3;
}
.landing-panel a.why-should-i h4 > span {
/*position: absolute;*/
/*display: block;*/
text-align: center;
/*left: 0;*/
/*right: 0;*/
}
.landing-panel a.why-should-i h4 > span:nth-child(2) {
margin-top: 10px;
position: absolute;
display: block;
width: 250px;
}
.landing-panel a.why-should-i h4 img {
left: auto;
right: auto;
display: block;
margin: 0.1em auto;
width: 25px;
transition: margin 0.2s;
}
.landing-panel a.why-should-i:hover h4 img {
margin-top: 0.3em;
}
.landing-panel a.typeform-share.button {
font-size: 2.5em;
font-size: 2em;
padding: 0.2em 1.6em;
transition: background 0.2s, color 0.2s;
}
.landing-panel a.typeform-share.button:hover {
color: white;
background: #6354f3;
}
.landing-panel b {
font-weight: 700;
color: #6354f3;
}
body > .panel {
padding: 2em 5vw;
min-height: 100px;
}
body > .panel p {
font-size: 18px;
}
.panel img {
max-width: 100%;
}
.panel h2, .panel h3, .panel h4 {
text-align: center;
color: #666;
font-weight: 400;
margin: 0.6em 0;
}
.panel h2 {
font-size: 2.5em;
}
.panel h3 {
font-size: 1.4em;
}
.panel h4 {
font-size: 1.3em;
}
.panel.demos {
text-align: center;
}
.panel.demos .demo {
display: inline-block;
vertical-align: top;
max-width: 300px;
margin: 2em;
}
.panel.demos .demo img {
margin-top: 1em;
max-width: 100%;
max-height: 300px;
border-radius: 6px;
}
.panel.demos .demo img.png {
-webkit-filter: hue-rotate(-8deg) saturate(148%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-8deg) saturate(148%);
}
.panel.demos .demo img.gif {
-webkit-filter: hue-rotate(-13deg) saturate(140%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-13deg) saturate(140%);
}
.panel.demos {
/*background: #f0f0f0;*/
}
.panel.timeline {
margin-top: -7em;
text-align: center;
/*background: url('../img/brexit-timeline.png');*/
background-size: cover;
background-position: center center;
}
.panel.timeline img {
width: 100%;
/*max-width: 600px;*/
margin: -1em 0 0 0;
}
.panel.timeline h3 {
margin-top: -0.8em;
font-size: 1.8em;
}
.panel.meet-savi ol li {
font-size: 22px;
margin: 1em;
text-align: left;
padding-left: 0.8em;
}
.panel.meet-savi .big img{
margin: -2em 0 -3em 0;
max-height: 22em;
}
.panel.meet-savi .small {
margin-top: -2em;
display: none;
}
.panel.features > div > div {
max-width: 33%;
padding: 30px;
box-sizing: border-box;
display: inline-block;
text-align: center;
vertical-align: top;
}
.panel.features i {
font-size: 5em;
margin: 0.1em;
text-align: center;
color: #666;
}
.panel.features h3 {
margin: 0;
color: #666;
}
.panel.features img {
margin-top: -1em;
}
.panel.hello {
padding: 2.5em 1em 0 1em;
background: #eee;
}
.panel.hello h2 {
font-size: 2em;
margin: 0;
}
.panel.hello h2 span {
font-size: 0.9em;
margin-right: 0.5em;
}
.panel.hello a.button {
font-size: 1em;
padding: 0 0.6em;
margin: -0.25em 0.2em 0 0.2em;
border-color: #ff6678;
color: #666;
transition: background 0.2s, color 0.2s;
}
.panel.hello a.button:hover {
background: #ff6678;
color: white;
}
.panel.hello a.button i {
margin: 0 0.1em 0 -0.1em;
}
.panel.hello a.button img {
width: 1em;
margin: -0.2em 0.2em 0 -0.05em;
}
.panel.logos {
padding-top: 4em;
text-align: center;
/*margin-top: -5em;*/
}
.panel.media {
border-top: 2px solid #eee;
}
.panel.partners {
padding-bottom: 1em;
}
.panel.logos .publication {
display: inline-block;
margin: 0 2em 2em 2em;
}
.panel.logos .publication:hover {
opacity: 0.7;
}
.panel.logos img {
vertical-align: middle;
max-width: 200px;
}
.panel.faqs h4 {
text-align: left;
}
.panel.faqs h4 a {
color: inherit;
text-decoration: none;
}
.panel.footer {
text-align: center;
padding: 2em;
background: #eee;
}
.panel.footer ul {
padding: 0;
}
.panel.footer ul li {
display: inline-block;
list-style:none;
}
.panel.footer ul li a {
color: #FF6678;
font-weight: bold;
text-decoration: none;
}
.panel-half, .panel-third {
display: inline-block;
vertical-align: top;
padding: 1em;
box-sizing: border-box;
text-align: center;
}
.panel-half {
width: 49%;
}
.panel-third {
width: 33%;
}
.panel-third img {
width: 15em;
margin-bottom: -3em;
}
.brexit-popup {
text-align: center;
font-family: Lato, sans-serif;
width: 500px;
font-size: 1.5em;
line-height: 1.5;
}
.brexit-popup h3, .brexit-popup h4 {
margin: 0.4em 0;
font-weight: normal;
}
.brexit-popup h3 {
/*color: #ea3899;*/
color: #555;
font-size: 1.4em;
font-weight: bold;
}
.brexit-popup h3 span {
color: #ea3899;
}
.brexit-popup button {
margin: 0.6em 0.4em;
padding: 0.2em 1em;
border: 4px solid #6354f3;
background: white;
border-radius: 8px;
transition: background 0.2s, color 0.2s;
}
.brexit-popup button:hover {
color: white;
background: #6354f3;
}
.gso {
display: none !important;
}
@media (max-width: 750px) {
.navbar {
padding: 0;
text-align: center;
}
.navbar .logo {
width: auto;
}
.navbar ul {
display: none;
}
.panel h2 {
font-size: 9vw;
}
.panel h3 {
font-size: 6vw;
}
.landing-panel {
/*margin-top: 0;*/
padding-top: 0;
font-size: 3vw;
}
.landing-panel h2 {
font-size: 9vw;
}
.landing-panel h3 {
font-size: 5vw;
margin-top: -0.8em;
padding-top: 0.5em;
}
.landing-panel a.typeform-share.button {
font-size: 2.4em;
}
.landing-panel .example-demo {
float: none;
height: 704px;
overflow: hidden;
margin: 4em -7.5vw;
width: 100vw;
}
.landing-panel .example-demo iframe {
overflow: hidden;
width: 374px;
top: -600px;
height: 591px;
}
.landing-panel .example-demo iframe html {
overflow: hidden;
}
.landing-panel .example-demo .gradient {
display: block;
pointer-events: none;
z-index: 20;
position: relative;
margin-top: -284px;
height: 99px;
background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Firefox 3.6 to 15 */
background: linear-gradient(to top, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* Standard syntax (must be last) */
}
.landing-panel img.landing-bot {
display: none;
}
.landing-panel img.landing-bot-2 {
display: block;
position: relative;
margin: 0 auto -5vw auto;
width: 60%;
z-index: -1;
}
.landing-panel {
text-align: center;
}
.landing-panel h4 {
display: none;
}
.landing-panel a.why-should-i {
height: 0px;
}
.panel-third, .panel-half {
width: 100%;
}
.float-left, .float-right {
float: none;
width: 100%;
}
.panel.timeline {
margin-top: 0;
}
.panel.timeline img {
margin: -0.5em 0 0.5em 0;
}
.panel.demos .demo {
margin: 1.5em 0;
}
.panel.meet-savi .big {
display: none;
}
.panel.meet-savi .small {
display: block;
}
.panel.meet-savi ol {
padding: 0;
}
.panel.meet-savi ol li {
font-size: 20px;
}
.panel.features > div > div {
max-width: 100%;
}
.panel.features h2 {
margin-bottom: inherit;
}
.panel.features img, .panel.features img {
margin: 2em 0 -1em 0;
max-width: 100%;
}
.panel.features h3 {
margin: 0;
}
.panel.hello {
padding: 1em 1em ;
}
.panel.hello h2 span {
font-size: 7vw;
margin: 0;
}
.panel.hello a.button {
font-size: 0.7em;
margin: 1em 0;
padding: 0.3em;
display: block;
}
.panel.logos {
margin-top: 0;
}
.panel.logos .publication, .panel.logos .publication img {
margin: 0 2em;
}
.brexit-popup {
width: 80vw;
left: 0;
}
.brexit-popup h4 {
font-size: 0.8em;
}
.brexit-popup h3 {
font-size: 1.3em;
}
.brexit-popup button {
font-size: 5vw;
}
}
@media (max-width: 451px) {
.landing-panel .example-demo {
height: 156vw;
}
.landing-panel .example-demo iframe {
width: 83vw;
top: -133vw;
height: 131vw;
}
.landing-panel .example-demo .gradient {
margin-top: -63vw;
height: 22vw;
}
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
}
.ge2017-panel {
border-top: 1px #ff2569 solid;
border-bottom: 1px #ff2569 solid;
margin-bottom: 80px;
background: #f6f6f6;
padding: 40px;
min-height: 200px;
}
.ge2017-panel:after {
content: "";
display: table;
clear: both;
}
.ge2017-panel img {
float: left;
width: 300px;
margin: 0 40px 0 20px;
}
.ge2017-panel .highlight.pink {
color: #ff2569;
}
.ge2017-panel a:hover {
opacity: 0.7;
}
.landing-panel h2 {
margin-top: 60px !important;
}
.landing-panel h2 span, .landing-panel h3 span {
background: none;
}
@media (max-width: 900px) {
.ge2017-panel img {
display: none;
}
.landing-panel h2 {
margin-top: 30px !important;
}
}
form.email input, form.email button {
box-shadow: none;
height: 50px;
padding: 10px 10px;
border-radius: 5px;
margin: 5px 20px 5px 0;
border: 1px solid grey;
box-sizing: border-box;
width: 100%;
font-size: 16px;
}
@media (min-width: 900px) {
form.email input {
padding: 10px 30px;
width: 300px;
}
form.email button {
padding: 10px 40px;
width: auto;
}
}
form.email button {
border: 2px solid #ff2569;
padding-top: 9px;
padding-bottom: 9px;
background: white;
color: #ff2569;
}
form.email button:hover {
background: #ff2569;
color: white;
}
form.email p {
font-size: 16px;
}
form.email p a {
color: #ff2569;
} | css/main.css | /* ==========================================================================
Base styles: opinionated defaults
========================================================================== */
html, body {
height: 100%;
font-size: 1.1em;
line-height: inherit !important;
color: #666;
line-height: 1.4 !important;
font-family: 'Lato', sans-serif;
}
html {
}
html, body, h1, h2, h3, h4, h5, h6, p, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, p:first-child {
/*font-size: inherit !important;*/
/*line-height: inherit !important;*/
margin-top: inherit !important;
}
*, :after, :before {
box-sizing: initial;
}
/*
* Remove text-shadow in selection highlight:
* https://twitter.com/miketaylr/status/12228805301
*
* These selection rule sets have to be separate.
* Customize the background color to match your design.
*/
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
/*
* A better looking default horizontal rule
*/
hr {
display: block;
height: 1px;
border: 0;
border-top: 1px solid #ccc;
margin: 1em 0;
padding: 0;
}
/*
* Remove the gap between audio, canvas, iframes,
* images, videos and the bottom of their containers:
* https://github.com/h5bp/html5-boilerplate/issues/440
*/
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
/*
* Remove default fieldset styles.
*/
fieldset {
border: 0;
margin: 0;
padding: 0;
}
/*
* Allow only vertical resizing of textareas.
*/
textarea {
resize: vertical;
}
/* ==========================================================================
Browser Upgrade Prompt
========================================================================== */
.browserupgrade {
margin: 0.2em 0;
background: #ccc;
color: #000;
padding: 0.2em 0;
}
/* ==========================================================================
Author's custom styles
========================================================================== */
/* ==========================================================================
Helper classes
========================================================================== */
/*
* Hide visually and from screen readers
*/
.hidden {
display: none !important;
}
/*
* Hide only visually, but have it available for screen readers:
* http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*/
.visuallyhidden {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
clip: auto;
height: auto;
margin: 0;
overflow: visible;
position: static;
width: auto;
}
/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
visibility: hidden;
}
/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* `contenteditable` attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.clearfix:after {
clear: both;
}
/* ==========================================================================
EXAMPLE Media Queries for Responsive Design.
These examples override the primary ('mobile first') styles.
Modify as content requires.
========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */
}
@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */
}
/* ==========================================================================
Print styles.
Inlined to avoid the additional HTTP request:
http://www.phpied.com/delay-loading-your-print-css/
========================================================================== */
@media print {
*,
*:before,
*:after,
*:first-letter,
*:first-line {
background: transparent !important;
color: #000 !important; /* Black prints faster:
http://www.sanbeiji.com/archives/953 */
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
/*
* Printing Tables:
* http://css-discuss.incutio.com/wiki/Printing_Tables
*/
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
}
a.typeform-share.button {
padding: 0 1em;
font-weight: normal;
border: solid #6354f3 3px;
border-radius: 10px;
background: white;
color: #6354f3;
text-decoration: none;
font-family: Lato, sans-serif;
line-height: inherit;
float: none;
display: inline-block;
}
.highlight {
font-weight: bold;
color: #6354f3;
}
.highlight.pink {
color: #ff6678;
}
.highlight.grey {
color: #666;
}
.bold {
font-weight: 600 !important;
}
.max-width-large {
margin: auto;
max-width: 1000px;
}
.max-width {
margin: auto;
max-width: 900px;
}
.max-width-2 {
margin: auto;
max-width: 750px;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.float-left, .float-right {
width: 40%;
text-align: center;
}
.float-left img, .float-right img {
max-width: 300px;
}
.navbar {
margin: auto;
padding: 0.5em 3em;
max-width: 1200px;
height: 50px;
font-size: 1em;
}
.navbar .logo, .navbar ul {
display: inline-block;
width: 49%;
margin: 0;
padding: 0;
}
.navbar .logo img {
margin: 12px 0;
height: 55px;
max-height: 12vw;
}
.navbar ul {
text-align: right;
}
.navbar ul li {
display: inline-block;
padding: 10px 25px;
margin: 0 15px;
/*font-weight: bold;*/
border-radius: 30px;
color: #FF6678;
background: #eee;
transition: background 0.4s;
}
.navbar ul li:hover {
background: #ddd;
}
.landing-panel {
margin: 2.5em auto -4em auto;
padding: 3em;
max-width: 1200px;
color: #666;
/*background-image: url('../img/landing-bot.png');*/
background-position: top right;
background-repeat: no-repeat;
background-size: contain;
}
.landing-panel img.landing-bot, .landing-panel img.landing-bot-2 {
-webkit-filter: hue-rotate(-13deg) saturate(140%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-13deg) saturate(140%);
}
.landing-panel img.landing-bot {
position: absolute;
right: 100px;
margin-top: -230px;
width: 250px;
z-index: -1;
border-radius: 6px;
}
.landing-panel img.landing-bot-2 {
display: none;
}
.landing-panel .example-demo {
float: right;
width: 300px;
height: 500px;
margin-top: -270px;
margin-right: 50px;
text-align: center;
}
.landing-panel .example-demo img {
max-width: 100%;
z-index: 10;
position: relative;
pointer-events: none;
}
.landing-panel .example-demo > iframe {
position: relative;
top: -521px;
width: 249px;
height: 437px;
border: none;
}
.landing-panel h2 span, .landing-panel h3 span {
font-weight: normal;
background: rgba(255,255,255,0.8);
}
.landing-panel h2 {
font-size: 3.2em;
}
.landing-panel h3 {
margin-top: 1em !important;
margin-bottom: 1.5em;
font-size: 1.3em;
}
.landing-panel .example-demo .gradient {
display: none;
}
.landing-panel a.brexit {
border-bottom: 6px solid #ea3899;
color: inherit;
}
.landing-panel a.brexit:hover {
color: #ea3899;
}
.landing-panel a {
text-decoration: none;
cursor: pointer;
}
.landing-panel a:hover h4 {
opacity: 0.8;
}
.landing-panel a.why-should-i {
display: block;
margin: 8em auto 0 auto;
width: 250px;
height: 90px;
}
.landing-panel a.why-should-i h4 {
text-align: center;
font-size: 1.4em;
font-weight: 400;
color: #6354f3;
}
.landing-panel a.why-should-i h4 > span {
/*position: absolute;*/
/*display: block;*/
text-align: center;
/*left: 0;*/
/*right: 0;*/
}
.landing-panel a.why-should-i h4 > span:nth-child(2) {
margin-top: 10px;
position: absolute;
display: block;
width: 250px;
}
.landing-panel a.why-should-i h4 img {
left: auto;
right: auto;
display: block;
margin: 0.1em auto;
width: 25px;
transition: margin 0.2s;
}
.landing-panel a.why-should-i:hover h4 img {
margin-top: 0.3em;
}
.landing-panel a.typeform-share.button {
font-size: 2.5em;
font-size: 2em;
padding: 0.2em 1.6em;
transition: background 0.2s, color 0.2s;
}
.landing-panel a.typeform-share.button:hover {
color: white;
background: #6354f3;
}
.landing-panel b {
font-weight: 700;
color: #6354f3;
}
body > .panel {
padding: 2em 5vw;
min-height: 100px;
}
body > .panel p {
font-size: 18px;
}
.panel img {
max-width: 100%;
}
.panel h2, .panel h3, .panel h4 {
text-align: center;
color: #666;
font-weight: 400;
margin: 0.6em 0;
}
.panel h2 {
font-size: 2.5em;
}
.panel h3 {
font-size: 1.4em;
}
.panel h4 {
font-size: 1.3em;
}
.panel.demos {
text-align: center;
}
.panel.demos .demo {
display: inline-block;
vertical-align: top;
max-width: 300px;
margin: 2em;
}
.panel.demos .demo img {
margin-top: 1em;
max-width: 100%;
max-height: 300px;
border-radius: 6px;
}
.panel.demos .demo img.png {
-webkit-filter: hue-rotate(-8deg) saturate(148%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-8deg) saturate(148%);
}
.panel.demos .demo img.gif {
-webkit-filter: hue-rotate(-13deg) saturate(140%); /* Safari 6.0 - 9.0 */
filter: hue-rotate(-13deg) saturate(140%);
}
.panel.demos {
/*background: #f0f0f0;*/
}
.panel.timeline {
margin-top: -7em;
text-align: center;
/*background: url('../img/brexit-timeline.png');*/
background-size: cover;
background-position: center center;
}
.panel.timeline img {
width: 100%;
/*max-width: 600px;*/
margin: -1em 0 0 0;
}
.panel.timeline h3 {
margin-top: -0.8em;
font-size: 1.8em;
}
.panel.meet-savi ol li {
font-size: 22px;
margin: 1em;
text-align: left;
padding-left: 0.8em;
}
.panel.meet-savi .big img{
margin: -2em 0 -3em 0;
max-height: 22em;
}
.panel.meet-savi .small {
margin-top: -2em;
display: none;
}
.panel.features > div > div {
max-width: 33%;
padding: 30px;
box-sizing: border-box;
display: inline-block;
text-align: center;
vertical-align: top;
}
.panel.features i {
font-size: 5em;
margin: 0.1em;
text-align: center;
color: #666;
}
.panel.features h3 {
margin: 0;
color: #666;
}
.panel.features img {
margin-top: -1em;
}
.panel.hello {
padding: 2.5em 1em 0 1em;
background: #eee;
}
.panel.hello h2 {
font-size: 2em;
margin: 0;
}
.panel.hello h2 span {
font-size: 0.9em;
margin-right: 0.5em;
}
.panel.hello a.button {
font-size: 1em;
padding: 0 0.6em;
margin: -0.25em 0.2em 0 0.2em;
border-color: #ff6678;
color: #666;
transition: background 0.2s, color 0.2s;
}
.panel.hello a.button:hover {
background: #ff6678;
color: white;
}
.panel.hello a.button i {
margin: 0 0.1em 0 -0.1em;
}
.panel.hello a.button img {
width: 1em;
margin: -0.2em 0.2em 0 -0.05em;
}
.panel.logos {
padding-top: 4em;
text-align: center;
/*margin-top: -5em;*/
}
.panel.media {
border-top: 2px solid #eee;
}
.panel.partners {
padding-bottom: 1em;
}
.panel.logos .publication {
display: inline-block;
margin: 0 2em 2em 2em;
}
.panel.logos .publication:hover {
opacity: 0.7;
}
.panel.logos img {
vertical-align: middle;
max-width: 200px;
}
.panel.faqs h4 {
text-align: left;
}
.panel.faqs h4 a {
color: inherit;
text-decoration: none;
}
.panel.footer {
text-align: center;
padding: 2em;
background: #eee;
}
.panel.footer ul {
padding: 0;
}
.panel.footer ul li {
display: inline-block;
list-style:none;
}
.panel.footer ul li a {
color: #FF6678;
font-weight: bold;
text-decoration: none;
}
.panel-half, .panel-third {
display: inline-block;
vertical-align: top;
padding: 1em;
box-sizing: border-box;
text-align: center;
}
.panel-half {
width: 49%;
}
.panel-third {
width: 33%;
}
.panel-third img {
width: 15em;
margin-bottom: -3em;
}
.brexit-popup {
text-align: center;
font-family: Lato, sans-serif;
width: 500px;
font-size: 1.5em;
line-height: 1.5;
}
.brexit-popup h3, .brexit-popup h4 {
margin: 0.4em 0;
font-weight: normal;
}
.brexit-popup h3 {
/*color: #ea3899;*/
color: #555;
font-size: 1.4em;
font-weight: bold;
}
.brexit-popup h3 span {
color: #ea3899;
}
.brexit-popup button {
margin: 0.6em 0.4em;
padding: 0.2em 1em;
border: 4px solid #6354f3;
background: white;
border-radius: 8px;
transition: background 0.2s, color 0.2s;
}
.brexit-popup button:hover {
color: white;
background: #6354f3;
}
.gso {
display: none !important;
}
@media (max-width: 750px) {
.navbar {
padding: 0;
text-align: center;
}
.navbar .logo {
width: auto;
}
.navbar ul {
display: none;
}
.panel h2 {
font-size: 9vw;
}
.panel h3 {
font-size: 6vw;
}
.landing-panel {
/*margin-top: 0;*/
padding-top: 0;
font-size: 3vw;
}
.landing-panel h2 {
font-size: 9vw;
}
.landing-panel h3 {
font-size: 5vw;
margin-top: -0.8em;
padding-top: 0.5em;
}
.landing-panel a.typeform-share.button {
font-size: 2.4em;
}
.landing-panel .example-demo {
float: none;
height: 704px;
overflow: hidden;
margin: 4em -7.5vw;
width: 100vw;
}
.landing-panel .example-demo iframe {
overflow: hidden;
width: 374px;
top: -600px;
height: 591px;
}
.landing-panel .example-demo iframe html {
overflow: hidden;
}
.landing-panel .example-demo .gradient {
display: block;
pointer-events: none;
z-index: 20;
position: relative;
margin-top: -284px;
height: 99px;
background: -webkit-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* For Firefox 3.6 to 15 */
background: linear-gradient(to top, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%); /* Standard syntax (must be last) */
}
.landing-panel img.landing-bot {
display: none;
}
.landing-panel img.landing-bot-2 {
display: block;
position: relative;
margin: 0 auto -5vw auto;
width: 60%;
z-index: -1;
}
.landing-panel {
text-align: center;
}
.landing-panel h4 {
display: none;
}
.landing-panel a.why-should-i {
height: 0px;
}
.panel-third, .panel-half {
width: 100%;
}
.float-left, .float-right {
float: none;
width: 100%;
}
.panel.timeline {
margin-top: 0;
}
.panel.timeline img {
margin: -0.5em 0 0.5em 0;
}
.panel.demos .demo {
margin: 1.5em 0;
}
.panel.meet-savi .big {
display: none;
}
.panel.meet-savi .small {
display: block;
}
.panel.meet-savi ol {
padding: 0;
}
.panel.meet-savi ol li {
font-size: 20px;
}
.panel.features > div > div {
max-width: 100%;
}
.panel.features h2 {
margin-bottom: inherit;
}
.panel.features img, .panel.features img {
margin: 2em 0 -1em 0;
max-width: 100%;
}
.panel.features h3 {
margin: 0;
}
.panel.hello {
padding: 1em 1em ;
}
.panel.hello h2 span {
font-size: 7vw;
margin: 0;
}
.panel.hello a.button {
font-size: 0.7em;
margin: 1em 0;
padding: 0.3em;
display: block;
}
.panel.logos {
margin-top: 0;
}
.panel.logos .publication, .panel.logos .publication img {
margin: 0 2em;
}
.brexit-popup {
width: 80vw;
left: 0;
}
.brexit-popup h4 {
font-size: 0.8em;
}
.brexit-popup h3 {
font-size: 1.3em;
}
.brexit-popup button {
font-size: 5vw;
}
}
@media (max-width: 451px) {
.landing-panel .example-demo {
height: 156vw;
}
.landing-panel .example-demo iframe {
width: 83vw;
top: -133vw;
height: 131vw;
}
.landing-panel .example-demo .gradient {
margin-top: -63vw;
height: 22vw;
}
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-timing-function: ease;
-o-transition-timing-function: ease;
transition-timing-function: ease;
-webkit-transition-duration: .35s;
-o-transition-duration: .35s;
transition-duration: .35s;
-webkit-transition-property: height, visibility;
-o-transition-property: height, visibility;
transition-property: height, visibility;
}
.ge2017-panel {
border-top: 1px #ff2569 solid;
border-bottom: 1px #ff2569 solid;
margin-bottom: 80px;
background: #f6f6f6;
padding: 40px;
min-height: 200px;
}
.ge2017-panel:after {
content: "";
display: table;
clear: both;
}
.ge2017-panel img {
float: left;
width: 300px;
margin: 0 40px 0 20px;
}
.ge2017-panel .highlight.pink {
color: #ff2569;
}
.ge2017-panel a:hover {
opacity: 0.7;
}
.landing-panel h2 {
margin-top: 60px !important;
}
.landing-panel h2 span, .landing-panel h3 span {
background: none;
}
@media (max-width: 900px) {
.ge2017-panel img {
display: none;
}
.landing-panel h2 {
margin-top: 30px !important;
}
}
form.email input, form.email button {
box-shadow: none;
height: 50px;
padding: 10px 10px;
border-radius: 5px;
margin: 5px 20px 5px 0;
border: 1px solid grey;
box-sizing: border-box;
width: 100%;
font-size: 16px;
}
@media (min-width: 900px) {
form.email input {
padding: 10px 30px;
width: 300px;
}
form.email button {
padding: 10px 40px;
width: auto;
}
}
form.email button {
border: 2px solid #ff2569;
padding-top: 9px;
padding-bottom: 9px;
background: white;
color: #ff2569;
}
form.email button:hover {
background: #ff2569;
color: white;
}
form.email p {
font-size: 16px;
}
form.email p a {
color: #ff2569;
} | 0.624064 | 0.085978 |
@font-face {
font-family: Constantine;
src: url('Constantine.ttf');
}
html {
font-family: Constantine;
}
.editingDiv {
border :3px solid #FFFFFF;
border-radius : 5px
}
.editingDiv > .divMoveHandleBottom, .editingDiv > .divMoveHandleTop, .misc-container > .divMoveHandleBottom, .misc-container > .divMoveHandleTop {
display:none;
}
.editingDiv:hover > .divMoveHandleBottom {
background-color: #FFFFFF;
height: 40px;
width: 40px;
position: absolute;
bottom: -42px;
right: 0px;
cursor:move;
text-align:center;
border-radius: 0px 0px 5px 5px;
z-index:10;
display:block;
}
.editingDiv:hover > .divMoveHandleTop {
background-color: #FFFFFF;
height: 40px;
width: 40px;
position: absolute;
top: -42px;
left: 0px;
cursor: move;
text-align: center;
border-radius: 5px 5px 0px 0px;
z-index:10;
display:block;
}
.editingDiv > .divMoveHandleTop > span, .editingDiv > .divMoveHandleBottom > span {
top: 41%
}
.container:not(.editingDiv) > .divMoveHandleBottom,.container:not(.editingDiv) > .divMoveHandleTop {
display:none;
}
.container:not(.editingDiv) > .ui-resizable-handle {
display:none;
}
.ui-icon-gripsmall-diagonal-se {
color: #FFFFFF;
}
div.charmDiv > img {
display: none;
margin-left: auto;
margin-right: auto;
}
.charmDiv {
background: url(images/slotBGsm.png) no-repeat;
background-position: center;
display: block;
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv > img:not(.selected):not(.multiple) {
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv > img {
position: relative;
top: 50%;
transform: translateY(-50%);
display: block;
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv:not(.charmDiv) > img.selected {
-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
filter: grayscale(0%);
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
display:block !important;
}
.container > div.itemDiv:not(.charmDiv) > img.gaveItem {
box-shadow: 0px 0px 5px 5px #FF0000;
}
.misc-container {
color: #FFFFFF;
position: absolute;
text-align: right;
}
img.equipped {
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
}
.itemDiv {
width: 41px;
height: 41px;
position:relative;
display:block;
margin-left:auto;
margin-right:auto;
}
.itemDivGrowLeft > .itemDiv {
float:left;
}
.itemDivGrowRight > .itemDiv {
float:right;
}
img.multiple {
-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
filter: grayscale(0%);
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
display:block !important;
}
div.counter {
width: 19px !important;
height: 19px !important;
border-radius: 50%;
box-shadow: 0px 0px 5px 2px #FFFFFF;
position: absolute;
top: 60%;
left: 60%;
background-color: #000000;
color: #FFFFFF;
text-align: center;
vertical-align: middle;
display:none;
}
div.charmSlotsFilled {
width: 19px !important;
height: 19px !important;
border-radius: 50%;
box-shadow: 0px 0px 5px 2px #FFFFFF;
position: absolute;
top: 25%;
left: 60%;
background-color: #000000;
color: #07ff6e;
text-align: center;
vertical-align: middle;
display:none;
}
.topLeftFlourish {
right: 0;
position: absolute;
top: -15px;
border-top: solid #FFFFFF;
padding-top: 0px;
}
.topLeftFlourish > img {
top: -14px;
left: -174px;
position:absolute;
}
.topRightFlourish {
left: 0;
position: absolute;
top: -15px;
border-top: solid #FFFFFF;
padding-top: 0px;
}
.topRightFlourish > img {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
top: -14px;
left: 250px;
position: absolute;
}
/* handle icon (corner) */
.ui-resizable-se, .ui-resizable-ne, .ui-resizable-sw, .ui-resizable-nw {
background-image: url(images/ui-icons_ff0000_256x240.png);
}
.pageButton {
color:#FFFFFF;
padding:5px;
float:left;
clear:both;
cursor: pointer;
border :1px solid #FFFFFF;
border-radius :5px;
width : 150px
}
label {
width: 200px;
display: inline-block;
}
ul li {
margin-bottom:3px;
}
.disabled {
border: 1px solid #FF0000;
color: #FF0000 !important;
}
.pageButton div{
border: 1px solid #e4e4e4;
width: 25px;
float: left;
text-align: center;
height: 20px;
}
.pageButton div:first-of-type {
clear:left;
}
.pageButton span {
float:left;
} | main.css | @font-face {
font-family: Constantine;
src: url('Constantine.ttf');
}
html {
font-family: Constantine;
}
.editingDiv {
border :3px solid #FFFFFF;
border-radius : 5px
}
.editingDiv > .divMoveHandleBottom, .editingDiv > .divMoveHandleTop, .misc-container > .divMoveHandleBottom, .misc-container > .divMoveHandleTop {
display:none;
}
.editingDiv:hover > .divMoveHandleBottom {
background-color: #FFFFFF;
height: 40px;
width: 40px;
position: absolute;
bottom: -42px;
right: 0px;
cursor:move;
text-align:center;
border-radius: 0px 0px 5px 5px;
z-index:10;
display:block;
}
.editingDiv:hover > .divMoveHandleTop {
background-color: #FFFFFF;
height: 40px;
width: 40px;
position: absolute;
top: -42px;
left: 0px;
cursor: move;
text-align: center;
border-radius: 5px 5px 0px 0px;
z-index:10;
display:block;
}
.editingDiv > .divMoveHandleTop > span, .editingDiv > .divMoveHandleBottom > span {
top: 41%
}
.container:not(.editingDiv) > .divMoveHandleBottom,.container:not(.editingDiv) > .divMoveHandleTop {
display:none;
}
.container:not(.editingDiv) > .ui-resizable-handle {
display:none;
}
.ui-icon-gripsmall-diagonal-se {
color: #FFFFFF;
}
div.charmDiv > img {
display: none;
margin-left: auto;
margin-right: auto;
}
.charmDiv {
background: url(images/slotBGsm.png) no-repeat;
background-position: center;
display: block;
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv > img:not(.selected):not(.multiple) {
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv > img {
position: relative;
top: 50%;
transform: translateY(-50%);
display: block;
margin-left: auto;
margin-right: auto;
}
.container > div.itemDiv:not(.charmDiv) > img.selected {
-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
filter: grayscale(0%);
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
display:block !important;
}
.container > div.itemDiv:not(.charmDiv) > img.gaveItem {
box-shadow: 0px 0px 5px 5px #FF0000;
}
.misc-container {
color: #FFFFFF;
position: absolute;
text-align: right;
}
img.equipped {
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
}
.itemDiv {
width: 41px;
height: 41px;
position:relative;
display:block;
margin-left:auto;
margin-right:auto;
}
.itemDivGrowLeft > .itemDiv {
float:left;
}
.itemDivGrowRight > .itemDiv {
float:right;
}
img.multiple {
-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
filter: grayscale(0%);
border-radius: 50%;
box-shadow: 0px 0px 5px 5px #07ff6e;
display:block !important;
}
div.counter {
width: 19px !important;
height: 19px !important;
border-radius: 50%;
box-shadow: 0px 0px 5px 2px #FFFFFF;
position: absolute;
top: 60%;
left: 60%;
background-color: #000000;
color: #FFFFFF;
text-align: center;
vertical-align: middle;
display:none;
}
div.charmSlotsFilled {
width: 19px !important;
height: 19px !important;
border-radius: 50%;
box-shadow: 0px 0px 5px 2px #FFFFFF;
position: absolute;
top: 25%;
left: 60%;
background-color: #000000;
color: #07ff6e;
text-align: center;
vertical-align: middle;
display:none;
}
.topLeftFlourish {
right: 0;
position: absolute;
top: -15px;
border-top: solid #FFFFFF;
padding-top: 0px;
}
.topLeftFlourish > img {
top: -14px;
left: -174px;
position:absolute;
}
.topRightFlourish {
left: 0;
position: absolute;
top: -15px;
border-top: solid #FFFFFF;
padding-top: 0px;
}
.topRightFlourish > img {
-moz-transform: scaleX(-1);
-o-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
filter: FlipH;
-ms-filter: "FlipH";
top: -14px;
left: 250px;
position: absolute;
}
/* handle icon (corner) */
.ui-resizable-se, .ui-resizable-ne, .ui-resizable-sw, .ui-resizable-nw {
background-image: url(images/ui-icons_ff0000_256x240.png);
}
.pageButton {
color:#FFFFFF;
padding:5px;
float:left;
clear:both;
cursor: pointer;
border :1px solid #FFFFFF;
border-radius :5px;
width : 150px
}
label {
width: 200px;
display: inline-block;
}
ul li {
margin-bottom:3px;
}
.disabled {
border: 1px solid #FF0000;
color: #FF0000 !important;
}
.pageButton div{
border: 1px solid #e4e4e4;
width: 25px;
float: left;
text-align: center;
height: 20px;
}
.pageButton div:first-of-type {
clear:left;
}
.pageButton span {
float:left;
} | 0.240864 | 0.052086 |
body::-webkit-scrollbar {
display: none;
}
#wrapper-home{
color: green !important;
}
#content {
position: fixed;
height: 100%;
width: 100%;
padding-bottom: 60px;
background-color: #f5f5f5;
}
.writespace{
position: relative;
background-color: transparent;
width: 100%;
height: 100%;
padding: 0px;
overflow: hidden;
overflow-y: auto;
}
.ref{
color: black;
text-decoration: none;
}
.area{
position: relative;
background-color: white;
width: 565px;
height: 558px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
margin-bottom: 40px;
margin-top: 30px;
border-radius: 10px;
color: black;
}
.adbar{
width: 270px;
position: fixed;
top: 0px;
right: 0px;
margin-top: 90px;
margin-right: 25px;
min-height: 540px;
overflow: hidden;
overflow-y: auto;
background: transparent;
/* box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
color: black;
transition: all 0.5s;
z-index: 1;
border-radius: 10px;
}
.internal-area{
display: block;
position: relative;
top: 50px;
background-color: transparent;
min-width: 100%;
min-height: 70%;
max-width: 510px;
max-height: 700px;
margin: 0 auto;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.authorpic{
position: absolute;
top: 15px;
left: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #999da0;
background-repeat: no-repeat;
background-position: 0px 0px, -2px 5px;
background-size: 100%,110%;
}
.authorname{
position: absolute;
top: 0px;
left: 40px;
width: 100%;
height: 50px;
text-align: left;
margin-top: 10px;
background-color: transparent;
color: black;
}
.authorname h5{
position: relative;
top: 15px;
left: 35px;
font-size: 20px;
font-family: inherit;
color: black;
}
.dot-1{
position: absolute;
top: 13px;
color: #606060;
right: 60px;
font-size: 17px;
cursor: pointer;
}
.hr-tag{
position: absolute;
top: 55px;
left: 15px;
width: 94%;
border-top: 1px solid #e4e6eb;
}
.views{
position: absolute;
top: 510px;
color: #606060;
}
.heart{
position: absolute;
top: 510px;
color: #606060;
right: 190px;
font-size: 15px;
cursor: pointer;
}
.share{
position: absolute;
top: 510px;
color: #606060;
right: 100px;
font-size: 12px;
cursor: pointer;
}
.bookmark{
position: absolute;
top: 510px;
color: #606060;
right: 25px;
font-size: 12px;
cursor: pointer;
}
.text{
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
text-transform: uppercase;
}
.bigheart-container{
display: block;
position: absolute;
top: 80px;
left: 0px;
background-color: transparent;
min-width: 100%;
min-height: 70%;
max-width: 510px;
max-height: 700px;
margin: 0 auto;
text-align: center;
cursor: pointer;
}
#bigheart{
display: none;
position: relative;
top: 45px;
font-size: 150px;
color: #ff1d58;
animation-name: example;
animation-duration: 1s;
animation-timing-function: ease-in-out;
opacity: 0;
transform: scale(0);
margin: 0 auto;
}
@keyframes example {
0%, 100% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
15% {
opacity: .9;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
30% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
45%, 80% {
opacity: .9;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.showheart{
transition: ease-out;
display: block !important;
}
.hideh{
display: none !important;
}
.copylink{
background-color: #e6f4ea;
width:100%;
max-width: 330px !important;
height: 36px;
padding: 5px;
border: none;
outline: transparent;
color: green;
}
.copied::after{
position: absolute;
left: 40%;
top: 85%;
background-color: black;
color: white;
font-size: 15px;
padding: 5px;
padding-left: 7px;
padding-right: 7px;
border-radius: 3px;
content: 'Link copied';
animation-name: example2;
animation-delay: 1s;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes example2 {
0% { top: 85%;}
100% {top: 160%}
}
.svgcircle{
width: 36px;
height: 36px;
border-radius: 50%;
margin-right: 12px;
color: white;
background-color: #4285f4;
} | public/css/home.css | body::-webkit-scrollbar {
display: none;
}
#wrapper-home{
color: green !important;
}
#content {
position: fixed;
height: 100%;
width: 100%;
padding-bottom: 60px;
background-color: #f5f5f5;
}
.writespace{
position: relative;
background-color: transparent;
width: 100%;
height: 100%;
padding: 0px;
overflow: hidden;
overflow-y: auto;
}
.ref{
color: black;
text-decoration: none;
}
.area{
position: relative;
background-color: white;
width: 565px;
height: 558px;
margin: 0 auto;
padding: 20px;
box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
margin-bottom: 40px;
margin-top: 30px;
border-radius: 10px;
color: black;
}
.adbar{
width: 270px;
position: fixed;
top: 0px;
right: 0px;
margin-top: 90px;
margin-right: 25px;
min-height: 540px;
overflow: hidden;
overflow-y: auto;
background: transparent;
/* box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
color: black;
transition: all 0.5s;
z-index: 1;
border-radius: 10px;
}
.internal-area{
display: block;
position: relative;
top: 50px;
background-color: transparent;
min-width: 100%;
min-height: 70%;
max-width: 510px;
max-height: 700px;
margin: 0 auto;
text-decoration: none;
overflow: hidden;
cursor: pointer;
}
.authorpic{
position: absolute;
top: 15px;
left: 15px;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: #999da0;
background-repeat: no-repeat;
background-position: 0px 0px, -2px 5px;
background-size: 100%,110%;
}
.authorname{
position: absolute;
top: 0px;
left: 40px;
width: 100%;
height: 50px;
text-align: left;
margin-top: 10px;
background-color: transparent;
color: black;
}
.authorname h5{
position: relative;
top: 15px;
left: 35px;
font-size: 20px;
font-family: inherit;
color: black;
}
.dot-1{
position: absolute;
top: 13px;
color: #606060;
right: 60px;
font-size: 17px;
cursor: pointer;
}
.hr-tag{
position: absolute;
top: 55px;
left: 15px;
width: 94%;
border-top: 1px solid #e4e6eb;
}
.views{
position: absolute;
top: 510px;
color: #606060;
}
.heart{
position: absolute;
top: 510px;
color: #606060;
right: 190px;
font-size: 15px;
cursor: pointer;
}
.share{
position: absolute;
top: 510px;
color: #606060;
right: 100px;
font-size: 12px;
cursor: pointer;
}
.bookmark{
position: absolute;
top: 510px;
color: #606060;
right: 25px;
font-size: 12px;
cursor: pointer;
}
.text{
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
text-transform: uppercase;
}
.bigheart-container{
display: block;
position: absolute;
top: 80px;
left: 0px;
background-color: transparent;
min-width: 100%;
min-height: 70%;
max-width: 510px;
max-height: 700px;
margin: 0 auto;
text-align: center;
cursor: pointer;
}
#bigheart{
display: none;
position: relative;
top: 45px;
font-size: 150px;
color: #ff1d58;
animation-name: example;
animation-duration: 1s;
animation-timing-function: ease-in-out;
opacity: 0;
transform: scale(0);
margin: 0 auto;
}
@keyframes example {
0%, 100% {
opacity: 0;
-webkit-transform: scale(0);
transform: scale(0);
}
15% {
opacity: .9;
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
30% {
-webkit-transform: scale(.95);
transform: scale(.95);
}
45%, 80% {
opacity: .9;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.showheart{
transition: ease-out;
display: block !important;
}
.hideh{
display: none !important;
}
.copylink{
background-color: #e6f4ea;
width:100%;
max-width: 330px !important;
height: 36px;
padding: 5px;
border: none;
outline: transparent;
color: green;
}
.copied::after{
position: absolute;
left: 40%;
top: 85%;
background-color: black;
color: white;
font-size: 15px;
padding: 5px;
padding-left: 7px;
padding-right: 7px;
border-radius: 3px;
content: 'Link copied';
animation-name: example2;
animation-delay: 1s;
animation-duration: 1s;
animation-fill-mode: forwards;
}
@keyframes example2 {
0% { top: 85%;}
100% {top: 160%}
}
.svgcircle{
width: 36px;
height: 36px;
border-radius: 50%;
margin-right: 12px;
color: white;
background-color: #4285f4;
} | 0.467575 | 0.06832 |
body, html {
height: 100%;
margin: 0;
overflow: hidden;
}
h1, h2, h3, h4 {
font-family: "Segoe UI";
}
p, h5, h6 {
font-family: "Segoe UI Light";
}
#img {
background-image: url(img/bg1.jpg);
height: 100%;
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
}
#firstDiv {
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.mainContainers{
padding: 20px 30px 20px 30px;
position:relative;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20) ;
color: #494949;
}
#yourPhoto {
text-align: center;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
fieldset {
text-align: center;
padding: 20px 10px 20px 10px;
width: 100%;
border: 2px solid #ffffff;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.headerOfDiv {
margin-bottom: 30px;
}
.languages {
box-sizing: border-box;
}
/*Skills*/
.progress-bar {
background-color: transparent;
float: none;
text-align: start;
box-sizing: border-box;
}
ul.progress-bar {
list-style: none;
width: 100%;
}
ul.progress-bar li {
font-family: "Segoe UI Light";
color: #494949;
margin-top: 15px;
margin-left: -35px;
}
ul.progress-bar li .progress-bar {
position: relative;
background-color: #dadada;
margin-top: 8px;
width: 70%; /*change here*/
height: 10px;
}
ul.progress-bar li .progress-bar div {
background: #5b0800;
overflow: hidden;
position: absolute;
height: 10px;
min-width: 0;
}
/*/Skills*/
/*Work*/
.workEducationContainer {
border-left: 2px solid #5b0800;
margin-left: 10px;
margin-right: 30px;
padding-top: 1px;
/*-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;*/
/*-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);*/
/*box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;*/
box-sizing: border-box;
}
.block {
width: 90%;
padding-left: 20px;
position: relative;
word-wrap: break-word;
}
.circle {
position: absolute;
top: 0px;
left: -9px;
background-color:#5b0800;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
width: 15px;
height: 15px;
border-radius: 50%;
}
/*/Work*/
/*Hobbies*/
.hobbies {
border: 1px solid rgb(255, 255, 255);
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
/*/Hobbies*/
/*Contacts*/
.contacts {
border: 1px solid rgb(255, 255, 255);
border-radius: 200px;
padding: 5px 7px 5px 7px;
margin-bottom: 5px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
.socialMedia {
color: #494949;
border: 1px solid rgb(255, 255, 255);
padding: 5px 7px 5px 7px;
margin-bottom: 5px;
border-radius: 100px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
hr{
border: 1px solid white;
width: 94.5%;
margin: 30px 0px 10px 0px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
/*/Contacts*/
/*Portfolio*/
.portfolioImg {
border: 1px solid rgb(255, 255, 255);
border-radius: 10px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
.grid {
position: relative;
margin: 0 auto;
padding: 1em 0 4em;
max-width: 1000px;
list-style: none;
text-align: center;
} | MK Style.css | body, html {
height: 100%;
margin: 0;
overflow: hidden;
}
h1, h2, h3, h4 {
font-family: "Segoe UI";
}
p, h5, h6 {
font-family: "Segoe UI Light";
}
#img {
background-image: url(img/bg1.jpg);
height: 100%;
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
}
#firstDiv {
position: relative;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
overflow-x: hidden;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.mainContainers{
padding: 20px 30px 20px 30px;
position:relative;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.20) ;
color: #494949;
}
#yourPhoto {
text-align: center;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
fieldset {
text-align: center;
padding: 20px 10px 20px 10px;
width: 100%;
border: 2px solid #ffffff;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
box-shadow:0 1px 4px rgba(0, 0, 0, 0.42), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.headerOfDiv {
margin-bottom: 30px;
}
.languages {
box-sizing: border-box;
}
/*Skills*/
.progress-bar {
background-color: transparent;
float: none;
text-align: start;
box-sizing: border-box;
}
ul.progress-bar {
list-style: none;
width: 100%;
}
ul.progress-bar li {
font-family: "Segoe UI Light";
color: #494949;
margin-top: 15px;
margin-left: -35px;
}
ul.progress-bar li .progress-bar {
position: relative;
background-color: #dadada;
margin-top: 8px;
width: 70%; /*change here*/
height: 10px;
}
ul.progress-bar li .progress-bar div {
background: #5b0800;
overflow: hidden;
position: absolute;
height: 10px;
min-width: 0;
}
/*/Skills*/
/*Work*/
.workEducationContainer {
border-left: 2px solid #5b0800;
margin-left: 10px;
margin-right: 30px;
padding-top: 1px;
/*-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;*/
/*-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);*/
/*box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;*/
box-sizing: border-box;
}
.block {
width: 90%;
padding-left: 20px;
position: relative;
word-wrap: break-word;
}
.circle {
position: absolute;
top: 0px;
left: -9px;
background-color:#5b0800;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
width: 15px;
height: 15px;
border-radius: 50%;
}
/*/Work*/
/*Hobbies*/
.hobbies {
border: 1px solid rgb(255, 255, 255);
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
/*/Hobbies*/
/*Contacts*/
.contacts {
border: 1px solid rgb(255, 255, 255);
border-radius: 200px;
padding: 5px 7px 5px 7px;
margin-bottom: 5px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
.socialMedia {
color: #494949;
border: 1px solid rgb(255, 255, 255);
padding: 5px 7px 5px 7px;
margin-bottom: 5px;
border-radius: 100px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
hr{
border: 1px solid white;
width: 94.5%;
margin: 30px 0px 10px 0px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
/*/Contacts*/
/*Portfolio*/
.portfolioImg {
border: 1px solid rgb(255, 255, 255);
border-radius: 10px;
-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10);
box-shadow:0 1px 4px rgba(0, 0, 0, 0.52), 0 0 40px rgba(0, 0, 0, 0.10) ;
}
.grid {
position: relative;
margin: 0 auto;
padding: 1em 0 4em;
max-width: 1000px;
list-style: none;
text-align: center;
} | 0.268845 | 0.114666 |
html, body{
width: 100vw;
height: 100vh;
font-family: 'Roboto', sans-serif;
}
body{
background-color: #414345;
}
.container{
margin: 0;
width: 100%;
height: 100%;
}
.page-header{
position: relative;
-webkit-box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
background: #232526; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #414345, #232526); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin: 0;
height: 100px;
}
.btn{
width: 100%;
}
.logo{
margin: 0;
padding: 0;
position: absolute;
left: .7em;
bottom: .5em;
color:#89cff0;
font-family: 'Black Han Sans', sans-serif;
font-size: 3em;
text-shadow:
4px 4px 4px #000;
}
.logout-btn{
padding: 0;
margin: 0;
position: absolute;
right: 2em;
bottom: .5em;
color:#89cff0
}
.about-btn{
padding: 0;
margin: 0;
position: absolute;
right: 8em;
bottom: .5em;
color:#89cff0
}
.admin-dashboard-button{
padding: 0;
margin: 0;
position: absolute;
right: 2em;
bottom: 4em;
color: #fff;
font-style: italic;
font-size: .9em;
}
.welcome-message{
padding: 0;
margin: 0;
position: absolute;
right: 2.5em;
top: 7em;
color: #BDB959;
font-style: italic;
}
.login-page, .register-page{
background-color: #000;
background-image: url("../src/images/background.jpg");
background-position: center;
background-size: cover;
display: table;
min-height: 100vh;
width: 100%;
}
.login-page form, .register-page form{
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1em;
padding-top: 5rem;
}
.login-page form button, .register-page form button{
background: #BDB959;
border-color: #BDB959
}
.login-page form button:hover, .register-page form button:hover{
background: #A3A055;
border-color: #BDB959
}
.page-header {
margin-bottom: 1em;
}
.page-header h1 {
margin: 0;
}
.back-button{
margin: 1em;
}
.home-content, .about-content{
background-color: #414345;
padding: 0 3em;
}
.about-content{
color: #fff;
margin-bottom: 3em;
}
.about-text{
margin-top: 3em;
}
.about text > h3, h4, ul, li {
padding: .5em;
}
.admin-page{
background-color: #414345;
padding: 0 3em;
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1em;
}
.admin-content{
padding-top: 2em;
}
.horse-list-content{
background-color: #414345;
padding: 0 3em;
}
.horse-detail-content{
background-color: #414345;
padding: 0 3em;
}
.main-content{
margin-top: 2em;
}
.track-list{
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
padding: 0;
max-height: 100vh;
overflow: scroll;
}
.card-header {
padding: .1rem .2rem;
margin-bottom: 0;
background-color: rgba(0,0,0,.03);
border-bottom: 1px solid rgba(0,0,0,.125);
background-color:#4d4f52;
-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.card-block {
background: #a3a055;
text-align: center;
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1.1rem;
}
.date-item{
cursor: pointer;
}
.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #4d4f52;
background-clip: border-box;
border: 1px solid #4d4f52;
border-radius: .25rem;
}
.card-header .btn {
width: 100%;
}
.card-header .btn-link {
font-weight: 400;
color: #007bff;
background-color: transparent;
}
.card-header .btn {
color: #f2a3ad;
text-shadow: 1px 1px 1px #000;
font-size: 1.1em;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: .9em;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.loading em{
font-size: 1.5em;
color: #ABE4FF;
}
.back-button{
background: #BDB959;
border-color: #BDB959
}
.back-button:hover{
background: #A3A055;
border-color: #BDB959
}
.table_instructions{
margin-left: 1.5em;
color: #A3A055;
}
.attribute{
color: #a19696;
}
.help-block{
color: #A3A055
}
.password-instructions{
color: pink;
} | style/style.css | html, body{
width: 100vw;
height: 100vh;
font-family: 'Roboto', sans-serif;
}
body{
background-color: #414345;
}
.container{
margin: 0;
width: 100%;
height: 100%;
}
.page-header{
position: relative;
-webkit-box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
box-shadow: 1px 5px 3px -1px rgba(0,0,0,0.75);
background: #232526; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #414345, #232526); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
margin: 0;
height: 100px;
}
.btn{
width: 100%;
}
.logo{
margin: 0;
padding: 0;
position: absolute;
left: .7em;
bottom: .5em;
color:#89cff0;
font-family: 'Black Han Sans', sans-serif;
font-size: 3em;
text-shadow:
4px 4px 4px #000;
}
.logout-btn{
padding: 0;
margin: 0;
position: absolute;
right: 2em;
bottom: .5em;
color:#89cff0
}
.about-btn{
padding: 0;
margin: 0;
position: absolute;
right: 8em;
bottom: .5em;
color:#89cff0
}
.admin-dashboard-button{
padding: 0;
margin: 0;
position: absolute;
right: 2em;
bottom: 4em;
color: #fff;
font-style: italic;
font-size: .9em;
}
.welcome-message{
padding: 0;
margin: 0;
position: absolute;
right: 2.5em;
top: 7em;
color: #BDB959;
font-style: italic;
}
.login-page, .register-page{
background-color: #000;
background-image: url("../src/images/background.jpg");
background-position: center;
background-size: cover;
display: table;
min-height: 100vh;
width: 100%;
}
.login-page form, .register-page form{
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1em;
padding-top: 5rem;
}
.login-page form button, .register-page form button{
background: #BDB959;
border-color: #BDB959
}
.login-page form button:hover, .register-page form button:hover{
background: #A3A055;
border-color: #BDB959
}
.page-header {
margin-bottom: 1em;
}
.page-header h1 {
margin: 0;
}
.back-button{
margin: 1em;
}
.home-content, .about-content{
background-color: #414345;
padding: 0 3em;
}
.about-content{
color: #fff;
margin-bottom: 3em;
}
.about-text{
margin-top: 3em;
}
.about text > h3, h4, ul, li {
padding: .5em;
}
.admin-page{
background-color: #414345;
padding: 0 3em;
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1em;
}
.admin-content{
padding-top: 2em;
}
.horse-list-content{
background-color: #414345;
padding: 0 3em;
}
.horse-detail-content{
background-color: #414345;
padding: 0 3em;
}
.main-content{
margin-top: 2em;
}
.track-list{
-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
padding: 0;
max-height: 100vh;
overflow: scroll;
}
.card-header {
padding: .1rem .2rem;
margin-bottom: 0;
background-color: rgba(0,0,0,.03);
border-bottom: 1px solid rgba(0,0,0,.125);
background-color:#4d4f52;
-webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}
.card-block {
background: #a3a055;
text-align: center;
color: #fff;
text-shadow: 1px 1px 1px #000;
font-size: 1.1rem;
}
.date-item{
cursor: pointer;
}
.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
min-width: 0;
word-wrap: break-word;
background-color: #4d4f52;
background-clip: border-box;
border: 1px solid #4d4f52;
border-radius: .25rem;
}
.card-header .btn {
width: 100%;
}
.card-header .btn-link {
font-weight: 400;
color: #007bff;
background-color: transparent;
}
.card-header .btn {
color: #f2a3ad;
text-shadow: 1px 1px 1px #000;
font-size: 1.1em;
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: .375rem .75rem;
font-size: .9em;
line-height: 1.5;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.loading em{
font-size: 1.5em;
color: #ABE4FF;
}
.back-button{
background: #BDB959;
border-color: #BDB959
}
.back-button:hover{
background: #A3A055;
border-color: #BDB959
}
.table_instructions{
margin-left: 1.5em;
color: #A3A055;
}
.attribute{
color: #a19696;
}
.help-block{
color: #A3A055
}
.password-instructions{
color: pink;
} | 0.305283 | 0.073364 |
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
body {
width: 1920px;
height: 1080px;
background-color: transparent;
margin: 0 auto;
}
.row {
background-color: #dddddd;
}
#hintergrund {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 1156px;
background-color: #1f211f;
}
#kommentatorenbox {
position: absolute;
left: 402px;
top: 825px;
height: 100px;
width: 1116px;
background-color: transparent;
}
#kommentator1box {
position: absolute;
left: 402px;
top: 825px;
height: 100px;
width: 550px;
background-color: #ffffff;
}
#kommentator1text {
position: absolute;
left: 512px;
top: 855px;
height: 70px;
width: 380px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 380px;
overflow: hidden;
vertical-align: middle;
}
#kommentator2box {
position: absolute;
left: 968px;
top: 825px;
height: 100px;
width: 550px;
background-color: #ffffff;
}
#kommentator2text {
position: absolute;
left: 1008px;
top: 855px;
height: 70px;
width: 380px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 380px;
overflow: hidden;
vertical-align: middle;
}
#kommentatorgfllogobox {
position: absolute;
left: 910px;
top: 825px;
height: 100px;
width: 100px;
background-color: transparent;
}
#kommentatorgfllogo {
height: 100px;
width: 100px;
object-fit: contain;
}
#kommentator1logobox {
position: absolute;
left: 412px;
top: 830px;
height: 90px;
width: 90px;
}
#kommentator1logo {
height: 90px;
width: 90px;
object-fit: contain;
}
#kommentator2logobox {
position: absolute;
left: 1418px;
top: 830px;
height: 90px;
width: 90px;
}
#kommentator2logo {
height: 90px;
width: 90px;
object-fit: contain;
}
#bauchbindebox {
position: absolute;
left: 382px;
top: 925px;
height: 100px;
width: 1156px;
background-color: transparent;
}
#bauchbindetopbox {
position: absolute;
left: 402px;
top: 925px;
height: 60px;
width: 1136px;
background-color: #ffffff;
}
#bauchbindetoptext {
position: absolute;
left: 520px;
top: 935px;
height: 50px;
width: 880px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 880px;
overflow: hidden;
vertical-align: middle;
}
#bauchbindebottombox {
position: absolute;
left: 402px;
top: 985px;
height: 40px;
width: 1136px;
background-color: #3c3970;
}
#bauchbindebottomtext {
position: absolute;
left: 520px;
top: 990px;
height: 35px;
width: 880px;
color: #ffffff;
font-size: 26px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 880px;
overflow: hidden;
vertical-align: middle;
}
#bauchbindegfllogobox {
position: absolute;
left: 372px;
top: 925px;
height: 100px;
width: 100px;
background-color: transparent;
}
#bauchbindegfllogo {
height: 100px;
width: 100px;
object-fit: contain;
}
#bauchbindelogobox {
position: absolute;
left: 1420px;
top: 930px;
height: 90px;
width: 90px;
}
#bauchbindelogo {
height: 90px;
width: 90px;
object-fit: contain;
}
#scorebox {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 1156px;
background-color: #e5e3e3;
}
#scorelogobox {
position: absolute;
left: 800px;
top: 965px;
height: 60px;
width: 60px;
background-color: #e5e3e3;
text-align: center;
}
#scorelogo {
height: 55px;
width: 55px;
object-fit: contain;
}
#scorenamebox {
position: absolute;
left: 880px;
top: 965px;
height: 60px;
width: 220px;
background-color: #e5e3e3;
}
#scorename {
position: absolute;
left: 884px;
top: 978px;
height: 30px;
width: 210px;
color: #060607;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 210px;
overflow: hidden;
vertical-align: middle;
}
#teamfarbe1box {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 18px;
}
#teamname1box {
position: absolute;
left: 400px;
top: 965px;
height: 60px;
width: 208px;
background-color: #1f211f;
}
#teamname1 {
position: absolute;
left: 404px;
top: 978px;
height: 30px;
width: 200px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 200px;
overflow: hidden;
vertical-align: middle;
}
#team1timeout1box {
position: absolute;
left: 411px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team1timeout2box {
position: absolute;
left: 498px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team1timeout3box {
position: absolute;
left: 585px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#teamlogo1box {
position: absolute;
left: 608px;
top: 965px;
height: 60px;
width: 60px;
background-color: #1f211f;
text-align: center;
}
#teamlogo1 {
position: relative;
left: 3px;
top: 3px;
height: 50px;
width: 50px;
object-fit: contain;
}
#teamlogo1box_2, #teamlogo1box_3, #teamlogo2box_2, #teamlogo2box_3 {
height: 70px;
width: 150px;
text-align: center;
}
#teamlogo1_2, #teamlogo1_3, #teamlogo2_2, #teamlogo2_3 {
position: relative;
height: 70px;
width: 70px;
object-fit: contain;
}
#spielstand1box {
position: absolute;
left: 678px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#spielstand1 {
position: absolute;
left: 678px;
top: 978px;
height: 30px;
width: 70px;
color: #e5e3e3;
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#ballbesitz1box {
position: absolute;
left: 680px;
top: 965px;
height: 10px;
width: 66px;
background-color: #CCAC19;
}
#teamfarbe2box {
position: absolute;
left: 748px;
top: 965px;
height: 60px;
width: 18px;
}
#teamname2ox {
position: absolute;
left: 766px;
top: 965px;
height: 60px;
width: 208px;
background-color: #1f211f;
}
#teamname2 {
position: absolute;
left: 770px;
top: 978px;
height: 30px;
width: 200px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 200px;
overflow: hidden;
vertical-align: middle;
}
#team2timeout1box {
position: absolute;
left: 781px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team2timeout2box {
position: absolute;
left: 868px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team2timeout3box {
position: absolute;
left: 955px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#teamlogo2box {
position: absolute;
left: 974px;
top: 965px;
height: 60px;
width: 60px;
background-color: #1f211f;
text-align: center;
}
#teamlogo2 {
position: relative;
left: 3px;
top: 3px;
height: 50px;
width: 50px;
object-fit: contain;
}
#spielstand2box {
position: absolute;
left: 1044px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#spielstand2 {
position: absolute;
left: 1044px;
top: 978px;
height: 30px;
width: 70px;
color: #e5e3e3;
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#ballbesitz2box {
position: absolute;
left: 1046px;
top: 965px;
height: 10px;
width: 66px;
background-color: #CCAC19;
}
#quarterbox {
position: absolute;
left: 1114px;
top: 965px;
height: 60px;
width: 110px;
background-color: #1f211f;
}
#quarter {
position: absolute;
left: 1114px;
top: 981px;
height: 24px;
width: 110px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#timebox {
position: absolute;
left: 1224px;
top: 965px;
height: 60px;
width: 70px;
background-color: #1f211f;
}
#time {
position: absolute;
left: 1224px;
top: 981px;
height: 24px;
width: 70px;
color: #CCAC19;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#timebox2 {
width: 70px;
}
#time2 {
position: relative;
height: 24px;
width: 70px;
color: #CCAC19;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#playclockbox {
position: absolute;
left: 1306px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#playclock {
position: absolute;
left: 1306px;
top: 981px;
height: 24px;
width: 70px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;;
text-align: center;
vertical-align: middle;
}
#downdistancebox {
position: absolute;
left: 1376px;
top: 965px;
height: 60px;
width: 162px;
background-color: #1f211f;
}
#downdistance {
position: absolute;
left: 1376px;
top: 981px;
height: 24px;
width: 162px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#flagbox {
position: absolute;
left: 1376px;
top: 965px;
height: 60px;
width: 162px;
background-color: #ffff00;
}
#flag {
position: absolute;
left: 1376px;
top: 981px;
height: 24px;
width: 162px;
color: #060607;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
} | css/scoreboard.css | @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap');
body {
width: 1920px;
height: 1080px;
background-color: transparent;
margin: 0 auto;
}
.row {
background-color: #dddddd;
}
#hintergrund {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 1156px;
background-color: #1f211f;
}
#kommentatorenbox {
position: absolute;
left: 402px;
top: 825px;
height: 100px;
width: 1116px;
background-color: transparent;
}
#kommentator1box {
position: absolute;
left: 402px;
top: 825px;
height: 100px;
width: 550px;
background-color: #ffffff;
}
#kommentator1text {
position: absolute;
left: 512px;
top: 855px;
height: 70px;
width: 380px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 380px;
overflow: hidden;
vertical-align: middle;
}
#kommentator2box {
position: absolute;
left: 968px;
top: 825px;
height: 100px;
width: 550px;
background-color: #ffffff;
}
#kommentator2text {
position: absolute;
left: 1008px;
top: 855px;
height: 70px;
width: 380px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 380px;
overflow: hidden;
vertical-align: middle;
}
#kommentatorgfllogobox {
position: absolute;
left: 910px;
top: 825px;
height: 100px;
width: 100px;
background-color: transparent;
}
#kommentatorgfllogo {
height: 100px;
width: 100px;
object-fit: contain;
}
#kommentator1logobox {
position: absolute;
left: 412px;
top: 830px;
height: 90px;
width: 90px;
}
#kommentator1logo {
height: 90px;
width: 90px;
object-fit: contain;
}
#kommentator2logobox {
position: absolute;
left: 1418px;
top: 830px;
height: 90px;
width: 90px;
}
#kommentator2logo {
height: 90px;
width: 90px;
object-fit: contain;
}
#bauchbindebox {
position: absolute;
left: 382px;
top: 925px;
height: 100px;
width: 1156px;
background-color: transparent;
}
#bauchbindetopbox {
position: absolute;
left: 402px;
top: 925px;
height: 60px;
width: 1136px;
background-color: #ffffff;
}
#bauchbindetoptext {
position: absolute;
left: 520px;
top: 935px;
height: 50px;
width: 880px;
color: #060607;
font-size: 32px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 880px;
overflow: hidden;
vertical-align: middle;
}
#bauchbindebottombox {
position: absolute;
left: 402px;
top: 985px;
height: 40px;
width: 1136px;
background-color: #3c3970;
}
#bauchbindebottomtext {
position: absolute;
left: 520px;
top: 990px;
height: 35px;
width: 880px;
color: #ffffff;
font-size: 26px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
max-width: 880px;
overflow: hidden;
vertical-align: middle;
}
#bauchbindegfllogobox {
position: absolute;
left: 372px;
top: 925px;
height: 100px;
width: 100px;
background-color: transparent;
}
#bauchbindegfllogo {
height: 100px;
width: 100px;
object-fit: contain;
}
#bauchbindelogobox {
position: absolute;
left: 1420px;
top: 930px;
height: 90px;
width: 90px;
}
#bauchbindelogo {
height: 90px;
width: 90px;
object-fit: contain;
}
#scorebox {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 1156px;
background-color: #e5e3e3;
}
#scorelogobox {
position: absolute;
left: 800px;
top: 965px;
height: 60px;
width: 60px;
background-color: #e5e3e3;
text-align: center;
}
#scorelogo {
height: 55px;
width: 55px;
object-fit: contain;
}
#scorenamebox {
position: absolute;
left: 880px;
top: 965px;
height: 60px;
width: 220px;
background-color: #e5e3e3;
}
#scorename {
position: absolute;
left: 884px;
top: 978px;
height: 30px;
width: 210px;
color: #060607;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 210px;
overflow: hidden;
vertical-align: middle;
}
#teamfarbe1box {
position: absolute;
left: 382px;
top: 965px;
height: 60px;
width: 18px;
}
#teamname1box {
position: absolute;
left: 400px;
top: 965px;
height: 60px;
width: 208px;
background-color: #1f211f;
}
#teamname1 {
position: absolute;
left: 404px;
top: 978px;
height: 30px;
width: 200px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 200px;
overflow: hidden;
vertical-align: middle;
}
#team1timeout1box {
position: absolute;
left: 411px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team1timeout2box {
position: absolute;
left: 498px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team1timeout3box {
position: absolute;
left: 585px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#teamlogo1box {
position: absolute;
left: 608px;
top: 965px;
height: 60px;
width: 60px;
background-color: #1f211f;
text-align: center;
}
#teamlogo1 {
position: relative;
left: 3px;
top: 3px;
height: 50px;
width: 50px;
object-fit: contain;
}
#teamlogo1box_2, #teamlogo1box_3, #teamlogo2box_2, #teamlogo2box_3 {
height: 70px;
width: 150px;
text-align: center;
}
#teamlogo1_2, #teamlogo1_3, #teamlogo2_2, #teamlogo2_3 {
position: relative;
height: 70px;
width: 70px;
object-fit: contain;
}
#spielstand1box {
position: absolute;
left: 678px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#spielstand1 {
position: absolute;
left: 678px;
top: 978px;
height: 30px;
width: 70px;
color: #e5e3e3;
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#ballbesitz1box {
position: absolute;
left: 680px;
top: 965px;
height: 10px;
width: 66px;
background-color: #CCAC19;
}
#teamfarbe2box {
position: absolute;
left: 748px;
top: 965px;
height: 60px;
width: 18px;
}
#teamname2ox {
position: absolute;
left: 766px;
top: 965px;
height: 60px;
width: 208px;
background-color: #1f211f;
}
#teamname2 {
position: absolute;
left: 770px;
top: 978px;
height: 30px;
width: 200px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
text-transform: uppercase;
max-width: 200px;
overflow: hidden;
vertical-align: middle;
}
#team2timeout1box {
position: absolute;
left: 781px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team2timeout2box {
position: absolute;
left: 868px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#team2timeout3box {
position: absolute;
left: 955px;
top: 1020px;
height: 5px;
width: 80px;
background-color: #e5e3e3;
}
#teamlogo2box {
position: absolute;
left: 974px;
top: 965px;
height: 60px;
width: 60px;
background-color: #1f211f;
text-align: center;
}
#teamlogo2 {
position: relative;
left: 3px;
top: 3px;
height: 50px;
width: 50px;
object-fit: contain;
}
#spielstand2box {
position: absolute;
left: 1044px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#spielstand2 {
position: absolute;
left: 1044px;
top: 978px;
height: 30px;
width: 70px;
color: #e5e3e3;
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#ballbesitz2box {
position: absolute;
left: 1046px;
top: 965px;
height: 10px;
width: 66px;
background-color: #CCAC19;
}
#quarterbox {
position: absolute;
left: 1114px;
top: 965px;
height: 60px;
width: 110px;
background-color: #1f211f;
}
#quarter {
position: absolute;
left: 1114px;
top: 981px;
height: 24px;
width: 110px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#timebox {
position: absolute;
left: 1224px;
top: 965px;
height: 60px;
width: 70px;
background-color: #1f211f;
}
#time {
position: absolute;
left: 1224px;
top: 981px;
height: 24px;
width: 70px;
color: #CCAC19;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#timebox2 {
width: 70px;
}
#time2 {
position: relative;
height: 24px;
width: 70px;
color: #CCAC19;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#playclockbox {
position: absolute;
left: 1306px;
top: 965px;
height: 60px;
width: 70px;
background-color: #060607;
}
#playclock {
position: absolute;
left: 1306px;
top: 981px;
height: 24px;
width: 70px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;;
text-align: center;
vertical-align: middle;
}
#downdistancebox {
position: absolute;
left: 1376px;
top: 965px;
height: 60px;
width: 162px;
background-color: #1f211f;
}
#downdistance {
position: absolute;
left: 1376px;
top: 981px;
height: 24px;
width: 162px;
color: #e5e3e3;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
}
#flagbox {
position: absolute;
left: 1376px;
top: 965px;
height: 60px;
width: 162px;
background-color: #ffff00;
}
#flag {
position: absolute;
left: 1376px;
top: 981px;
height: 24px;
width: 162px;
color: #060607;
font-size: 24px;
font-family: 'Roboto', sans-serif;
font-weight: bold;
text-align: center;
vertical-align: middle;
} | 0.377426 | 0.052207 |
:root {
/*colores*/
--color-primary: hsl(354, 83%, 68%);
--color-secondary: #fff;
--color-gray-darak: #a3a6a7;
--color-gray-light: #eff4f7;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
font-family: "Montserrat", sans-serif;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
min-width: 320px;
height: 80px;
padding: 10px 0;
}
body {
width: 100%;
min-width: 320px;
}
.header--logo {
width: 150px;
height: 60px;
color: var(--color-primary);
}
.header--menu {
display: flex;
}
.header--menu span {
width: 15px;
height: 15px;
background-image: url("./assets/icons/menu-hamburguesa.svg");
}
.banner {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
min-width: 320px;
height: 280px;
text-align: center;
background-color: var(--color-primary);
}
.banner h1 {
font-size: 2.4rem;
font-weight: bold;
text-transform: uppercase;
line-height: 2.4rem;
margin-bottom: 20px;
color: var(--color-secondary);
}
.banner p {
margin-top: 15px;
margin-left: 20px;
margin-right: 20px;
font-size: 1.4rem;
font-weight: 500;
font-family: "Questrial";
line-height: 1.8rem;
color: var(--color-secondary);
}
.banner .banner--button {
position: absolute;
top: 220px;
left: calc(50% - 115px);
margin-top: 35px;
padding: 15px;
width: 230px;
height: 48px;
background-color: var(--color-secondary);
border: 1px solid var(--color-gray-light);
box-shadow: 6px 9px 12px -2px rgba(0, 0, 0, 0.5);
font-size: 1.4rem;
font-weight: 400;
text-decoration: none;
text-transform: uppercase;
color: var(--color-primary);
}
main {
width: 100%;
height: auto;
}
.main-gallery-container {
width: 100%;
height: auto;
padding-top: 50px;
}
.main-gallery-container--optionsDisplay {
display: flex;
justify-content: center;
}
.main-gallery-container--optionsDisplay span:nth-child(1) {
width: 15px;
height: 15px;
margin-right: 20px;
background-image: url("./assets/icons/menu.svg");
}
.main-gallery-container--optionsDisplay span:nth-child(2) {
width: 15px;
height: 15px;
background-image: url("./assets/icons/menu_line.svg");
}
.main-gallery-container--optionsFilter {
display: flex;
justify-content: center;
margin: 30px 20px 30px 20px;
}
.main-gallery-container--optionsFilter button {
border: none;
padding: 3px 8px;
margin-left: 4px;
font-size: 1.4rem;
font-family: "Questrial";
color: var(--color-gray-darak);
background-color: var(--color-secondary);
}
.main-gallery-container--optionsFilter button:nth-child(1) {
color: var(--color-secondary);
background-color: var(--color-primary);
}
.main-grid-container--button {
display: flex;
justify-content: center;
margin: 15px 0;
}
.main-grid-container--button a {
border: none;
padding: 10px 35px;
font-size: 1.4rem;
font-weight: 300;
color: var(--color-secondary);
background-color: var(--color-primary);
letter-spacing: 0.3rem;
text-decoration: none;
}
/*Footer*/
footer {
height: 90px;
width: 100%;
margin-top: 30px;
margin-bottom: 30px;
}
.footer--copyrigth {
display: flex;
justify-content: center;
align-items: center;
font-size: 1.4rem;
font-family: "Questrial";
font-weight: 200;
color: var(--color-gray-darak);
letter-spacing: 0.3rem;
}
.footer--copyrigth a {
text-decoration: none;
color: var(--color-primary);
margin-left: 2px;
margin-right: 2px;
}
.footer--redes {
display: flex;
justify-content: center;
margin-top: 20px;
}
.footer--redes span {
width: 15px;
height: 15px;
margin-left: 25px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.footer--redes span:nth-child(1) {
background-image: url("./assets/icons/facebook-logo.svg");
}
.footer--redes span:nth-child(2) {
background-image: url("./assets/icons/twitter-logo.svg");
}
.footer--redes span:nth-child(3) {
background-image: url("./assets/icons/dribbble-logo.svg");
}
.footer--redes span:nth-child(4) {
background-image: url("./assets/icons/google-plus-logo.svg");
}
.footer--redes span:nth-child(5) {
background-image: url("./assets/icons/youtube-logo.svg");
}
.pinteres {
margin: 0 auto;
/* background-color: RED; */
max-width: 1200px;
box-sizing: border-box;
}
.grid-container {
/* display: grid;
grid-template-columns: repeat(auto-fill, 230px);
gap: 20px;
justify-content: center; */
/* grid-template-rows: masonry; */
margin: 0 auto;
}
.grid-item {
width: 350px;
/* height: 200px;
*/
margin-bottom: 40px;
object-fit: cover;
/* border-radius: 15px;
cursor: zoom-in; */
background-color: lightgray;
}
.grid-item:hover {
filter: opacity(0.5);
transform: scale(0.9);
transition: transform 0.5s;
}
/*menu */
.header--menu-options ul {
display: none;
font-size: 1.4rem;
font-weight: 500;
line-height: 1.8rem;
list-style: none;
}
.header--menu-options li {
margin-right: 20px;
padding: 8px 30px;
color: var(--color-gray-darak);
}
.header--menu-options li:nth-child(1) {
background-color: var(--color-primary);
color: var(--color-secondary);
}
.header--menu-options a {
text-decoration: none;
color: var(--just-white);
}
/*grilla */
/* .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 30px 30px;
text-align: center;
} */
/* .h1 {
font-size: 3em;
margin-bottom: 15px;
} */
/*barra del search*/
/* .search-input {
width: 400px;
height: 30px;
padding: 5px;
border-radius: 4px;
outline: none;
} */
/* .btn {
width: 60px;
height: 30px;
color: white;
background: #ff0000;
border: none;
}
button {
cursor: pointer;
border-radius: 4px;
font-family: "Lato", sans-serif;
}
button:hover {
background: #e60000;
}
button:focus {
outline: none;
}
.hidden {
display: none;
} */
/* .result-stats {
color: gray;
padding-top: 15px;
font-size: 1.5em;
} */
/* ESTO ES LA Grilla */
/* .search-results {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 20px;
padding: 25px;
} */
/*tamaño de la imagen*/
/* .result-item {
width: 250px;
height: 250px;
padding: 5px;
border-radius: 4px;
} */
/* .prev-btn,
.next-btn {
margin-bottom: 20px;
background: #ff0000;
width: 100px;
height: 30px;
color: white;
border: none;
}
.next-btn {
margin-bottom: 20px;
background: #ff0000;
width: 100px;
height: 30px;
color: white;
border: none;
}
.next-btn {
margin-left: 10px;
}
.spinner {
width: 40px;
height: 40px;
position: relative;
margin: 100px auto;
}
.double-bounce1,
.double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color:
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-bounce 2s infinite ease-in-out;
animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
0%,
100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@keyframes sk-bounce {
0%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
} */ | styles.css | :root {
/*colores*/
--color-primary: hsl(354, 83%, 68%);
--color-secondary: #fff;
--color-gray-darak: #a3a6a7;
--color-gray-light: #eff4f7;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
font-size: 62.5%;
font-family: "Montserrat", sans-serif;
}
header {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
min-width: 320px;
height: 80px;
padding: 10px 0;
}
body {
width: 100%;
min-width: 320px;
}
.header--logo {
width: 150px;
height: 60px;
color: var(--color-primary);
}
.header--menu {
display: flex;
}
.header--menu span {
width: 15px;
height: 15px;
background-image: url("./assets/icons/menu-hamburguesa.svg");
}
.banner {
position: relative;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%;
min-width: 320px;
height: 280px;
text-align: center;
background-color: var(--color-primary);
}
.banner h1 {
font-size: 2.4rem;
font-weight: bold;
text-transform: uppercase;
line-height: 2.4rem;
margin-bottom: 20px;
color: var(--color-secondary);
}
.banner p {
margin-top: 15px;
margin-left: 20px;
margin-right: 20px;
font-size: 1.4rem;
font-weight: 500;
font-family: "Questrial";
line-height: 1.8rem;
color: var(--color-secondary);
}
.banner .banner--button {
position: absolute;
top: 220px;
left: calc(50% - 115px);
margin-top: 35px;
padding: 15px;
width: 230px;
height: 48px;
background-color: var(--color-secondary);
border: 1px solid var(--color-gray-light);
box-shadow: 6px 9px 12px -2px rgba(0, 0, 0, 0.5);
font-size: 1.4rem;
font-weight: 400;
text-decoration: none;
text-transform: uppercase;
color: var(--color-primary);
}
main {
width: 100%;
height: auto;
}
.main-gallery-container {
width: 100%;
height: auto;
padding-top: 50px;
}
.main-gallery-container--optionsDisplay {
display: flex;
justify-content: center;
}
.main-gallery-container--optionsDisplay span:nth-child(1) {
width: 15px;
height: 15px;
margin-right: 20px;
background-image: url("./assets/icons/menu.svg");
}
.main-gallery-container--optionsDisplay span:nth-child(2) {
width: 15px;
height: 15px;
background-image: url("./assets/icons/menu_line.svg");
}
.main-gallery-container--optionsFilter {
display: flex;
justify-content: center;
margin: 30px 20px 30px 20px;
}
.main-gallery-container--optionsFilter button {
border: none;
padding: 3px 8px;
margin-left: 4px;
font-size: 1.4rem;
font-family: "Questrial";
color: var(--color-gray-darak);
background-color: var(--color-secondary);
}
.main-gallery-container--optionsFilter button:nth-child(1) {
color: var(--color-secondary);
background-color: var(--color-primary);
}
.main-grid-container--button {
display: flex;
justify-content: center;
margin: 15px 0;
}
.main-grid-container--button a {
border: none;
padding: 10px 35px;
font-size: 1.4rem;
font-weight: 300;
color: var(--color-secondary);
background-color: var(--color-primary);
letter-spacing: 0.3rem;
text-decoration: none;
}
/*Footer*/
footer {
height: 90px;
width: 100%;
margin-top: 30px;
margin-bottom: 30px;
}
.footer--copyrigth {
display: flex;
justify-content: center;
align-items: center;
font-size: 1.4rem;
font-family: "Questrial";
font-weight: 200;
color: var(--color-gray-darak);
letter-spacing: 0.3rem;
}
.footer--copyrigth a {
text-decoration: none;
color: var(--color-primary);
margin-left: 2px;
margin-right: 2px;
}
.footer--redes {
display: flex;
justify-content: center;
margin-top: 20px;
}
.footer--redes span {
width: 15px;
height: 15px;
margin-left: 25px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.footer--redes span:nth-child(1) {
background-image: url("./assets/icons/facebook-logo.svg");
}
.footer--redes span:nth-child(2) {
background-image: url("./assets/icons/twitter-logo.svg");
}
.footer--redes span:nth-child(3) {
background-image: url("./assets/icons/dribbble-logo.svg");
}
.footer--redes span:nth-child(4) {
background-image: url("./assets/icons/google-plus-logo.svg");
}
.footer--redes span:nth-child(5) {
background-image: url("./assets/icons/youtube-logo.svg");
}
.pinteres {
margin: 0 auto;
/* background-color: RED; */
max-width: 1200px;
box-sizing: border-box;
}
.grid-container {
/* display: grid;
grid-template-columns: repeat(auto-fill, 230px);
gap: 20px;
justify-content: center; */
/* grid-template-rows: masonry; */
margin: 0 auto;
}
.grid-item {
width: 350px;
/* height: 200px;
*/
margin-bottom: 40px;
object-fit: cover;
/* border-radius: 15px;
cursor: zoom-in; */
background-color: lightgray;
}
.grid-item:hover {
filter: opacity(0.5);
transform: scale(0.9);
transition: transform 0.5s;
}
/*menu */
.header--menu-options ul {
display: none;
font-size: 1.4rem;
font-weight: 500;
line-height: 1.8rem;
list-style: none;
}
.header--menu-options li {
margin-right: 20px;
padding: 8px 30px;
color: var(--color-gray-darak);
}
.header--menu-options li:nth-child(1) {
background-color: var(--color-primary);
color: var(--color-secondary);
}
.header--menu-options a {
text-decoration: none;
color: var(--just-white);
}
/*grilla */
/* .container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 30px 30px;
text-align: center;
} */
/* .h1 {
font-size: 3em;
margin-bottom: 15px;
} */
/*barra del search*/
/* .search-input {
width: 400px;
height: 30px;
padding: 5px;
border-radius: 4px;
outline: none;
} */
/* .btn {
width: 60px;
height: 30px;
color: white;
background: #ff0000;
border: none;
}
button {
cursor: pointer;
border-radius: 4px;
font-family: "Lato", sans-serif;
}
button:hover {
background: #e60000;
}
button:focus {
outline: none;
}
.hidden {
display: none;
} */
/* .result-stats {
color: gray;
padding-top: 15px;
font-size: 1.5em;
} */
/* ESTO ES LA Grilla */
/* .search-results {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-gap: 20px;
padding: 25px;
} */
/*tamaño de la imagen*/
/* .result-item {
width: 250px;
height: 250px;
padding: 5px;
border-radius: 4px;
} */
/* .prev-btn,
.next-btn {
margin-bottom: 20px;
background: #ff0000;
width: 100px;
height: 30px;
color: white;
border: none;
}
.next-btn {
margin-bottom: 20px;
background: #ff0000;
width: 100px;
height: 30px;
color: white;
border: none;
}
.next-btn {
margin-left: 10px;
}
.spinner {
width: 40px;
height: 40px;
position: relative;
margin: 100px auto;
}
.double-bounce1,
.double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color:
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-bounce 2s infinite ease-in-out;
animation: sk-bounce 2s infinite ease-in-out;
}
.double-bounce2 {
-webkit-animation-delay: -1s;
animation-delay: -1s;
}
@-webkit-keyframes sk-bounce {
0%,
100% {
-webkit-transform: scale(0);
}
50% {
-webkit-transform: scale(1);
}
}
@keyframes sk-bounce {
0%,
100% {
transform: scale(0);
-webkit-transform: scale(0);
}
50% {
transform: scale(1);
-webkit-transform: scale(1);
}
} */ | 0.393618 | 0.101411 |
ul.tab {
list-style-type: none;
margin: 0;
padding-left: 0%;
}
@media screen and (min-width: 1200px) {
ul.tab {
padding-left: 22%;
}
ul.tab > li {
float: left;
}
}
ul.tab >li >a {
display: block;
padding: 22px;
color: gray;
text-decoration: none !important;
border-bottom: 1px solid #DBE6F0;
}
/*ul.tab >li > a:active {*/
/* color: #EB3B5B;*/
/* border-bottom: 2px solid #EB3B5B;*/
/*}*/
/*contact form*/
.input-group, .fromCard, #termsCheckBox{
box-shadow: 0 .5rem 1rem rgba(0,1,0,.15);
border-radius: 5px;
}
.input-group > input:focus, .input-group > textarea:focus {
box-shadow: none;
}
.input-group:hover {
transition: transform .3s; /* Animation */
transform: scale(1.03);
}
.formBtn{
position: relative;
display: inline-block;
padding: 5px 25px;
margin: 0;
text-decoration: none;
border: 0;
outline: none;
background: gray;
color: white;
border-radius: 5px;
text-align: center;
}
.formBtn:hover, #termsCheckBox:hover {
transition: transform .3s; /* Animation */
transform: scale(1.08);
}
.input-group-text > i, .formTitle, .input-group > i{
color: gray;
}
.termsConditionBody{
display:block;
width:100%;
max-height:300px;
overflow-y:scroll;
}
#termsCheckBox{
margin-right: 2%;
width: 15px;
height: 15px;
}
/*.inputError {*/
/* color: red;*/
/* font-size: 14px;*/
/*}*/
/*.errors{*/
/* margin-bottom: 0px !important;*/
/*}*/
/*ThankYou Message*/
.thank-you-pop{
width:100%;
padding: 0px 20px 20px 20px;
text-align:center;
}
.thank-you-pop img{
width:76px;
height:auto;
margin:0 auto;
display:block;
margin-bottom:25px;
}
.thank-you-pop h1{
font-size: 42px;
margin-bottom: 25px;
color:#5C5C5C;
}
.thank-you-pop p{
font-size: 20px;
margin-bottom: 27px;
color:#5C5C5C;
}
#thankYouModal .modal-header, #errorModal .modal-header{
border:0px;
}
/*spinner */
.spinner {
display: none;
position: fixed;
z-index: 1031;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/*Feature Card*/
.featureCard{
margin: 2% 4%;
}
/*remove web host logo*/
img[src ="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {
display: none;
} | public/contactFormGray.css | ul.tab {
list-style-type: none;
margin: 0;
padding-left: 0%;
}
@media screen and (min-width: 1200px) {
ul.tab {
padding-left: 22%;
}
ul.tab > li {
float: left;
}
}
ul.tab >li >a {
display: block;
padding: 22px;
color: gray;
text-decoration: none !important;
border-bottom: 1px solid #DBE6F0;
}
/*ul.tab >li > a:active {*/
/* color: #EB3B5B;*/
/* border-bottom: 2px solid #EB3B5B;*/
/*}*/
/*contact form*/
.input-group, .fromCard, #termsCheckBox{
box-shadow: 0 .5rem 1rem rgba(0,1,0,.15);
border-radius: 5px;
}
.input-group > input:focus, .input-group > textarea:focus {
box-shadow: none;
}
.input-group:hover {
transition: transform .3s; /* Animation */
transform: scale(1.03);
}
.formBtn{
position: relative;
display: inline-block;
padding: 5px 25px;
margin: 0;
text-decoration: none;
border: 0;
outline: none;
background: gray;
color: white;
border-radius: 5px;
text-align: center;
}
.formBtn:hover, #termsCheckBox:hover {
transition: transform .3s; /* Animation */
transform: scale(1.08);
}
.input-group-text > i, .formTitle, .input-group > i{
color: gray;
}
.termsConditionBody{
display:block;
width:100%;
max-height:300px;
overflow-y:scroll;
}
#termsCheckBox{
margin-right: 2%;
width: 15px;
height: 15px;
}
/*.inputError {*/
/* color: red;*/
/* font-size: 14px;*/
/*}*/
/*.errors{*/
/* margin-bottom: 0px !important;*/
/*}*/
/*ThankYou Message*/
.thank-you-pop{
width:100%;
padding: 0px 20px 20px 20px;
text-align:center;
}
.thank-you-pop img{
width:76px;
height:auto;
margin:0 auto;
display:block;
margin-bottom:25px;
}
.thank-you-pop h1{
font-size: 42px;
margin-bottom: 25px;
color:#5C5C5C;
}
.thank-you-pop p{
font-size: 20px;
margin-bottom: 27px;
color:#5C5C5C;
}
#thankYouModal .modal-header, #errorModal .modal-header{
border:0px;
}
/*spinner */
.spinner {
display: none;
position: fixed;
z-index: 1031;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
/*Feature Card*/
.featureCard{
margin: 2% 4%;
}
/*remove web host logo*/
img[src ="https://cdn.000webhost.com/000webhost/logo/footer-powered-by-000webhost-white2.png"] {
display: none;
} | 0.314051 | 0.103024 |
.pg,[class*=" pg-"],[class^=pg-]{display:inline-block;font:normal normal normal 14px/1 framework-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.pg-signals:before{content:"\e61c"}
.pg-crop:before{content:"\e657"}
.pg-folder_alt:before{content:"\e658"}
.pg-folder:before{content:"\e659"}
.pg-theme:before{content:"\e65a"}
.pg-battery_empty:before{content:"\e65b"}
.pg-battery:before{content:"\e65c"}
.pg-note:before{content:"\e65d"}
.pg-server_hard:before{content:"\e65e"}
.pg-servers:before{content:"\e65f"}
.pg-menu_justify:before{content:"\e660"}
.pg-credit_card:before{content:"\e60f"}
.pg-fullscreen_restore:before{content:"\e633"}
.pg-fullscreen:before{content:"\e634"}
.pg-minus:before{content:"\e635"}
.pg-minus_circle:before{content:"\e63a"}
.pg-plus_circle:before{content:"\e656"}
.pg-refresh_new:before{content:"\e600"}
.pg-close_line:before{content:"\e601"}
.pg-close:before{content:"\e60a"}
.pg-arrow_down:before{content:"\e60b"}
.pg-arrow_left_line_alt:before{content:"\e628"}
.pg-arrow_left:before{content:"\e629"}
.pg-arrow_lright_line_alt:before{content:"\e62a"}
.pg-arrow_maximize_line:before{content:"\e62b"}
.pg-arrow_maximize:before{content:"\e62c"}
.pg-arrow_minimize_line:before{content:"\e62f"}
.pg-arrow_minimize:before{content:"\e630"}
.pg-arrow_right:before{content:"\e631"}
.pg-arrow_up:before{content:"\e632"}
.pg-more:before{content:"\e655"}
.pg-bag:before{content:"\e602"}
.pg-bag1:before{content:"\e603"}
.pg-bold:before{content:"\e604"}
.pg-calender:before{content:"\e605"}
.pg-camera:before{content:"\e606"}
.pg-centeralign:before{content:"\e607"}
.pg-charts:before{content:"\e608"}
.pg-clock:before{content:"\e609"}
.pg-comment:before{content:"\e60c"}
.pg-contact_book:before{content:"\e60d"}
.pg-credit_card_line:before{content:"\e60e"}
.pg-cupboard:before{content:"\e610"}
.pg-desktop:before{content:"\e611"}
.pg-download:before{content:"\e612"}
.pg-eraser:before{content:"\e613"}
.pg-extra:before{content:"\e614"}
.pg-form:before{content:"\e615"}
.pg-grid:before{content:"\e616"}
.pg-home:before{content:"\e617"}
.pg-image:before{content:"\e618"}
.pg-inbox:before{content:"\e619"}
.pg-indent:before{content:"\e61a"}
.pg-italic:before{content:"\e61b"}
.pg-laptop:before{content:"\e61d"}
.pg-layouts:before{content:"\e61e"}
.pg-layouts2:before{content:"\e61f"}
.pg-layouts3:before{content:"\e620"}
.pg-layouts4:before{content:"\e621"}
.pg-leftalign:before{content:"\e622"}
.pg-like:before{content:"\e623"}
.pg-like1:before{content:"\e624"}
.pg-lock:before{content:"\e625"}
.pg-mail:before{content:"\e626"}
.pg-map:before{content:"\e627"}
.pg-menu_lv:before{content:"\e62d"}
.pg-menu:before{content:"\e62e"}
.pg-movie:before{content:"\e636"}
.pg-ordered_list:before{content:"\e637"}
.pg-outdent:before{content:"\e638"}
.pg-phone:before{content:"\e639"}
.pg-plus:before{content:"\e63b"}
.pg-power:before{content:"\e63c"}
.pg-printer:before{content:"\e63d"}
.pg-refresh:before{content:"\e63e"}
.pg-resize:before{content:"\e63f"}
.pg-right_align:before{content:"\e640"}
.pg-save:before{content:"\e641"}
.pg-search:before{content:"\e642"}
.pg-sent:before{content:"\e643"}
.pg-settings_small_1:before{content:"\e644"}
.pg-settings_small:before{content:"\e645"}
.pg-settings:before{content:"\e646"}
.pg-shopping_cart:before{content:"\e647"}
.pg-social:before{content:"\e648"}
.pg-spam:before{content:"\e649"}
.pg-suitcase:before{content:"\e64a"}
.pg-tables:before{content:"\e64b"}
.pg-tablet:before{content:"\e64c"}
.pg-telephone:before{content:"\e64d"}
.pg-text_style:before{content:"\e64e"}
.pg-trash_line:before{content:"\e64f"}
.pg-trash:before{content:"\e650"}
.pg-ui:before{content:"\e651"}
.pg-underline:before{content:"\e652"}
.pg-unordered_list:before{content:"\e653"}
.pg-video:before{content:"\e654"} | src/qt/res/assets/css/framework-icons.min.css | .pg,[class*=" pg-"],[class^=pg-]{display:inline-block;font:normal normal normal 14px/1 framework-icon;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.pg-signals:before{content:"\e61c"}
.pg-crop:before{content:"\e657"}
.pg-folder_alt:before{content:"\e658"}
.pg-folder:before{content:"\e659"}
.pg-theme:before{content:"\e65a"}
.pg-battery_empty:before{content:"\e65b"}
.pg-battery:before{content:"\e65c"}
.pg-note:before{content:"\e65d"}
.pg-server_hard:before{content:"\e65e"}
.pg-servers:before{content:"\e65f"}
.pg-menu_justify:before{content:"\e660"}
.pg-credit_card:before{content:"\e60f"}
.pg-fullscreen_restore:before{content:"\e633"}
.pg-fullscreen:before{content:"\e634"}
.pg-minus:before{content:"\e635"}
.pg-minus_circle:before{content:"\e63a"}
.pg-plus_circle:before{content:"\e656"}
.pg-refresh_new:before{content:"\e600"}
.pg-close_line:before{content:"\e601"}
.pg-close:before{content:"\e60a"}
.pg-arrow_down:before{content:"\e60b"}
.pg-arrow_left_line_alt:before{content:"\e628"}
.pg-arrow_left:before{content:"\e629"}
.pg-arrow_lright_line_alt:before{content:"\e62a"}
.pg-arrow_maximize_line:before{content:"\e62b"}
.pg-arrow_maximize:before{content:"\e62c"}
.pg-arrow_minimize_line:before{content:"\e62f"}
.pg-arrow_minimize:before{content:"\e630"}
.pg-arrow_right:before{content:"\e631"}
.pg-arrow_up:before{content:"\e632"}
.pg-more:before{content:"\e655"}
.pg-bag:before{content:"\e602"}
.pg-bag1:before{content:"\e603"}
.pg-bold:before{content:"\e604"}
.pg-calender:before{content:"\e605"}
.pg-camera:before{content:"\e606"}
.pg-centeralign:before{content:"\e607"}
.pg-charts:before{content:"\e608"}
.pg-clock:before{content:"\e609"}
.pg-comment:before{content:"\e60c"}
.pg-contact_book:before{content:"\e60d"}
.pg-credit_card_line:before{content:"\e60e"}
.pg-cupboard:before{content:"\e610"}
.pg-desktop:before{content:"\e611"}
.pg-download:before{content:"\e612"}
.pg-eraser:before{content:"\e613"}
.pg-extra:before{content:"\e614"}
.pg-form:before{content:"\e615"}
.pg-grid:before{content:"\e616"}
.pg-home:before{content:"\e617"}
.pg-image:before{content:"\e618"}
.pg-inbox:before{content:"\e619"}
.pg-indent:before{content:"\e61a"}
.pg-italic:before{content:"\e61b"}
.pg-laptop:before{content:"\e61d"}
.pg-layouts:before{content:"\e61e"}
.pg-layouts2:before{content:"\e61f"}
.pg-layouts3:before{content:"\e620"}
.pg-layouts4:before{content:"\e621"}
.pg-leftalign:before{content:"\e622"}
.pg-like:before{content:"\e623"}
.pg-like1:before{content:"\e624"}
.pg-lock:before{content:"\e625"}
.pg-mail:before{content:"\e626"}
.pg-map:before{content:"\e627"}
.pg-menu_lv:before{content:"\e62d"}
.pg-menu:before{content:"\e62e"}
.pg-movie:before{content:"\e636"}
.pg-ordered_list:before{content:"\e637"}
.pg-outdent:before{content:"\e638"}
.pg-phone:before{content:"\e639"}
.pg-plus:before{content:"\e63b"}
.pg-power:before{content:"\e63c"}
.pg-printer:before{content:"\e63d"}
.pg-refresh:before{content:"\e63e"}
.pg-resize:before{content:"\e63f"}
.pg-right_align:before{content:"\e640"}
.pg-save:before{content:"\e641"}
.pg-search:before{content:"\e642"}
.pg-sent:before{content:"\e643"}
.pg-settings_small_1:before{content:"\e644"}
.pg-settings_small:before{content:"\e645"}
.pg-settings:before{content:"\e646"}
.pg-shopping_cart:before{content:"\e647"}
.pg-social:before{content:"\e648"}
.pg-spam:before{content:"\e649"}
.pg-suitcase:before{content:"\e64a"}
.pg-tables:before{content:"\e64b"}
.pg-tablet:before{content:"\e64c"}
.pg-telephone:before{content:"\e64d"}
.pg-text_style:before{content:"\e64e"}
.pg-trash_line:before{content:"\e64f"}
.pg-trash:before{content:"\e650"}
.pg-ui:before{content:"\e651"}
.pg-underline:before{content:"\e652"}
.pg-unordered_list:before{content:"\e653"}
.pg-video:before{content:"\e654"} | 0.250454 | 0.091544 |
.exdocfield-browser-panel {
margin: 0 auto;
padding: 0px 15px;
}
.exdocfield-browser-search {
padding-top: 10px;
padding-bottom: 5px;
}
.exdocfield-browser-search-input {
width: 550px;
height:30px;
}
.exdocfield-browser-results-summary {
padding: 5px 2px;
margin-bottom: 8px;
}
.exdocfield-browser-pager {
padding: 0;
text-align: center;
}
.exdocfield-browser-pager span span em span {
font-weight: bold;
}
.exdocfield-browser-results {
background-color: #f7f7f7;
padding: 0;
height: 440px;
overflow-x: hidden;
overflow-y: auto;
margin: 10px 0;
}
.exdocfield-browser-result {
margin: 10px auto;
padding: 5px 8px;
clear: left;
overflow: auto;
width: 768px;
max-height: 145px;
overflow: hidden;
}
.exdocfield-browser-result odd {
background: #fbffe3;
}
.exdocfield-browser-result.selected-result, .exdocfield-browser-result:hover {
background: #ffffcc;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px #888;
box-shadow: 0 0 5px #888;
}
.exdocfield-browser-result-content {
float: left;
margin-left:20px;
width: 520px;
}
.exdocfield-browser-result-image {
width: 150px;
float: left;
}
.exdocfield-browser-result-image img{
width:80px !important;
}
.exdocfield-browser-result-content .title {
display: block;
margin-bottom: 2px;
font-size:14px;
}
.exdocfield-browser-result-content .summary {
display: block;
clear: left;
/*TODO Will summary have <p> or not?*/
color: #656565;
margin-bottom: 2px;
}
.exdocfield-browser-result-content p {
color: #656565;
margin-top: 10px;
}
.exdocfield-browser-result-select {
float: left;
width: 45px;
}
.exdocfield-browser-result-select input[type='checkbox'] {
margin-top: 8px;
}
/*
BUTTONS
*/
.exdocfield-browser-search button.green-button {
-moz-box-shadow: inset 0px 1px 0px 0px #a4e271;
-webkit-box-shadow: inset 0px 1px 0px 0px #a4e271;
box-shadow: inset 0px 1px 0px 0px #a4e271;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
background: -moz-linear-gradient(center top, #89c403 5%, #77a809 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#89c403', endColorstr = '#77a809');
background-color: #89c403;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #74b807;
display: inline-block;
line-height: 10px;
padding: 3px 20px;
text-decoration: none;
font-weight: bold;
cursor: pointer;
height:30px;
}
.exdocfield-browser-search button.green-button:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
background: -moz-linear-gradient(center top, #77a809 5%, #89c403 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#77a809', endColorstr = '#89c403');
background-color: #77a809;
}
.green-button:active {
position: relative;
top: 1px;
}
/* PAGINATION */
.exdocfield-browser-pagination {
text-align: center;
padding: 0.3em;
cursor: default;
}
.exdocfield-browser-pagination a, .picker-browser-pagination span {
padding: 0.2em 0.2em;
}
.exdocfield-browser-pagination .disabled {
color: #aaaaaa;
}
.exdocfield-browser-pagination .current {
font-style: normal;
font-weight: bold;
color: #ff0084;
}
.exdocfield-browser-pagination a {
color: #0063dc;
text-decoration: none;
}
.exdocfield-browser-pagination a:hover, .exdocfield-browser-pagination a:focus {
color: #656565;
}
.exdocfield-browser-pagination .previous-page, .exdocfield-browser-pagination .next-page {
margin: 0 0.2em;
} | fieldpicker/src/main/resources/org/onehippo/forge/exdocpicker/impl/field/ExternalDocumentFieldBrowserDialog.css | .exdocfield-browser-panel {
margin: 0 auto;
padding: 0px 15px;
}
.exdocfield-browser-search {
padding-top: 10px;
padding-bottom: 5px;
}
.exdocfield-browser-search-input {
width: 550px;
height:30px;
}
.exdocfield-browser-results-summary {
padding: 5px 2px;
margin-bottom: 8px;
}
.exdocfield-browser-pager {
padding: 0;
text-align: center;
}
.exdocfield-browser-pager span span em span {
font-weight: bold;
}
.exdocfield-browser-results {
background-color: #f7f7f7;
padding: 0;
height: 440px;
overflow-x: hidden;
overflow-y: auto;
margin: 10px 0;
}
.exdocfield-browser-result {
margin: 10px auto;
padding: 5px 8px;
clear: left;
overflow: auto;
width: 768px;
max-height: 145px;
overflow: hidden;
}
.exdocfield-browser-result odd {
background: #fbffe3;
}
.exdocfield-browser-result.selected-result, .exdocfield-browser-result:hover {
background: #ffffcc;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px #888;
box-shadow: 0 0 5px #888;
}
.exdocfield-browser-result-content {
float: left;
margin-left:20px;
width: 520px;
}
.exdocfield-browser-result-image {
width: 150px;
float: left;
}
.exdocfield-browser-result-image img{
width:80px !important;
}
.exdocfield-browser-result-content .title {
display: block;
margin-bottom: 2px;
font-size:14px;
}
.exdocfield-browser-result-content .summary {
display: block;
clear: left;
/*TODO Will summary have <p> or not?*/
color: #656565;
margin-bottom: 2px;
}
.exdocfield-browser-result-content p {
color: #656565;
margin-top: 10px;
}
.exdocfield-browser-result-select {
float: left;
width: 45px;
}
.exdocfield-browser-result-select input[type='checkbox'] {
margin-top: 8px;
}
/*
BUTTONS
*/
.exdocfield-browser-search button.green-button {
-moz-box-shadow: inset 0px 1px 0px 0px #a4e271;
-webkit-box-shadow: inset 0px 1px 0px 0px #a4e271;
box-shadow: inset 0px 1px 0px 0px #a4e271;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #89c403), color-stop(1, #77a809));
background: -moz-linear-gradient(center top, #89c403 5%, #77a809 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#89c403', endColorstr = '#77a809');
background-color: #89c403;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
border-radius: 6px;
border: 1px solid #74b807;
display: inline-block;
line-height: 10px;
padding: 3px 20px;
text-decoration: none;
font-weight: bold;
cursor: pointer;
height:30px;
}
.exdocfield-browser-search button.green-button:hover {
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #77a809), color-stop(1, #89c403));
background: -moz-linear-gradient(center top, #77a809 5%, #89c403 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#77a809', endColorstr = '#89c403');
background-color: #77a809;
}
.green-button:active {
position: relative;
top: 1px;
}
/* PAGINATION */
.exdocfield-browser-pagination {
text-align: center;
padding: 0.3em;
cursor: default;
}
.exdocfield-browser-pagination a, .picker-browser-pagination span {
padding: 0.2em 0.2em;
}
.exdocfield-browser-pagination .disabled {
color: #aaaaaa;
}
.exdocfield-browser-pagination .current {
font-style: normal;
font-weight: bold;
color: #ff0084;
}
.exdocfield-browser-pagination a {
color: #0063dc;
text-decoration: none;
}
.exdocfield-browser-pagination a:hover, .exdocfield-browser-pagination a:focus {
color: #656565;
}
.exdocfield-browser-pagination .previous-page, .exdocfield-browser-pagination .next-page {
margin: 0 0.2em;
} | 0.416322 | 0.090213 |
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap");
/*font-family: 'Montserrat', sans-serif;*/
html {
position: relative;
min-height: 100%
}
body {
background: #060c1a;
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
-o-background-size: cover!important;
-webkit-background-size: cover!important;
-moz-background-size: cover!important;
background-size: cover!important;
background-position: center;
}
.UserN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.EmailN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.PassN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.title {
font-family: 'Montserrat', sans-serif;
color: red;
font-size: 25px;
text-align: center;
}
input[type=text], input[type=password], input[type=email] {
width: 70% !important;
height: 30px !important;
border-radius: 3px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: none;
font-family: 'Montserrat', sans-serif;
background: #0b152e;
color: #ffffff;
}
input[type=submit] {
background: transparent;
}
input[type=submit]:hover {
color: #ff006a;
cursor: pointer;
}
.container {
border: 1px solid #de0b43;
padding: 10px;
width: 350px !important;
/*margin-left: auto !important;
margin-right: auto !important;
margin-top: 90px;*/
margin: 70px auto 0;
}
.user {
display: inline-block !important;
margin: auto;
}
.email {
display: inline-block !important;
margin: auto;
}
.pass {
display: inline-block !important;
margin: auto;
}
#userid {
text-align: center;
}
#emailid {
text-align: center;
}
#passid {
text-align: center;
}
#submitter {
display: inline-block !important;
margin: auto;
}
#input-button {
text-align: center;
}
.jspan {
font-size: 10px;
}
input[type=checkbox]{
-ms-transform: scale(0.5); /* IE */
-moz-transform: scale(0.5); /* FF */
-webkit-transform: scale(0.5); /* Safari and Chrome */
-o-transform: scale(0.5); /* Opera */
transform: scale(0.5);
}
.foot {
background: #1d2333;
position: absolute;
left: 0;
bottom: 0;
height: 50px;
width: 100%;
overflow: hidden;
}
.foot-paragraph {
font-family: 'Montserrat', sans-serif;
color: #d9dbde;
text-align: center;
}
.discord {
display:inline-block;
}
.facebook {
display:inline-block;
}
.svg {
text-align: center;
}
a:hover {
cursor: pointer;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
background-color: #060c1a;
margin: auto;
padding: 20px;
border: 1px solid #de0b43;
width: 40%;
height: auto;
}
.close {
color: #f70000;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:focus {
color: #f70000;
text-decoration: none;
cursor: pointer;
}
.termsyAgreement {
font-family: 'Montserrat', sans-serif;
color: #ffffff;
text-align: center;
font-size: 25px;
}
.modal-body{
height: 250px;
overflow-y: auto;
color: #ffffff;
font-family: 'Montserrat', sans-serif;
line-height:24px;
font-size:13px;
word-wrap:normal;
white-space:pre-wrap;
white-space:-moz-pre-wrap;
white-space:-pre-wrap;
white-space:-o-pre-wrap;
word-break:normal;
}
.modal-body ul {
display:block;
padding:0 0 0 20px;
}
.modal-body p {
padding-left:24px;
}
.modal-body th, .modal-body td {
padding:4px 6px;
border-right:1px solid #000000;
border-bottom:1px solid #000000;
}
.modal-body span {
display:block;
padding-left:24px;
}
.modal-body li {
list-style-type:square;
}
.modal-body th {
font-weight:bold;
}
::-webkit-scrollbar {
display: none;
}
.navlink:hover {
cursor: pointer;
}
.navlink {
color: #8000ff;
font-family: 'Montserrat', sans-serif;
font-size: 25px;
float: left;
padding: 10px 0;
}
.containernav {
width: 80% !important;
margin: 0 auto !important;
}
header {
background: #1d2333;
}
header::after {
content: '';
display: table;
clear: both;
}
nav {
float: right !important;
}
nav ul {
margin: 0 !important;
padding: 0 !important;
list-style: none;
}
nav li {
display: inline-block;
margin-left: 70px;
padding-top: 23px;
position: relative;
}
nav a {
font-family: 'Montserrat', sans-serif;
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
}
nav a:hover {
color: #c20404;
}
nav a:before {
content: '';
display: block;
height: 5px;
width: 100%;
background-color: #ffffff;
position: absolute;
top: 0;
width: 0%;
transition: all ease-in-out 250ms;
}
nav a:hover::before {
width: 100%;
} | lib/css/register.css | @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100&display=swap");
/*font-family: 'Montserrat', sans-serif;*/
html {
position: relative;
min-height: 100%
}
body {
background: #060c1a;
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
-o-background-size: cover!important;
-webkit-background-size: cover!important;
-moz-background-size: cover!important;
background-size: cover!important;
background-position: center;
}
.UserN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.EmailN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.PassN {
font-family: 'Montserrat', sans-serif;
color: #dbdbdb;
font-size: 10px;
padding-left: 50px;
}
.title {
font-family: 'Montserrat', sans-serif;
color: red;
font-size: 25px;
text-align: center;
}
input[type=text], input[type=password], input[type=email] {
width: 70% !important;
height: 30px !important;
border-radius: 3px;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
border: none;
font-family: 'Montserrat', sans-serif;
background: #0b152e;
color: #ffffff;
}
input[type=submit] {
background: transparent;
}
input[type=submit]:hover {
color: #ff006a;
cursor: pointer;
}
.container {
border: 1px solid #de0b43;
padding: 10px;
width: 350px !important;
/*margin-left: auto !important;
margin-right: auto !important;
margin-top: 90px;*/
margin: 70px auto 0;
}
.user {
display: inline-block !important;
margin: auto;
}
.email {
display: inline-block !important;
margin: auto;
}
.pass {
display: inline-block !important;
margin: auto;
}
#userid {
text-align: center;
}
#emailid {
text-align: center;
}
#passid {
text-align: center;
}
#submitter {
display: inline-block !important;
margin: auto;
}
#input-button {
text-align: center;
}
.jspan {
font-size: 10px;
}
input[type=checkbox]{
-ms-transform: scale(0.5); /* IE */
-moz-transform: scale(0.5); /* FF */
-webkit-transform: scale(0.5); /* Safari and Chrome */
-o-transform: scale(0.5); /* Opera */
transform: scale(0.5);
}
.foot {
background: #1d2333;
position: absolute;
left: 0;
bottom: 0;
height: 50px;
width: 100%;
overflow: hidden;
}
.foot-paragraph {
font-family: 'Montserrat', sans-serif;
color: #d9dbde;
text-align: center;
}
.discord {
display:inline-block;
}
.facebook {
display:inline-block;
}
.svg {
text-align: center;
}
a:hover {
cursor: pointer;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 100px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
background-color: #060c1a;
margin: auto;
padding: 20px;
border: 1px solid #de0b43;
width: 40%;
height: auto;
}
.close {
color: #f70000;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:focus {
color: #f70000;
text-decoration: none;
cursor: pointer;
}
.termsyAgreement {
font-family: 'Montserrat', sans-serif;
color: #ffffff;
text-align: center;
font-size: 25px;
}
.modal-body{
height: 250px;
overflow-y: auto;
color: #ffffff;
font-family: 'Montserrat', sans-serif;
line-height:24px;
font-size:13px;
word-wrap:normal;
white-space:pre-wrap;
white-space:-moz-pre-wrap;
white-space:-pre-wrap;
white-space:-o-pre-wrap;
word-break:normal;
}
.modal-body ul {
display:block;
padding:0 0 0 20px;
}
.modal-body p {
padding-left:24px;
}
.modal-body th, .modal-body td {
padding:4px 6px;
border-right:1px solid #000000;
border-bottom:1px solid #000000;
}
.modal-body span {
display:block;
padding-left:24px;
}
.modal-body li {
list-style-type:square;
}
.modal-body th {
font-weight:bold;
}
::-webkit-scrollbar {
display: none;
}
.navlink:hover {
cursor: pointer;
}
.navlink {
color: #8000ff;
font-family: 'Montserrat', sans-serif;
font-size: 25px;
float: left;
padding: 10px 0;
}
.containernav {
width: 80% !important;
margin: 0 auto !important;
}
header {
background: #1d2333;
}
header::after {
content: '';
display: table;
clear: both;
}
nav {
float: right !important;
}
nav ul {
margin: 0 !important;
padding: 0 !important;
list-style: none;
}
nav li {
display: inline-block;
margin-left: 70px;
padding-top: 23px;
position: relative;
}
nav a {
font-family: 'Montserrat', sans-serif;
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 14px;
}
nav a:hover {
color: #c20404;
}
nav a:before {
content: '';
display: block;
height: 5px;
width: 100%;
background-color: #ffffff;
position: absolute;
top: 0;
width: 0%;
transition: all ease-in-out 250ms;
}
nav a:hover::before {
width: 100%;
} | 0.381911 | 0.10466 |
.pane-north,.pane-south {
overflow: hidden;
}
.pane-north {
border-bottom: none;
}
.pane-north .content {
text-align: center;
}
.pane-south .content {
text-align: left;
border-left: none;
border-right: none;
border-bottom: none;
}
.pane-center {
padding: 0px;
}
.ui-layout-center .header {
text-align: left;
padding-left: 10px;
}
.content {
padding: 0px;
position: relative;
}
.resizer-south-dragging,.resizer-south:hover {
background: url(../images/resizable-s.gif) repeat-x center;
}
.resizer-north-dragging,.resizer-north:hover {
background: url(../images/resizable-s.gif) repeat-x center;
}
.resizer-west-dragging,.resizer-west-open:hover {
background: url(../images/resizable-w.gif) repeat-y center;
}
.resizer-east-dragging,.resizer-east-open:hover {
background: url(../images/resizable-e.gif) repeat-y center;
}
.resizer-west-open,.resizer-east-open {
background-color: #999;
opacity: 0.1;
filter: alpha(opacity = 10);
}
.resizer-west-open:hover,.resizer-east-open:hover {
opacity: 1;
filter: alpha(opacity = 100);
}
* html .resizer-south {
background: url(../images/resizable-s.gif) repeat-x center !important;
}
* html .resizer-west-open {
background: url(../images/resizable-w.gif) repeat-y center !important;
}
* html .resizer-east-open {
background: url(../images/resizable-e.gif) repeat-y center !important;
}
* html .resizer-south,* html .resizer-west-open,* html .resizer-east-open
{
opacity: 0.1 !important;
filter: alpha(opacity = 10) !important;
}
.toggler-north-open,.toggler-south-closed {
background: url(../images/toggle-up.gif) no-repeat center bottom;
}
.toggler-north-closed,.toggler-south-open {
background: url(../images/toggle-dn.gif) no-repeat center top;
}
ul.toolbar {
color: #B2B2B2;
position: relative;
overflow: hidden;
margin: 0;
list-style: none;
text-align: left;
}
ul.toolbar li {
margin: 0;
float: left;
color: #B2B2B2;
cursor: pointer;
}
ul.toolbar li:hover {
background: #FFF;
}
ul.toolbar li span {
width: 30px;
height: 30px;
margin: 0;
vertical-align: middle;
opacity: 0.6;
filter: alpha(opacity = 60);
display: block;
display: inline-block;
}
ul.toolbar li:hover span {
opacity: 1;
filter: alpha(opacity = 100);
}
li.button-toggle-north span,li.button-open-south span {
background: url(../images/go-up-on.gif) no-repeat center;
}
li.button-close-south span {
background: url(../images/go-dn-on.gif) no-repeat center;
}
li.button-pin-up span {
background: url(../images/pin-up-on.gif) no-repeat center;
}
li.button-pin-down span {
background: url(../images/pin-dn-on.gif) no-repeat center;
}
span.button-pin,span.button-close {
position: absolute;
top: 0;
width: 20px;
height: 20px;
z-index: 2;
display: block;
cursor: pointer;
}
span.button-close-west {
left: 0;
}
span.button-close-east {
right: 0;
}
span.button-pin-west {
right: 1px;
}
span.button-pin-east {
left: 1px;
}
span.button-pin-up {
background: url(../images/pin-up-off.gif) no-repeat center;
}
span.button-pin-up:hover {
background: url(../images/pin-up-on.gif) no-repeat center;
}
span.button-pin-down {
background: url(../images/pin-dn-off.gif) no-repeat center;
}
span.button-pin-down:hover {
background: url(../images/pin-dn-on.gif) no-repeat center;
}
span.button-close-west {
background: url(../images/go-lt-off.gif) no-repeat center;
}
span.button-close-west:hover {
background: url(../images/go-lt-on.gif) no-repeat center;
}
span.button-close-east {
background: url(../images/go-rt-off.gif) no-repeat center;
}
span.button-close-east:hover {
background: url(../images/go-rt-on.gif) no-repeat center;
}
.toggler-west-closed {
background: url(../images/go-rt-off.gif) no-repeat center;
}
.toggler-west-closed:hover {
background: url(../images/go-rt-on.gif) no-repeat center;
}
.toggler-east-closed {
background: url(../images/go-lt-off.gif) no-repeat center;
}
.toggler-east-closed:hover {
background: url(../images/go-lt-on.gif) no-repeat center;
}
.content {
overflow-x:hidden!important;
}
.pane,.ui-layout-pane {
background-color: #FFF;
border: 1px solid #5e96d3;/*边框色*/
padding: 0;
overflow: auto;
}
.header {
background: #e6e6e6 url(../images/header_bg.gif) 0 50% repeat-x;
border-bottom: 1px solid #5e96d3;/*边框色*/
font-weight: bold;
text-align: left;
padding: 2px 0 4px 10px;
position: relative;
overflow: hidden;
}
.subhead,.footer {
background: #d6d6d6 url(../images/sub_header_bg.png) 0 50% repeat-x;
padding: 3px 10px;
position: relative;
overflow: hidden;
white-space: nowrap;
}
.subhead {
border-bottom: 1px solid #5e96d3;/*边框色*/
}
.footer {
border-top: 1px solid #5e96d3;/*边框色*/
}
.resizer-west-closed,.resizer-east-closed {
background: #D1E6FC;/*边栏背景色*/
border-top: 1px solid #777;
border-bottom: 1px solid #777;
}
.resizer-west-closed:hover,.resizer-east-closed:hover {
background: #D1E6FC;/*边栏鼠标移入背景色*/
} | e-ticket-manage/src/main/webapp/resource/libs/thirdparty/layout/css/style.css | .pane-north,.pane-south {
overflow: hidden;
}
.pane-north {
border-bottom: none;
}
.pane-north .content {
text-align: center;
}
.pane-south .content {
text-align: left;
border-left: none;
border-right: none;
border-bottom: none;
}
.pane-center {
padding: 0px;
}
.ui-layout-center .header {
text-align: left;
padding-left: 10px;
}
.content {
padding: 0px;
position: relative;
}
.resizer-south-dragging,.resizer-south:hover {
background: url(../images/resizable-s.gif) repeat-x center;
}
.resizer-north-dragging,.resizer-north:hover {
background: url(../images/resizable-s.gif) repeat-x center;
}
.resizer-west-dragging,.resizer-west-open:hover {
background: url(../images/resizable-w.gif) repeat-y center;
}
.resizer-east-dragging,.resizer-east-open:hover {
background: url(../images/resizable-e.gif) repeat-y center;
}
.resizer-west-open,.resizer-east-open {
background-color: #999;
opacity: 0.1;
filter: alpha(opacity = 10);
}
.resizer-west-open:hover,.resizer-east-open:hover {
opacity: 1;
filter: alpha(opacity = 100);
}
* html .resizer-south {
background: url(../images/resizable-s.gif) repeat-x center !important;
}
* html .resizer-west-open {
background: url(../images/resizable-w.gif) repeat-y center !important;
}
* html .resizer-east-open {
background: url(../images/resizable-e.gif) repeat-y center !important;
}
* html .resizer-south,* html .resizer-west-open,* html .resizer-east-open
{
opacity: 0.1 !important;
filter: alpha(opacity = 10) !important;
}
.toggler-north-open,.toggler-south-closed {
background: url(../images/toggle-up.gif) no-repeat center bottom;
}
.toggler-north-closed,.toggler-south-open {
background: url(../images/toggle-dn.gif) no-repeat center top;
}
ul.toolbar {
color: #B2B2B2;
position: relative;
overflow: hidden;
margin: 0;
list-style: none;
text-align: left;
}
ul.toolbar li {
margin: 0;
float: left;
color: #B2B2B2;
cursor: pointer;
}
ul.toolbar li:hover {
background: #FFF;
}
ul.toolbar li span {
width: 30px;
height: 30px;
margin: 0;
vertical-align: middle;
opacity: 0.6;
filter: alpha(opacity = 60);
display: block;
display: inline-block;
}
ul.toolbar li:hover span {
opacity: 1;
filter: alpha(opacity = 100);
}
li.button-toggle-north span,li.button-open-south span {
background: url(../images/go-up-on.gif) no-repeat center;
}
li.button-close-south span {
background: url(../images/go-dn-on.gif) no-repeat center;
}
li.button-pin-up span {
background: url(../images/pin-up-on.gif) no-repeat center;
}
li.button-pin-down span {
background: url(../images/pin-dn-on.gif) no-repeat center;
}
span.button-pin,span.button-close {
position: absolute;
top: 0;
width: 20px;
height: 20px;
z-index: 2;
display: block;
cursor: pointer;
}
span.button-close-west {
left: 0;
}
span.button-close-east {
right: 0;
}
span.button-pin-west {
right: 1px;
}
span.button-pin-east {
left: 1px;
}
span.button-pin-up {
background: url(../images/pin-up-off.gif) no-repeat center;
}
span.button-pin-up:hover {
background: url(../images/pin-up-on.gif) no-repeat center;
}
span.button-pin-down {
background: url(../images/pin-dn-off.gif) no-repeat center;
}
span.button-pin-down:hover {
background: url(../images/pin-dn-on.gif) no-repeat center;
}
span.button-close-west {
background: url(../images/go-lt-off.gif) no-repeat center;
}
span.button-close-west:hover {
background: url(../images/go-lt-on.gif) no-repeat center;
}
span.button-close-east {
background: url(../images/go-rt-off.gif) no-repeat center;
}
span.button-close-east:hover {
background: url(../images/go-rt-on.gif) no-repeat center;
}
.toggler-west-closed {
background: url(../images/go-rt-off.gif) no-repeat center;
}
.toggler-west-closed:hover {
background: url(../images/go-rt-on.gif) no-repeat center;
}
.toggler-east-closed {
background: url(../images/go-lt-off.gif) no-repeat center;
}
.toggler-east-closed:hover {
background: url(../images/go-lt-on.gif) no-repeat center;
}
.content {
overflow-x:hidden!important;
}
.pane,.ui-layout-pane {
background-color: #FFF;
border: 1px solid #5e96d3;/*边框色*/
padding: 0;
overflow: auto;
}
.header {
background: #e6e6e6 url(../images/header_bg.gif) 0 50% repeat-x;
border-bottom: 1px solid #5e96d3;/*边框色*/
font-weight: bold;
text-align: left;
padding: 2px 0 4px 10px;
position: relative;
overflow: hidden;
}
.subhead,.footer {
background: #d6d6d6 url(../images/sub_header_bg.png) 0 50% repeat-x;
padding: 3px 10px;
position: relative;
overflow: hidden;
white-space: nowrap;
}
.subhead {
border-bottom: 1px solid #5e96d3;/*边框色*/
}
.footer {
border-top: 1px solid #5e96d3;/*边框色*/
}
.resizer-west-closed,.resizer-east-closed {
background: #D1E6FC;/*边栏背景色*/
border-top: 1px solid #777;
border-bottom: 1px solid #777;
}
.resizer-west-closed:hover,.resizer-east-closed:hover {
background: #D1E6FC;/*边栏鼠标移入背景色*/
} | 0.324663 | 0.185338 |
.am-topbar {
background: #3b3b3b none repeat scroll 0 0;border-bottom: 1px solid #3b3b3b;
}
.am-topbar, .am-topbar a {
color: white;
line-height: 50px;
}
.am-container>.am-topbar-right>.am-nav>.am-active{background-color:rgb(221,0,9);color: whitesmoke;border-radius: 5px;}
#top_navBar>.navs>li>.active{background-color:rgb(221,0,9);color: whitesmoke;border-radius: 5px;border-bottom: 2px solid rgb(221,0,9);}
.am-container>.am-topbar-right>.am-nav>.am-active>a{color: white;}
.my-sidebar>.am-nav>li>.am-active{font-weight: bolder;}
/*three active */
.am-container>.am-topbar-right>.am-topbar-nav > li > a::after {
border-color: -moz-use-text-color transparent transparent;
border-style: none;
border-width: 0 7px 7px;
bottom: -1px;
content: "";
display: inline-block;
height: 0;
left: 50%;
margin-left: -7px;
opacity: 0;
position: absolute;
transform: rotate(360deg);
transition: opacity 0.1s ease 0s;
vertical-align: middle;
width: 0;
}
.am-control-paging{margin-bottom: 28px;display:none;}
.am-with-topbar-fixed-top>.am-topbar-fixed-top>.am-container>a{font-family:"??";}
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>a{color: black;}*!/*/
/*/!*.am-nav>li:hover{background-color: rgb(221,0,9);color: white;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div{width: 70px;border-radius: 5px;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div>a{color: black;text-align: center;display: block;border-radius: 5px;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div>a:hover{background-color: rgb(221,0,9);color: white;}*!/*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li{border-radius: 5px;}*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li>a{color: black;text-align: center;display: block;border-radius: 5px;}*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li>a:hover{background-color: rgb(221,0,9);color: white;}*/
#top_navBar>.navs>li>.transparent{color: transparent;}
#top_navBar>.navs>li>.transparent:hover{color: transparent;background-color: transparent;border: 1px solid transparent;}
#top_navBar>.navs>li>img{display: block;padding-top: 10px;padding-bottom: 10px;}
#top_navBar>.navs>li>a{color: black;text-align: center;display: block;font-weight: bolder;
font-family:"????";font-size: 15px;padding-top: 10px;padding-bottom: 10px;line-height: 20px;}
#top_navBar>.navs>li>a:hover{background-color: rgb(221,0,9);color: white;border-radius: 5px;
border-right: 1px solid white;border-left: 1px solid white;border-bottom: 2px solid rgb(221,0,9);font-family:"????";}
.am-topbar-en{font-family:"Tahoma";font-size: 13px; }
/*top nav bar*/
.sec_nav{background: #dedede none repeat scroll 0 0;margin-top: -20px;padding-top:10px;padding-bottom: 10px;}
/*/!*.am-g:nth-child(1){margin-left: 10px;}*!/*/
/*.am-g>.am-u-sm-2{text-align: center;padding-left: 0px;padding-right: 0px;width: 132px;margin-right: 0px;}*/
/*.am-g>.am-u-sm-2>a{width:112px;height:50px;padding-top: 5px;margin-top: 10px;border-radius: 5px;}*/
/*.am-g>.am-u-sm-2>a>span{line-height: 20px;}*/
/*.am-container>.am-g>.am-u-sm-2>.am-badge{background-color: rgb(221,0,9);width: 112px;}*/
/*.am-container>.am-g>.am-u-sm-2>.am-badge:hover{opacity: 0.6;background-color: grey;}*/
/*.am-u-sm-2 {*/
/*width: 15%;*/
/*}*/
.sec_nav>.am-container>.am-thumbnails>li>.am-badge {
background-color:#d90e22;
border-radius: 5px;
color: #fff;
display: block;
font-size: 1.2rem;
font-weight: 700;
height: 45px; line-height: 16px;
margin-top: 10px;
min-width: 61px;
padding: 0.25em 0.625em;
vertical-align: baseline;
white-space: nowrap;
}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge:hover{background-color: grey;}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge>img{margin-top: 8px;margin-right: 8px;}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge>span{
margin-top: 8px;display: inline-block;vertical-align: middle;font-family:"??";font-size: 16px;}
.am-topbar-en{font-family:"Tahoma";font-size: 13px; }
/*secondary nav in index*/
.am-news{margin-top: 10px;}
.newsHead{font-family:"??";font-weight: bolder;color: black;border-left: 5px solid rgb(143,7,27);padding-left: 7px;}
.newsHead:hover{cursor: pointer;}
.more{font-family:"??";color:#ca4666;float: right;font-size: 12px;color: black;}
.more:hover{cursor: pointer;}
.newsContent{float: right;width: 360px;height:78px;margin-top: 5px;}
.newsContentT{font-family:"??";margin-bottom: -13px;font-weight: bolder;}
.newsContentT>a{color: black;font-family:"??";font-size: 16px;}
.newsContentT>a:hover{cursor: pointer;color:rgb(221,0,9);}
.date{font-size: 12px;color: grey;font-family:"??";display: block;margin-top: 11px;}
.newsContentR{color: grey;font-size: 13px;font-family:"??";margin-top: 0px;line-height: 18px;margin-bottom: 0px;overflow: hidden;height: 36px;}
.newsContentR>a{color: grey;}
.newsContentB>a>img{padding-top: 10px;width: 67px;height: 78px;}
.newsContentB{height:100px;border-bottom:1px dotted grey;padding-top: 5px;}
/*news column*/
.exCon{border-bottom: 1px dotted grey;height: 87px;padding-top: 6px;}
.exCon1{border-bottom: 0px dotted grey;margin-top: 6px;}
.exB>img{width: 100%;}
.extilBox_l{font-family:"??";color:#ca4666;font-weight: bolder;}
.extilBox_l:hover{color:rgb(221,0,9);cursor: pointer; }
.extilBox_r{font-family:"??";font-weight: bolder;font-size: 16px;color:black;}
.extilBox_r:hover{cursor: pointer;color: black;}
.exContP{color: grey;font-family:"??";font-size: 12px;line-height: 23px;margin-top: 0px;margin-bottom: 0px;
position: relative;display: inline-block;width: 380px;overflow: hidden;height:40px;}
.date_2{font-size: 12px;color: grey;font-family:"??";padding-left: 2px;float: right;display: inline-block;margin-top: -20px;}
/*example column*/
.am-individual{margin-top: 10px;}
.am-slides>.imgList>img{
width:100px;;}
/*.am-individual>.am-viewport{border:1px solid transparent;}*/
/*team intro*/
/*.videoshow{margin-top: 10px;}*/
/*.mainPagevideo_1:hover{cursor: pointer;opacity: 0.6;}*/
/*.videoshow>img{margin: 0 auto;text-align: center;display: block;}*/
/*.showPagevideo_1{display: none;}*/
.firm_intro{margin-top: 10px;}
.firm_introT{line-height: 18px;height: 18px;color:#ca4666;font-weight: bolder;font-family:"??";}
.firm_introCon{font-size: 14px;color: grey;margin-top: 8px;margin-bottom: 4px;line-height: 25px;
text-indent: 2em;font-family:"??";}
/*firm culture*/
.am-footer {
background-color: black;
font-size: 1.6rem;
padding: 1em 0;
text-align: center;
color: white;
margin-top: 20px;
font-family:"??";
}
/*footer*/
.am-g-fixed{margin-top: 20px;}
.am-g>.my-sidebar>.am-nav{margin-top: 10px;}
.am-g>.my-sidebar>.am-nav>.am-nav-header{border-left: 5px solid rgb(143, 7, 27);line-height: 12px;}
.am-g .my-sidebar .am-nav>li a{color: black;}
/*secondary page sidebar*/
.am-breadcrumb{padding:0px 0.5em 0.7em 0.5em;float: right;margin-bottom: 0px;}
.am-breadcrumb>li>a{color: black;}
/*breadcrumb*/
.am-u-sm-centered{margin-top: 30px;}
/*secondary page content box*/
.am-thumbnail{margin-bottom: 0px;border:none;}
.am-thumbnails>li>div{margin:0 auto;text-align: center;}
.am-thumbnails li div img{display: block;text-align: center;margin:0 auto;}
.am-thumbnails li div a span{display: block;margin: 0 auto;text-align: center;font-family:"??"; }
.am-thumbnails li div a{color: black;font-family:"??";}
.am-u-sm-centered .am-container .am-img-two li div a img{width: 230px;height: 300px;}
/*lawyer intro box*/
.am-g .am-u-sm-centered .am-u-sm-8{padding-left: 0px;}
.lawsuitT{font-size:20px;font-family:"??";font-weight: bolder;margin-bottom: 0px;}
.lawsuitT>a{color: black;font-family:"??";}
.lawsuitP{margin-top:0px;font-family:"??";font-size: 15px;}
.lawsuitP>a{color: black;font-family:"??";}
.lawsuitMore{display: block;float: right;background-color: rgb(221,0,9);border-radius: 4px;
font-size: 12px;line-height: 26px;text-align: center;width: 74px;color: white;font-family:"??";}
.lawsuitMore:hover{cursor: pointer;color: white;}
.lawsuitBox{margin-bottom: 10px;height: 180px;border-bottom: 1px dotted grey;}
/*letigation page*/
.actBox{margin-bottom: 10px;height: 180px;border-bottom: 1px dotted grey;}
/*.am-slider-carousel li {*/
/*margin-left: 19px;*/
/*margin-right: 19px;*/
/*}*/
.imgList_Name{display: block;text-align: center;margin:0 auto;color: black;font-family:"??";}
.am-slider-default {
background-color: #fff;
border-radius: 2px;
box-shadow: 0 0 0px rgba(0, 0, 0, 0);
margin: 0 0 20px;
}
.am-slider-carousel>.am-slides>.imgList>a>img{width: 200px;}
/*carousel in the homepage*/
#contact_p>p:nth-child(2){font-weight: bolder;font-family:"??";font-size: 20px;}
#contact_p>p:nth-child(1){font-weight: bolder;font-family:"??";font-size: 20px;}
/*contact page*/
#QA{display: inline-block;}
#QA>p{font-size: 16px;font-family:"??";width: 350px;height: 40px;line-height: 40px;margin-bottom: 40px;}
#QA>p>input{margin-left: 10px;width: 300px;height: 40px;line-height: 40px;}
#QA>p>textarea{margin-left: 10px;width: 300px;}
#QA>p:nth-child(5){margin-top:95px;}
#QA>p:nth-child(5)>input{width: 100px;}
#QA>img{float: right;display: inline-block;}
.qaImg{display: inline-block;float: right;}
.qaButton{margin-top:0px;float: right;background-color: rgb(221,0,9);height: 40px;line-height: 40px;
width: 100px;color: white;font-size: 20px;font-family:"??";border-radius: 5px;font-weight: bolder;
border-bottom:1px solid rgb(154, 0, 7);border-right:1px solid rgb(154, 0, 7);
border-left:1px solid rgb(237, 0, 11);border-top:1px solid rgb(237, 0, 11);}
.qaButton:hover{opacity: 0.6;}
.am-table > tbody > tr > td, .am-table > tbody > tr > th,
.am-table > tfoot > tr > td, .am-table > tfoot > tr > th,
.am-table > thead > tr > td, .am-table > thead > tr > th{border-top: 0px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container>.am-table-compact>tbody tr .am-text-truncate {display: inline-block;
text-overflow: ellipsis;white-space: nowrap;overflow: hidden;width: 380px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container{overflow: auto;height:300px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container>.am-table-compact{border:0px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-u-sm-centered>.am-article>p>input{font-size:13px;font-family:"??";height:35px;line-height: 35px;color: grey;padding-left: 10px; }
/*Q&A page*/
#topImg{width: 100%;}
/*width 100% for the top image in the secondary pages*/
.recruitImg{width: 300px;}
.sec_li{padding-left: 0px;}
.sec_li>p{margin-top: 0px;font-size: 13px;font-family:"??";line-height: 20px;}
#hr_mid{padding-left: 0px;padding-right: 0px;}
#hr_table>.am-table>thead>tr>th{text-align: center;color: white;}
#hr_table>.am-table>thead{background-color: rgb(221,0,9);}
#hr_table>.am-table>tbody>tr{border-bottom: 1px dotted grey;}
#hr_table>.am-table>tbody>tr>td{text-align: center;}
#hr_table>.am-table>tbody>tr>td>.chkT{color: black;}
.chkDet{width: 80px;height:30px;background-color: rgb(211,0,9);border-radius: 10px;display: block;margin:0 auto;color: white;line-height: 30px;}
.chkDet:hover{color: white;}
/*hire and recruit page*/
#hr_mid{background-color: rgb(250,249,245);}
#hr_mid>.am-thumbnails>.sec_li>.hr_topImg{width: 150px;margin-left: 0px;margin-bottom: 5px;}
#hr_mid>.am-thumbnails:nth-child(1)>li>img{margin-top: 10px;margin-left: 10px;margin-bottom: 10px;width: 300px;}
.personIntro_li{margin-top: 10px;}
.personIntro_li>div>p{text-align: left;}
.personIntro_li_U{border-bottom: 1px dotted grey;}
.personIntro_li_U>p{margin-top: 6px;margin-bottom: 6px;line-height: 25px;}
.personIntro_name{font-family:"??";font-size: 24px;font-weight: bolder;}
.personIntro_title{font-family:"??";font-size: 20px;font-weight: bolder;padding-left: 10px;}
.goodAt{font-family:"??";font-size: 20px;font-weight: bolder;}
.goodAt_det{font-family:"??";font-size: 18px;}
.personIntro_memo{font-family:"??";font-size: 20px;font-weight: bolder;}
.memo_con{font-family:"??";font-size: 18px;}
.am-thumbnails>li>.personIntro_li_B{margin-top: 10px;}
.am-thumbnails>li>.personIntro_li_B>p{font-family:"??";font-size: 18px;margin-top: 6px;
margin-bottom: 6px;line-height: 25px;}
/*personal intro page eg:zhou zhiqiang....*/
.actBoxP>p{margin-top: 2px;margin-bottom: 3px;font-family:"??";}
.actBoxMore{width: 74px;background-color: rgb(211,0,9);display: block;text-align: center;color: white;
border-radius:4px;float: right;font-size: 12px;line-height:26px;}
.actBoxMore:hover{text-decoration: none;color: white;cursor: pointer;opacity: 0.6;}
.line-clamp{height: 74px;overflow: hidden;}
/*third level page*/
.am-article p{font-family:"??";}
/*xu?*/
.sec_nav>.am-container>.title_one{margin-left: 10px;} | Themes/zhenya_PC/assets/css/app.css | .am-topbar {
background: #3b3b3b none repeat scroll 0 0;border-bottom: 1px solid #3b3b3b;
}
.am-topbar, .am-topbar a {
color: white;
line-height: 50px;
}
.am-container>.am-topbar-right>.am-nav>.am-active{background-color:rgb(221,0,9);color: whitesmoke;border-radius: 5px;}
#top_navBar>.navs>li>.active{background-color:rgb(221,0,9);color: whitesmoke;border-radius: 5px;border-bottom: 2px solid rgb(221,0,9);}
.am-container>.am-topbar-right>.am-nav>.am-active>a{color: white;}
.my-sidebar>.am-nav>li>.am-active{font-weight: bolder;}
/*three active */
.am-container>.am-topbar-right>.am-topbar-nav > li > a::after {
border-color: -moz-use-text-color transparent transparent;
border-style: none;
border-width: 0 7px 7px;
bottom: -1px;
content: "";
display: inline-block;
height: 0;
left: 50%;
margin-left: -7px;
opacity: 0;
position: absolute;
transform: rotate(360deg);
transition: opacity 0.1s ease 0s;
vertical-align: middle;
width: 0;
}
.am-control-paging{margin-bottom: 28px;display:none;}
.am-with-topbar-fixed-top>.am-topbar-fixed-top>.am-container>a{font-family:"??";}
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>a{color: black;}*!/*/
/*/!*.am-nav>li:hover{background-color: rgb(221,0,9);color: white;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div{width: 70px;border-radius: 5px;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div>a{color: black;text-align: center;display: block;border-radius: 5px;}*!/*/
/*/!*.am-container>.am-topbar-right>.am-topbar-nav>li>div>a:hover{background-color: rgb(221,0,9);color: white;}*!/*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li{border-radius: 5px;}*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li>a{color: black;text-align: center;display: block;border-radius: 5px;}*/
/*.am-container>.am-topbar-right>.am-topbar-nav>.am-g>div>li>a:hover{background-color: rgb(221,0,9);color: white;}*/
#top_navBar>.navs>li>.transparent{color: transparent;}
#top_navBar>.navs>li>.transparent:hover{color: transparent;background-color: transparent;border: 1px solid transparent;}
#top_navBar>.navs>li>img{display: block;padding-top: 10px;padding-bottom: 10px;}
#top_navBar>.navs>li>a{color: black;text-align: center;display: block;font-weight: bolder;
font-family:"????";font-size: 15px;padding-top: 10px;padding-bottom: 10px;line-height: 20px;}
#top_navBar>.navs>li>a:hover{background-color: rgb(221,0,9);color: white;border-radius: 5px;
border-right: 1px solid white;border-left: 1px solid white;border-bottom: 2px solid rgb(221,0,9);font-family:"????";}
.am-topbar-en{font-family:"Tahoma";font-size: 13px; }
/*top nav bar*/
.sec_nav{background: #dedede none repeat scroll 0 0;margin-top: -20px;padding-top:10px;padding-bottom: 10px;}
/*/!*.am-g:nth-child(1){margin-left: 10px;}*!/*/
/*.am-g>.am-u-sm-2{text-align: center;padding-left: 0px;padding-right: 0px;width: 132px;margin-right: 0px;}*/
/*.am-g>.am-u-sm-2>a{width:112px;height:50px;padding-top: 5px;margin-top: 10px;border-radius: 5px;}*/
/*.am-g>.am-u-sm-2>a>span{line-height: 20px;}*/
/*.am-container>.am-g>.am-u-sm-2>.am-badge{background-color: rgb(221,0,9);width: 112px;}*/
/*.am-container>.am-g>.am-u-sm-2>.am-badge:hover{opacity: 0.6;background-color: grey;}*/
/*.am-u-sm-2 {*/
/*width: 15%;*/
/*}*/
.sec_nav>.am-container>.am-thumbnails>li>.am-badge {
background-color:#d90e22;
border-radius: 5px;
color: #fff;
display: block;
font-size: 1.2rem;
font-weight: 700;
height: 45px; line-height: 16px;
margin-top: 10px;
min-width: 61px;
padding: 0.25em 0.625em;
vertical-align: baseline;
white-space: nowrap;
}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge:hover{background-color: grey;}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge>img{margin-top: 8px;margin-right: 8px;}
.sec_nav>.am-container>.am-thumbnails>li>.am-badge>span{
margin-top: 8px;display: inline-block;vertical-align: middle;font-family:"??";font-size: 16px;}
.am-topbar-en{font-family:"Tahoma";font-size: 13px; }
/*secondary nav in index*/
.am-news{margin-top: 10px;}
.newsHead{font-family:"??";font-weight: bolder;color: black;border-left: 5px solid rgb(143,7,27);padding-left: 7px;}
.newsHead:hover{cursor: pointer;}
.more{font-family:"??";color:#ca4666;float: right;font-size: 12px;color: black;}
.more:hover{cursor: pointer;}
.newsContent{float: right;width: 360px;height:78px;margin-top: 5px;}
.newsContentT{font-family:"??";margin-bottom: -13px;font-weight: bolder;}
.newsContentT>a{color: black;font-family:"??";font-size: 16px;}
.newsContentT>a:hover{cursor: pointer;color:rgb(221,0,9);}
.date{font-size: 12px;color: grey;font-family:"??";display: block;margin-top: 11px;}
.newsContentR{color: grey;font-size: 13px;font-family:"??";margin-top: 0px;line-height: 18px;margin-bottom: 0px;overflow: hidden;height: 36px;}
.newsContentR>a{color: grey;}
.newsContentB>a>img{padding-top: 10px;width: 67px;height: 78px;}
.newsContentB{height:100px;border-bottom:1px dotted grey;padding-top: 5px;}
/*news column*/
.exCon{border-bottom: 1px dotted grey;height: 87px;padding-top: 6px;}
.exCon1{border-bottom: 0px dotted grey;margin-top: 6px;}
.exB>img{width: 100%;}
.extilBox_l{font-family:"??";color:#ca4666;font-weight: bolder;}
.extilBox_l:hover{color:rgb(221,0,9);cursor: pointer; }
.extilBox_r{font-family:"??";font-weight: bolder;font-size: 16px;color:black;}
.extilBox_r:hover{cursor: pointer;color: black;}
.exContP{color: grey;font-family:"??";font-size: 12px;line-height: 23px;margin-top: 0px;margin-bottom: 0px;
position: relative;display: inline-block;width: 380px;overflow: hidden;height:40px;}
.date_2{font-size: 12px;color: grey;font-family:"??";padding-left: 2px;float: right;display: inline-block;margin-top: -20px;}
/*example column*/
.am-individual{margin-top: 10px;}
.am-slides>.imgList>img{
width:100px;;}
/*.am-individual>.am-viewport{border:1px solid transparent;}*/
/*team intro*/
/*.videoshow{margin-top: 10px;}*/
/*.mainPagevideo_1:hover{cursor: pointer;opacity: 0.6;}*/
/*.videoshow>img{margin: 0 auto;text-align: center;display: block;}*/
/*.showPagevideo_1{display: none;}*/
.firm_intro{margin-top: 10px;}
.firm_introT{line-height: 18px;height: 18px;color:#ca4666;font-weight: bolder;font-family:"??";}
.firm_introCon{font-size: 14px;color: grey;margin-top: 8px;margin-bottom: 4px;line-height: 25px;
text-indent: 2em;font-family:"??";}
/*firm culture*/
.am-footer {
background-color: black;
font-size: 1.6rem;
padding: 1em 0;
text-align: center;
color: white;
margin-top: 20px;
font-family:"??";
}
/*footer*/
.am-g-fixed{margin-top: 20px;}
.am-g>.my-sidebar>.am-nav{margin-top: 10px;}
.am-g>.my-sidebar>.am-nav>.am-nav-header{border-left: 5px solid rgb(143, 7, 27);line-height: 12px;}
.am-g .my-sidebar .am-nav>li a{color: black;}
/*secondary page sidebar*/
.am-breadcrumb{padding:0px 0.5em 0.7em 0.5em;float: right;margin-bottom: 0px;}
.am-breadcrumb>li>a{color: black;}
/*breadcrumb*/
.am-u-sm-centered{margin-top: 30px;}
/*secondary page content box*/
.am-thumbnail{margin-bottom: 0px;border:none;}
.am-thumbnails>li>div{margin:0 auto;text-align: center;}
.am-thumbnails li div img{display: block;text-align: center;margin:0 auto;}
.am-thumbnails li div a span{display: block;margin: 0 auto;text-align: center;font-family:"??"; }
.am-thumbnails li div a{color: black;font-family:"??";}
.am-u-sm-centered .am-container .am-img-two li div a img{width: 230px;height: 300px;}
/*lawyer intro box*/
.am-g .am-u-sm-centered .am-u-sm-8{padding-left: 0px;}
.lawsuitT{font-size:20px;font-family:"??";font-weight: bolder;margin-bottom: 0px;}
.lawsuitT>a{color: black;font-family:"??";}
.lawsuitP{margin-top:0px;font-family:"??";font-size: 15px;}
.lawsuitP>a{color: black;font-family:"??";}
.lawsuitMore{display: block;float: right;background-color: rgb(221,0,9);border-radius: 4px;
font-size: 12px;line-height: 26px;text-align: center;width: 74px;color: white;font-family:"??";}
.lawsuitMore:hover{cursor: pointer;color: white;}
.lawsuitBox{margin-bottom: 10px;height: 180px;border-bottom: 1px dotted grey;}
/*letigation page*/
.actBox{margin-bottom: 10px;height: 180px;border-bottom: 1px dotted grey;}
/*.am-slider-carousel li {*/
/*margin-left: 19px;*/
/*margin-right: 19px;*/
/*}*/
.imgList_Name{display: block;text-align: center;margin:0 auto;color: black;font-family:"??";}
.am-slider-default {
background-color: #fff;
border-radius: 2px;
box-shadow: 0 0 0px rgba(0, 0, 0, 0);
margin: 0 0 20px;
}
.am-slider-carousel>.am-slides>.imgList>a>img{width: 200px;}
/*carousel in the homepage*/
#contact_p>p:nth-child(2){font-weight: bolder;font-family:"??";font-size: 20px;}
#contact_p>p:nth-child(1){font-weight: bolder;font-family:"??";font-size: 20px;}
/*contact page*/
#QA{display: inline-block;}
#QA>p{font-size: 16px;font-family:"??";width: 350px;height: 40px;line-height: 40px;margin-bottom: 40px;}
#QA>p>input{margin-left: 10px;width: 300px;height: 40px;line-height: 40px;}
#QA>p>textarea{margin-left: 10px;width: 300px;}
#QA>p:nth-child(5){margin-top:95px;}
#QA>p:nth-child(5)>input{width: 100px;}
#QA>img{float: right;display: inline-block;}
.qaImg{display: inline-block;float: right;}
.qaButton{margin-top:0px;float: right;background-color: rgb(221,0,9);height: 40px;line-height: 40px;
width: 100px;color: white;font-size: 20px;font-family:"??";border-radius: 5px;font-weight: bolder;
border-bottom:1px solid rgb(154, 0, 7);border-right:1px solid rgb(154, 0, 7);
border-left:1px solid rgb(237, 0, 11);border-top:1px solid rgb(237, 0, 11);}
.qaButton:hover{opacity: 0.6;}
.am-table > tbody > tr > td, .am-table > tbody > tr > th,
.am-table > tfoot > tr > td, .am-table > tfoot > tr > th,
.am-table > thead > tr > td, .am-table > thead > tr > th{border-top: 0px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container>.am-table-compact>tbody tr .am-text-truncate {display: inline-block;
text-overflow: ellipsis;white-space: nowrap;overflow: hidden;width: 380px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container{overflow: auto;height:300px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-container>.am-table-compact{border:0px;}
#autoDiv>.am-u-md-push-3>.am-g>.am-u-sm-centered>.am-article>p>input{font-size:13px;font-family:"??";height:35px;line-height: 35px;color: grey;padding-left: 10px; }
/*Q&A page*/
#topImg{width: 100%;}
/*width 100% for the top image in the secondary pages*/
.recruitImg{width: 300px;}
.sec_li{padding-left: 0px;}
.sec_li>p{margin-top: 0px;font-size: 13px;font-family:"??";line-height: 20px;}
#hr_mid{padding-left: 0px;padding-right: 0px;}
#hr_table>.am-table>thead>tr>th{text-align: center;color: white;}
#hr_table>.am-table>thead{background-color: rgb(221,0,9);}
#hr_table>.am-table>tbody>tr{border-bottom: 1px dotted grey;}
#hr_table>.am-table>tbody>tr>td{text-align: center;}
#hr_table>.am-table>tbody>tr>td>.chkT{color: black;}
.chkDet{width: 80px;height:30px;background-color: rgb(211,0,9);border-radius: 10px;display: block;margin:0 auto;color: white;line-height: 30px;}
.chkDet:hover{color: white;}
/*hire and recruit page*/
#hr_mid{background-color: rgb(250,249,245);}
#hr_mid>.am-thumbnails>.sec_li>.hr_topImg{width: 150px;margin-left: 0px;margin-bottom: 5px;}
#hr_mid>.am-thumbnails:nth-child(1)>li>img{margin-top: 10px;margin-left: 10px;margin-bottom: 10px;width: 300px;}
.personIntro_li{margin-top: 10px;}
.personIntro_li>div>p{text-align: left;}
.personIntro_li_U{border-bottom: 1px dotted grey;}
.personIntro_li_U>p{margin-top: 6px;margin-bottom: 6px;line-height: 25px;}
.personIntro_name{font-family:"??";font-size: 24px;font-weight: bolder;}
.personIntro_title{font-family:"??";font-size: 20px;font-weight: bolder;padding-left: 10px;}
.goodAt{font-family:"??";font-size: 20px;font-weight: bolder;}
.goodAt_det{font-family:"??";font-size: 18px;}
.personIntro_memo{font-family:"??";font-size: 20px;font-weight: bolder;}
.memo_con{font-family:"??";font-size: 18px;}
.am-thumbnails>li>.personIntro_li_B{margin-top: 10px;}
.am-thumbnails>li>.personIntro_li_B>p{font-family:"??";font-size: 18px;margin-top: 6px;
margin-bottom: 6px;line-height: 25px;}
/*personal intro page eg:zhou zhiqiang....*/
.actBoxP>p{margin-top: 2px;margin-bottom: 3px;font-family:"??";}
.actBoxMore{width: 74px;background-color: rgb(211,0,9);display: block;text-align: center;color: white;
border-radius:4px;float: right;font-size: 12px;line-height:26px;}
.actBoxMore:hover{text-decoration: none;color: white;cursor: pointer;opacity: 0.6;}
.line-clamp{height: 74px;overflow: hidden;}
/*third level page*/
.am-article p{font-family:"??";}
/*xu?*/
.sec_nav>.am-container>.title_one{margin-left: 10px;} | 0.257112 | 0.114072 |
*{margin:0;padding:0;}
*{box-sizing: border-box;}
*::after{box-sizing: border-box;}
*::before{box-sizing: border-box;}
a{color: inherit; text-decoration: none;}
ul,ol{list-style: none;}
h1,h2,h3,h4,h5,h6{ font-weight: normal; }
body{font:14px/1.5 Helvetica,sans-serif;}
.icon {
width: 1em; height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
/* red: #D43C33 */
/* grey: #888 */
body{
font-size: 15px;
background: white;
}
.sectionTitle{
border-left: 2px solid #D43C33;
font-size: 17px;
line-height: 1;
padding-left: 8px;
margin: 20px 0 8px;
}
.sticky{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
background: white;
}
section.topbar{
display: flex;
justify-content: space-between;
align-items: center;
background: #D43C33;
padding: 17px 10px;
}
section.topbar .logo>svg{
width: 142px;height: 25px;
vertical-align: top;
}
section.topbar > a{
color: white;
display: inline-block;
padding: 5px 11px;
line-height: 20px;
position: relative;
}
section.topbar > a::after{
content:'';
position: absolute;
top:0;
left: 0;
width: 200%;
height: 200%;
border: 1px solid white;
border-radius: 50px;
transform: scale(0.5);
transform-origin: 0 0;
}
/* tabs-nav */
.tabs-nav{
display: flex;
border-bottom: 1px solid #CCCCCC;
}
.tabs-nav>li{
width: 33.333333%;
text-align: center;
line-height: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.tabs-nav>li>.text{
padding: 10px 5px;
position: relative;
top: 1px;
}
.tabs-nav >li.active{
color: #D43C33;
}
.tabs-nav >li.active>.text{
}
.tabs-nav >li.active>.text::after{
content: '';
position: absolute;
height: 2px;
background: #D43C33;
bottom: 1px;
left: 0;
width: 100%;
}
.tab-content{
margin-top: 105px;
}
.tab-content > li{
display: none;
}
.tab-content > li.active{
display: block;
}
.noCollapse::before{
content:'';
display: table;
}
.noCollapse::after{
content:'';
display: table;
}
section.playlists{
}
section.playlists > ol.songs{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 13px;
}
section.playlists > ol.songs > li{
width: 32.8%;
margin: 8px 0;
}
section.playlists > ol.songs > li p{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
line-height: 18px;
height: 36px;
padding: 0 6px;
}
section.playlists > ol.songs > li img{
width: 100%;
}
section.playlists > ol.songs > li > .cover {
position: relative;
}
section.playlists > ol.songs > li > .cover > .number{
position: absolute;
top: 1px;
right: 4px;
color: white;
}
section.songs{}
section.songs > .list {
margin-top: 18px;
}
section.songs > .list > li > h3{
font-size: 17px;
}
section.songs > .list > li > p{
font-size: 12px;
color: #888;
}
section.songs > .list > li{
position: relative;
margin-left: 10px;
padding-bottom: 6px;
padding-top: 5px;
border-bottom: 1px solid #E2E2E3;
}
section.songs > .list .playButton{
position: absolute;
right:8px;
top: 50%;
transform: translateY(-50%);
}
section.songs > .list .icon-play{
width: 22px;
height: 22px;
vertical-align: middle;
fill: #AAA;
}
section.songs > .list .icon-sq{
fill: #FE672E;
}
section.art{
padding-top: 38px;
padding-bottom: 18px;
background: transparent url(//i.loli.net/2017/08/25/599f862b9c98d.png) no-repeat center;
background-size: cover;
text-align: center;
}
section.art svg{
width: 230px;
height: 44px;
}
section.art .link-wrapper > a{
display: inline-block;
border: 1px solid;
line-height: 40px;
font-size: 16px;
padding: 0 19px;
border-radius: 20px;
color:#D43C33;
margin-top: 10px;
margin-bottom: 5px;
}
section.art .copyright{
font-size: 12px;
color: #888;
transform: scale(.75);
}
section.songs > .lastestMusicLoading,
.page-2 > .lastestMusicLoading{
text-align: center;
}
section.songs > .lastestMusicLoading > img,
.page-2 > .lastestMusicLoading > img{
transform: scale(0.7);
} | my-projects/jquery-163-music/src/css/index.css | *{margin:0;padding:0;}
*{box-sizing: border-box;}
*::after{box-sizing: border-box;}
*::before{box-sizing: border-box;}
a{color: inherit; text-decoration: none;}
ul,ol{list-style: none;}
h1,h2,h3,h4,h5,h6{ font-weight: normal; }
body{font:14px/1.5 Helvetica,sans-serif;}
.icon {
width: 1em; height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
/* red: #D43C33 */
/* grey: #888 */
body{
font-size: 15px;
background: white;
}
.sectionTitle{
border-left: 2px solid #D43C33;
font-size: 17px;
line-height: 1;
padding-left: 8px;
margin: 20px 0 8px;
}
.sticky{
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1;
background: white;
}
section.topbar{
display: flex;
justify-content: space-between;
align-items: center;
background: #D43C33;
padding: 17px 10px;
}
section.topbar .logo>svg{
width: 142px;height: 25px;
vertical-align: top;
}
section.topbar > a{
color: white;
display: inline-block;
padding: 5px 11px;
line-height: 20px;
position: relative;
}
section.topbar > a::after{
content:'';
position: absolute;
top:0;
left: 0;
width: 200%;
height: 200%;
border: 1px solid white;
border-radius: 50px;
transform: scale(0.5);
transform-origin: 0 0;
}
/* tabs-nav */
.tabs-nav{
display: flex;
border-bottom: 1px solid #CCCCCC;
}
.tabs-nav>li{
width: 33.333333%;
text-align: center;
line-height: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.tabs-nav>li>.text{
padding: 10px 5px;
position: relative;
top: 1px;
}
.tabs-nav >li.active{
color: #D43C33;
}
.tabs-nav >li.active>.text{
}
.tabs-nav >li.active>.text::after{
content: '';
position: absolute;
height: 2px;
background: #D43C33;
bottom: 1px;
left: 0;
width: 100%;
}
.tab-content{
margin-top: 105px;
}
.tab-content > li{
display: none;
}
.tab-content > li.active{
display: block;
}
.noCollapse::before{
content:'';
display: table;
}
.noCollapse::after{
content:'';
display: table;
}
section.playlists{
}
section.playlists > ol.songs{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
font-size: 13px;
}
section.playlists > ol.songs > li{
width: 32.8%;
margin: 8px 0;
}
section.playlists > ol.songs > li p{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
line-height: 18px;
height: 36px;
padding: 0 6px;
}
section.playlists > ol.songs > li img{
width: 100%;
}
section.playlists > ol.songs > li > .cover {
position: relative;
}
section.playlists > ol.songs > li > .cover > .number{
position: absolute;
top: 1px;
right: 4px;
color: white;
}
section.songs{}
section.songs > .list {
margin-top: 18px;
}
section.songs > .list > li > h3{
font-size: 17px;
}
section.songs > .list > li > p{
font-size: 12px;
color: #888;
}
section.songs > .list > li{
position: relative;
margin-left: 10px;
padding-bottom: 6px;
padding-top: 5px;
border-bottom: 1px solid #E2E2E3;
}
section.songs > .list .playButton{
position: absolute;
right:8px;
top: 50%;
transform: translateY(-50%);
}
section.songs > .list .icon-play{
width: 22px;
height: 22px;
vertical-align: middle;
fill: #AAA;
}
section.songs > .list .icon-sq{
fill: #FE672E;
}
section.art{
padding-top: 38px;
padding-bottom: 18px;
background: transparent url(//i.loli.net/2017/08/25/599f862b9c98d.png) no-repeat center;
background-size: cover;
text-align: center;
}
section.art svg{
width: 230px;
height: 44px;
}
section.art .link-wrapper > a{
display: inline-block;
border: 1px solid;
line-height: 40px;
font-size: 16px;
padding: 0 19px;
border-radius: 20px;
color:#D43C33;
margin-top: 10px;
margin-bottom: 5px;
}
section.art .copyright{
font-size: 12px;
color: #888;
transform: scale(.75);
}
section.songs > .lastestMusicLoading,
.page-2 > .lastestMusicLoading{
text-align: center;
}
section.songs > .lastestMusicLoading > img,
.page-2 > .lastestMusicLoading > img{
transform: scale(0.7);
} | 0.373533 | 0.070049 |