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 |
|---|---|---|---|---|
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Merriweather', serif;
cursor: none;
background-image: linear-gradient( 122.3deg, rgba(111,71,133,1) 14.6%, rgba(232,129,166,1) 29.6%, rgba(237,237,183,1) 42.1%, rgba(244,166,215,1) 56.7%, rgba(154,219,232,1) 68.7%, rgba(238,226,159,1) 84.8% );
}
.nav-container {
display: flex;
justify-content: space-between;
width: 100%;
height: 0vh;
align-items: center;
margin: auto;
}
nav {
position: fixed;
top: 0;
display: flex;
justify-content: space-between;
width: 90%;
min-height: 10vh;
align-items: center;
margin: auto 10vh;
z-index: 1;
}
.nav-links li {
padding: 1rem;
border: 1px solid black;
border-radius: 5px;
background-color: rgba(255, 254, 254, 0.459);
}
.nav-links {
display: flex;
justify-content: space-between;
list-style: none;
}
.nav-links,
h1 {
flex: 1;
}
.cursor {
width: 3rem;
height: 3rem;
border: 2px solid rgb(0, 0, 0);
border-radius: 50%;
position: absolute;
transform: translate(-50%, -50%);
pointer-events: none;
transition: background 0.3s ease, transform 0.3s ease;
transform-origin: 100% 100%;
z-index: 1000;
backdrop-filter: grayscale();
}
.link-grow {
transform: scale(2);
background: rgba(0, 0, 0, 0.432);
}
.hovered-link {
color: white;
}
.front-cover img {
position: relative;
z-index: -5;
width: 100%;
height: 65vh;
border-radius: 0 0 20px 20px;
}
.greeter {
color: rgba(0, 0, 0, 0.568);
left: 24vh;
top: 17vh;
position: relative;
font-family: 'Dancing Script', cursive;
font-size: 35px;
font-style: italic;
text-shadow: 1px 2px 1px rgba(65, 145, 89, 0.308);
}
.front-desc {
position: relative;
height: 35vh;
width: 100%;
}
.box-grid {
display: grid;
justify-content: center;
grid-gap: 25px;
align-content: center;
min-height: 35vh;
grid-template-columns: repeat(4, 200px);
flex-wrap: wrap;
}
.box {
padding: 15px;
margin-bottom: 20px;
background: #ffffff;
align-items: center;
border: solid 2px grey;
border-radius: 20px;
box-shadow: 7px 20px #07070763;
transition: all 0.3s ease;
}
.box:hover .fa-arrow-right {
transition: all 0.3s ease;
margin-left: 7%;
}
.box:hover {
box-shadow: 2px 5px #07070763;
}
.box:hover .fas {
transition: all 0.3s ease;
color: blue;
}
.box-more {
color: rgb(64, 64, 138);
}
.fas {
font-size: 30px;
}
.weather {
margin-top: 10%;
text-align: center;
}
.weather-span,
.location,
.weather-descp {
text-align: center;
margin-top: 5%;
}
@keyframes gradients {
0% {
background-position: 0 0;
}
25% {
background-position: 50% 0;
}
50% {
background-position: 90% 0;
}
60% {
background-position: 60%;
}
75% {
background-position: 40%;
}
100% {
background-position: 0 0;
}
} | assets/css/styles.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Merriweather', serif;
cursor: none;
background-image: linear-gradient( 122.3deg, rgba(111,71,133,1) 14.6%, rgba(232,129,166,1) 29.6%, rgba(237,237,183,1) 42.1%, rgba(244,166,215,1) 56.7%, rgba(154,219,232,1) 68.7%, rgba(238,226,159,1) 84.8% );
}
.nav-container {
display: flex;
justify-content: space-between;
width: 100%;
height: 0vh;
align-items: center;
margin: auto;
}
nav {
position: fixed;
top: 0;
display: flex;
justify-content: space-between;
width: 90%;
min-height: 10vh;
align-items: center;
margin: auto 10vh;
z-index: 1;
}
.nav-links li {
padding: 1rem;
border: 1px solid black;
border-radius: 5px;
background-color: rgba(255, 254, 254, 0.459);
}
.nav-links {
display: flex;
justify-content: space-between;
list-style: none;
}
.nav-links,
h1 {
flex: 1;
}
.cursor {
width: 3rem;
height: 3rem;
border: 2px solid rgb(0, 0, 0);
border-radius: 50%;
position: absolute;
transform: translate(-50%, -50%);
pointer-events: none;
transition: background 0.3s ease, transform 0.3s ease;
transform-origin: 100% 100%;
z-index: 1000;
backdrop-filter: grayscale();
}
.link-grow {
transform: scale(2);
background: rgba(0, 0, 0, 0.432);
}
.hovered-link {
color: white;
}
.front-cover img {
position: relative;
z-index: -5;
width: 100%;
height: 65vh;
border-radius: 0 0 20px 20px;
}
.greeter {
color: rgba(0, 0, 0, 0.568);
left: 24vh;
top: 17vh;
position: relative;
font-family: 'Dancing Script', cursive;
font-size: 35px;
font-style: italic;
text-shadow: 1px 2px 1px rgba(65, 145, 89, 0.308);
}
.front-desc {
position: relative;
height: 35vh;
width: 100%;
}
.box-grid {
display: grid;
justify-content: center;
grid-gap: 25px;
align-content: center;
min-height: 35vh;
grid-template-columns: repeat(4, 200px);
flex-wrap: wrap;
}
.box {
padding: 15px;
margin-bottom: 20px;
background: #ffffff;
align-items: center;
border: solid 2px grey;
border-radius: 20px;
box-shadow: 7px 20px #07070763;
transition: all 0.3s ease;
}
.box:hover .fa-arrow-right {
transition: all 0.3s ease;
margin-left: 7%;
}
.box:hover {
box-shadow: 2px 5px #07070763;
}
.box:hover .fas {
transition: all 0.3s ease;
color: blue;
}
.box-more {
color: rgb(64, 64, 138);
}
.fas {
font-size: 30px;
}
.weather {
margin-top: 10%;
text-align: center;
}
.weather-span,
.location,
.weather-descp {
text-align: center;
margin-top: 5%;
}
@keyframes gradients {
0% {
background-position: 0 0;
}
25% {
background-position: 50% 0;
}
50% {
background-position: 90% 0;
}
60% {
background-position: 60%;
}
75% {
background-position: 40%;
}
100% {
background-position: 0 0;
}
} | 0.55254 | 0.127327 |
.badge-outline {
background-color: transparent;
border: 1px solid;
}
/* header-transparent */
.header-transparent .navbar-light .navbar-nav .nav-link {
color: #ffffff;
}
.header-transparent .navbar-light .navbar-nav .nav-link:hover,
.header-transparent .navbar-light .navbar-nav .nav-link:focus {
color: #ffffff;
}
.header-transparent .navbar .navbar-toggler:focus {
outline: 0px;
}
.header-transparent .navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #fff;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.header-transparent .navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.header-transparent .navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #fff;
}
.header-transparent .navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.header-transparent .navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.header-transparent .navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
/* header-primary */
.header-primary .navbar-light .navbar-nav .nav-link {
color: #ffffff;
}
.header-primary .navbar-light .navbar-nav .nav-link:hover,
.header-primary .navbar-light .navbar-nav .nav-link:focus {
color: #ffffff;
}
.header-primary .navbar .navbar-toggler:focus {
outline: 0px;
}
.header-primary .navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #fff;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.header-primary .navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #fff;
}
.header-primary .navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.header-primary .navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #fff;
}
.header-primary .navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.header-primary .navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #fff;
}
.header-primary .navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.header-primary .navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #fff;
}
.header-primary .navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
/* navbar */
.navbar-light .navbar-nav .nav-link,
.navbar-nav .dropdown-item,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link {
color: #3c4d6b;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link:focus {
color: #f51f8a;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link:hover {
color: #f51f8a;
}
/* dropdown header */
.dropdown-header {
display: block;
padding: 0.5rem 1.5rem;
margin-bottom: 0;
color: #15549a;
white-space: nowrap;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
}
/* dropdown*/
.dropdown-item {
font-size: 14px;
color: #3c4d6b;
}
.dropdown-toggle::after {
display: inline-block;
margin-left: 2px;
vertical-align: middle;
content: "\f107";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
border-top: none;
border-right: none;
border-bottom: none;
border-left: none;
}
.dropright .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
border-top: none;
border-right: none;
border-bottom: none;
border-left: none;
}
.navbar-nav .dropright > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.dropleft .dropdown-toggle::before {
display: none;
}
/* navbar toggle */
.navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.navbar .navbar-toggler:focus {
outline: 0px;
}
.navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #15549a;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #15549a;
}
.navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #15549a;
}
.navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #15549a;
}
.navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #15549a;
}
.navbar-nav .dropdown-item.active,
.dropdown-item:active {
background-color: transparent;
}
.navbar-nav .dropdown-item:focus,
.dropdown-item:hover {
background-color: transparent;
}
.navbar-nav .dropright .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: -1px;
}
.navbar-nav .dropleft .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: -1px;
}
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link {
color: #3c4d6b;
}
/* breakpoints */
@media (min-width: 991.98px) {
.w-lg-75 {
width: 75%;
}
.border-left-lg {
border-left: 1px solid #dee2e6;
}
.border-right-lg {
border-right: 1px solid #dee2e6;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
.navbar-nav .dropright .dropdown-menu {
border: none;
}
.navbar-nav .dropdown .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
}
.navbar-nav .dropdown > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
.header-transparent {
position: relative;
background-color: #15549a;
}
}
@media (max-width: 768px) {
.navbar-nav .dropright .dropdown-menu {
border: none;
}
.navbar-nav .dropdown .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
}
.navbar-nav .dropdown > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.7rem;
padding-left: 0.7rem;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.navbar .dropdown-menu {
box-shadow: 0px 6px 17px rgba(0, 0, 0, 0.05);
border: 1px solid #e6ecef;
}
.dropdown-menu-lg {
min-width: 416px;
}
.navbar-nav .dropdown > .dropdown-menu {
display: block;
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.navbar-nav .dropdown > .dropdown-menu .dropright .dropdown-menu,
.navbar-nav .dropdown > .dropdown-menu .dropleft .dropdown-menu {
display: block;
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.navbar-nav .dropdown.show > .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
.navbar-nav .dropdown:hover .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
.navbar-nav .dropdown > .dropdown-menu .dropright:hover .dropdown-menu,
.navbar-nav .dropdown > .dropdown-menu .dropleft:hover .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
}
@media (max-width: 991.98px) {
.dropdown-menu-lg {
min-width: auto;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
} | asset/css/navbar.css | .badge-outline {
background-color: transparent;
border: 1px solid;
}
/* header-transparent */
.header-transparent .navbar-light .navbar-nav .nav-link {
color: #ffffff;
}
.header-transparent .navbar-light .navbar-nav .nav-link:hover,
.header-transparent .navbar-light .navbar-nav .nav-link:focus {
color: #ffffff;
}
.header-transparent .navbar .navbar-toggler:focus {
outline: 0px;
}
.header-transparent .navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #fff;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.header-transparent .navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.header-transparent .navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #fff;
}
.header-transparent .navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.header-transparent .navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.header-transparent .navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #fff;
}
.header-transparent .navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
/* header-primary */
.header-primary .navbar-light .navbar-nav .nav-link {
color: #ffffff;
}
.header-primary .navbar-light .navbar-nav .nav-link:hover,
.header-primary .navbar-light .navbar-nav .nav-link:focus {
color: #ffffff;
}
.header-primary .navbar .navbar-toggler:focus {
outline: 0px;
}
.header-primary .navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #fff;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.header-primary .navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #fff;
}
.header-primary .navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.header-primary .navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #fff;
}
.header-primary .navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.header-primary .navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #fff;
}
.header-primary .navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.header-primary .navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #fff;
}
.header-primary .navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
/* navbar */
.navbar-light .navbar-nav .nav-link,
.navbar-nav .dropdown-item,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link {
color: #3c4d6b;
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link:focus {
color: #f51f8a;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link:hover {
color: #f51f8a;
}
/* dropdown header */
.dropdown-header {
display: block;
padding: 0.5rem 1.5rem;
margin-bottom: 0;
color: #15549a;
white-space: nowrap;
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
}
/* dropdown*/
.dropdown-item {
font-size: 14px;
color: #3c4d6b;
}
.dropdown-toggle::after {
display: inline-block;
margin-left: 2px;
vertical-align: middle;
content: "\f107";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
border-top: none;
border-right: none;
border-bottom: none;
border-left: none;
}
.dropright .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
content: "\f105";
font-family: "Font Awesome 5 Free";
font-weight: 900;
font-size: 14px;
border-top: none;
border-right: none;
border-bottom: none;
border-left: none;
}
.navbar-nav .dropright > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.dropleft .dropdown-toggle::before {
display: none;
}
/* navbar toggle */
.navbar .navbar-toggler {
padding: 0rem;
font-size: 1.07rem;
line-height: 1;
background-color: transparent;
border: 1px solid transparent;
border-radius: 0.25rem;
}
.navbar .navbar-toggler:focus {
outline: 0px;
}
.navbar .navbar-toggler .icon-bar {
width: 21px;
height: 3px;
background-color: #15549a;
display: block;
transition: all 0.2s;
margin-top: 4px;
}
.navbar .navbar-toggler .top-bar {
transform: rotate(45deg);
transform-origin: 10% 190%;
background-color: #15549a;
}
.navbar .navbar-toggler .middle-bar {
opacity: 0;
}
.navbar .navbar-toggler .bottom-bar {
transform: rotate(-45deg);
transform-origin: 10% -80%;
background-color: #15549a;
}
.navbar .navbar-collapse {
flex-basis: 100%;
flex-grow: 1;
align-items: center;
transition: opacity 0.15s linear;
}
.navbar .navbar-toggler.collapsed .top-bar {
transform: rotate(0);
background-color: #15549a;
}
.navbar .navbar-toggler.collapsed .middle-bar {
opacity: 1;
}
.navbar .navbar-toggler.collapsed .bottom-bar {
transform: rotate(0);
background-color: #15549a;
}
.navbar-nav .dropdown-item.active,
.dropdown-item:active {
background-color: transparent;
}
.navbar-nav .dropdown-item:focus,
.dropdown-item:hover {
background-color: transparent;
}
.navbar-nav .dropright .dropdown-menu {
top: 0;
right: auto;
left: 100%;
margin-top: 0;
margin-left: -1px;
}
.navbar-nav .dropleft .dropdown-menu {
top: 0;
right: 100%;
left: auto;
margin-top: 0;
margin-right: -1px;
}
.navbar-nav .dropdown-menu .dropdown-item .dropdown-link {
color: #3c4d6b;
}
/* breakpoints */
@media (min-width: 991.98px) {
.w-lg-75 {
width: 75%;
}
.border-left-lg {
border-left: 1px solid #dee2e6;
}
.border-right-lg {
border-right: 1px solid #dee2e6;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
.navbar-nav .dropright .dropdown-menu {
border: none;
}
.navbar-nav .dropdown .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
}
.navbar-nav .dropdown > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
.header-transparent {
position: relative;
background-color: #15549a;
}
}
@media (max-width: 768px) {
.navbar-nav .dropright .dropdown-menu {
border: none;
}
.navbar-nav .dropdown .dropdown-toggle::after {
display: inline-block;
margin-left: auto;
vertical-align: 0;
}
.navbar-nav .dropdown > .dropdown-toggle {
display: -webkit-box;
display: flex;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
}
@media (min-width: 992px) {
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: 0.7rem;
padding-left: 0.7rem;
text-transform: uppercase;
font-size: 14px;
font-weight: 600;
}
.navbar .dropdown-menu {
box-shadow: 0px 6px 17px rgba(0, 0, 0, 0.05);
border: 1px solid #e6ecef;
}
.dropdown-menu-lg {
min-width: 416px;
}
.navbar-nav .dropdown > .dropdown-menu {
display: block;
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.navbar-nav .dropdown > .dropdown-menu .dropright .dropdown-menu,
.navbar-nav .dropdown > .dropdown-menu .dropleft .dropdown-menu {
display: block;
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(20px);
-ms-transform: translateY(20px);
transform: translateY(20px);
-webkit-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
}
.navbar-nav .dropdown.show > .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
.navbar-nav .dropdown:hover .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
.navbar-nav .dropdown > .dropdown-menu .dropright:hover .dropdown-menu,
.navbar-nav .dropdown > .dropdown-menu .dropleft:hover .dropdown-menu {
visibility: visible;
opacity: 1;
-webkit-transform: scaleY(1);
-ms-transform: scaleY(1);
transform: scaleY(1);
opacity: 1;
visibility: visible;
}
}
@media (max-width: 991.98px) {
.dropdown-menu-lg {
min-width: auto;
}
.navbar .nav-justified .nav-item {
text-align: left;
}
} | 0.45641 | 0.075756 |
.board-overlay {
display: inline-block;
font-family: arial;
position: relative;
width: 100%;
border-width: 1px;
border-style: solid;
}
.board-overlay > * {
background: #eee; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(135deg, #fff, #eee); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(135deg, #fff, #eee); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(135deg, #fff, #eee); /* For Firefox 3.6 to 15 */
background: linear-gradient(135deg, #fff, #eee); /* Standard syntax */
border-style: solid;
border-width: 1px 0px 0px;
}
.board-overlay > div:first-of-type {
border-width: 0px;
}
.board {
background: #ccc;
border-collapse: collapse;
height: 100%;
table-layout: fixed;
width: 100%;
}
.board-wrapper-max-height {
height: 500pt;
}
.tasks {
height: 100%;
}
.tasks td {
text-align: center;
border: 1px solid black;
vertical-align: top;
}
.task, .task-details {
border-radius: 6pt;
padding: 3pt;
margin: 3pt;
border-style: solid;
border-color: black;
border-width: thin;
text-align: center;
}
.task {
position: relative;
background: yellow;
}
.task-details {
background: yellow;
display: none;
position: absolute;
z-index: 10;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
pointer-events: none;
text-align: left;
padding-left: 8px;
padding-right: 8px;
}
.task-details p {
margin: 0;
}
.task-details p span {
font-weight: bold;
}
.task-animation {
-webkit-animation-name: taskAnimation; /* Chrome, Safari, Opera */
-webkit-animation-duration: .2s; /* Chrome, Safari, Opera */
animation-name: taskAnimation;
animation-duration: .2s;
}
.task .progress {
height: 6px;
margin-bottom: 0px;
}
.progress-bar {
-webkit-transition: width 0s ease;
-o-transition: width 0s ease;
transition: width 0s ease;
}
.task-animation .progress-bar {
-webkit-transition: width .1s ease;
-o-transition: width .1s ease;
transition: width 0.1s ease;
}
.task .task-status {
display: inline-block;
}
.board th {
text-align: center;
border: 1px solid black;
background-color: #eea;
overflow: hidden;
}
/* Standard syntax */
@keyframes taskAnimation {
from {
border-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
to {
border-color: black;
}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes taskAnimation {
from {
border-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
to {
border-color: black;
}
}
.top-toolbar {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.top-toolbar > div {
-webkit-flex-shrink: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
padding: 3pt;
padding-left: 10pt;
padding-right: 10pt;
display: inline-block;
vertical-align: top;
border: 0pt;
border-style: solid;
}
.top-toolbar > div:not(:first-child) {
border-left: 1px;
border-style: solid;
}
.bottom-menu {
}
.actions {
position: relative;
}
.simulation-settings-modal .modal-body > div {
padding: 3pt;
padding-left: 10pt;
padding-right: 10pt;
display: inline-block;
vertical-align: top;
width: 100%;
background-color: #f9f9f9;
overflow: auto;
}
.settings-table input[type="text"] {
width: 40pt;
}
.settings-table {
table-layout: fixed;
width: 100%;
}
.settings-table tr:hover {
background-color: #eee;
}
.settings-table tr td {
text-align: left;
font-weight: normal;
padding: 3px;
}
.settings-table tr td:first-child {
text-align: right;
padding-right: 3pt;
overflow: hidden;
}
.board-config-div {
text-align: center;
}
.board-config tr.sortit {
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.board-config, .board-config th {
text-align: center;
}
.board-config tr:hover {
background-color: #eee;
}
.board-config {
margin: 0 auto;
}
.board-column-remove {
color: red;
cursor: pointer;
}
.backlog-settings {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.backlog-settings > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
vertical-align: top;
}
.value-settings {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.value-settings > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
vertical-align: middle;
}
.simulation-settings-team h4 {
text-align: center;
}
.who-works-where {
width: auto;
margin: 0 auto;
}
.who-works-where th {
text-align: center;
padding: 3pt;
}
.who-works-where tr td:nth-child(2) input{
width: inherit;
}
.team-member-remove {
color: red;
}
.team-config-buttons {
text-align: center;
}
.title {
flex: 1;
-webkit-flex: 1;
font-weight: bold;
font-size: large;
text-align: center;
}
.title p:nth-child(2) {
font-size: x-large;
}
.title p {
margin: 0;
}
#timescaleSlider .slider-selection {
background: #BABABA;
}
.slider.slider-horizontal {
width: 140px;
}
.board-wrapper {
overflow-y: hidden;
overflow-x: hidden;
max-height: 300pt;
border-width: 0px;
}
.board input[type="text"] {
width: 20pt;
border-width: 0;
}
.general-stats {
padding: 5px;
}
.board th input {
margin-top: 3pt;
margin-bottom: 3pt;
}
.board th input[type='checkbox'] {
margin-top: 8pt;
margin-bottom: 4pt;
}
.board .person {
text-shadow: 1px 1px 2px #000000;
letter-spacing: -6pt;
}
.board .waiting {
text-shadow: 1px 1px 2px #000000;
}
.board-overlay .person {
text-shadow: 1px 1px 2px #000000;
}
.nav li {
cursor: pointer;
}
.simulation-cfd-tab, .simulation-littles-tab, .simulation-cod-tab, .simulation-scatterplot-tab {
height: 300px;
width: 100%;
}
.simulation-cfd-tab {
display: flex;
display: -webkit-flex;
}
.simulation-cfd {
height: 100%;
flex: 1;
-webkit-flex: 1
}
.simulation-cfd-settings {
height: 100%;
flex-shrink: 1;
-webkit-flex-shrink: 1;
padding: 10pt;
background-color: #ddd;
}
.simulation-cfd-settings div {
}
.footer {
width: 100%;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.footer > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
}
.copyright {
text-align: right;
} | src/kanban-flow.css | .board-overlay {
display: inline-block;
font-family: arial;
position: relative;
width: 100%;
border-width: 1px;
border-style: solid;
}
.board-overlay > * {
background: #eee; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(135deg, #fff, #eee); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(135deg, #fff, #eee); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(135deg, #fff, #eee); /* For Firefox 3.6 to 15 */
background: linear-gradient(135deg, #fff, #eee); /* Standard syntax */
border-style: solid;
border-width: 1px 0px 0px;
}
.board-overlay > div:first-of-type {
border-width: 0px;
}
.board {
background: #ccc;
border-collapse: collapse;
height: 100%;
table-layout: fixed;
width: 100%;
}
.board-wrapper-max-height {
height: 500pt;
}
.tasks {
height: 100%;
}
.tasks td {
text-align: center;
border: 1px solid black;
vertical-align: top;
}
.task, .task-details {
border-radius: 6pt;
padding: 3pt;
margin: 3pt;
border-style: solid;
border-color: black;
border-width: thin;
text-align: center;
}
.task {
position: relative;
background: yellow;
}
.task-details {
background: yellow;
display: none;
position: absolute;
z-index: 10;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
pointer-events: none;
text-align: left;
padding-left: 8px;
padding-right: 8px;
}
.task-details p {
margin: 0;
}
.task-details p span {
font-weight: bold;
}
.task-animation {
-webkit-animation-name: taskAnimation; /* Chrome, Safari, Opera */
-webkit-animation-duration: .2s; /* Chrome, Safari, Opera */
animation-name: taskAnimation;
animation-duration: .2s;
}
.task .progress {
height: 6px;
margin-bottom: 0px;
}
.progress-bar {
-webkit-transition: width 0s ease;
-o-transition: width 0s ease;
transition: width 0s ease;
}
.task-animation .progress-bar {
-webkit-transition: width .1s ease;
-o-transition: width .1s ease;
transition: width 0.1s ease;
}
.task .task-status {
display: inline-block;
}
.board th {
text-align: center;
border: 1px solid black;
background-color: #eea;
overflow: hidden;
}
/* Standard syntax */
@keyframes taskAnimation {
from {
border-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
to {
border-color: black;
}
}
/* Chrome, Safari, Opera */
@-webkit-keyframes taskAnimation {
from {
border-color: white;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
to {
border-color: black;
}
}
.top-toolbar {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.top-toolbar > div {
-webkit-flex-shrink: 1;
-ms-flex-shrink: 1;
flex-shrink: 1;
padding: 3pt;
padding-left: 10pt;
padding-right: 10pt;
display: inline-block;
vertical-align: top;
border: 0pt;
border-style: solid;
}
.top-toolbar > div:not(:first-child) {
border-left: 1px;
border-style: solid;
}
.bottom-menu {
}
.actions {
position: relative;
}
.simulation-settings-modal .modal-body > div {
padding: 3pt;
padding-left: 10pt;
padding-right: 10pt;
display: inline-block;
vertical-align: top;
width: 100%;
background-color: #f9f9f9;
overflow: auto;
}
.settings-table input[type="text"] {
width: 40pt;
}
.settings-table {
table-layout: fixed;
width: 100%;
}
.settings-table tr:hover {
background-color: #eee;
}
.settings-table tr td {
text-align: left;
font-weight: normal;
padding: 3px;
}
.settings-table tr td:first-child {
text-align: right;
padding-right: 3pt;
overflow: hidden;
}
.board-config-div {
text-align: center;
}
.board-config tr.sortit {
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.board-config, .board-config th {
text-align: center;
}
.board-config tr:hover {
background-color: #eee;
}
.board-config {
margin: 0 auto;
}
.board-column-remove {
color: red;
cursor: pointer;
}
.backlog-settings {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.backlog-settings > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
vertical-align: top;
}
.value-settings {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.value-settings > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
vertical-align: middle;
}
.simulation-settings-team h4 {
text-align: center;
}
.who-works-where {
width: auto;
margin: 0 auto;
}
.who-works-where th {
text-align: center;
padding: 3pt;
}
.who-works-where tr td:nth-child(2) input{
width: inherit;
}
.team-member-remove {
color: red;
}
.team-config-buttons {
text-align: center;
}
.title {
flex: 1;
-webkit-flex: 1;
font-weight: bold;
font-size: large;
text-align: center;
}
.title p:nth-child(2) {
font-size: x-large;
}
.title p {
margin: 0;
}
#timescaleSlider .slider-selection {
background: #BABABA;
}
.slider.slider-horizontal {
width: 140px;
}
.board-wrapper {
overflow-y: hidden;
overflow-x: hidden;
max-height: 300pt;
border-width: 0px;
}
.board input[type="text"] {
width: 20pt;
border-width: 0;
}
.general-stats {
padding: 5px;
}
.board th input {
margin-top: 3pt;
margin-bottom: 3pt;
}
.board th input[type='checkbox'] {
margin-top: 8pt;
margin-bottom: 4pt;
}
.board .person {
text-shadow: 1px 1px 2px #000000;
letter-spacing: -6pt;
}
.board .waiting {
text-shadow: 1px 1px 2px #000000;
}
.board-overlay .person {
text-shadow: 1px 1px 2px #000000;
}
.nav li {
cursor: pointer;
}
.simulation-cfd-tab, .simulation-littles-tab, .simulation-cod-tab, .simulation-scatterplot-tab {
height: 300px;
width: 100%;
}
.simulation-cfd-tab {
display: flex;
display: -webkit-flex;
}
.simulation-cfd {
height: 100%;
flex: 1;
-webkit-flex: 1
}
.simulation-cfd-settings {
height: 100%;
flex-shrink: 1;
-webkit-flex-shrink: 1;
padding: 10pt;
background-color: #ddd;
}
.simulation-cfd-settings div {
}
.footer {
width: 100%;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
}
.footer > div {
flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
}
.copyright {
text-align: right;
} | 0.520009 | 0.115911 |
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/rN0AGm-UbeCy1H1Jew93RBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/oip-K2YN3EYHgt8SY7FJfBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/uvJKCkkt46588W3D3t_gLBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/tRvJQnSw4lmceQIbdzOKGHYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/H-PGIsE3CA76bgvfUI8sM4DGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/yliIEUJv6vLJBV8IXYupkIDGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/Vi2gYeiEKThJHNpaE3cq54DGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/p_PvaTv0YzIEJlEVv30xK6CWcynf_cDxXwCLxiixG1c.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/WdwM2J7q9PjwEDtfaHmmmxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/UVNnZWb9UilkxwgKrV-6TBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/XwD9N0jIpRr71ymtU2S41BkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/IUSlgBbgyuDQpy87mBOAc3YhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/YPNAXz8Lvdc_aVM_nwpD7RkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/qM4Xdpgnd4UROLJsnasqaBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/u7X1qIRpQ-sYqacI4EpdYxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/0hS39AKxpJlEXQF3mVPgrnYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/Y_ya33O952tiodYPYM2XyBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/xNokXzx392-6rWw5DW0udxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/_bBO8RSSEIcKD9WcTqiItxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/q1zR17dXuC8hEk69Lb7Bo3YhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
} | nuiYii/_resource/nuiRes/css/rubik.fonts.googleapis.css | @font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/rN0AGm-UbeCy1H1Jew93RBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/oip-K2YN3EYHgt8SY7FJfBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/uvJKCkkt46588W3D3t_gLBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 300;
src: local('Rubik Light'), local('Rubik-Light'), url(../fonts/rubik/v4/tRvJQnSw4lmceQIbdzOKGHYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/H-PGIsE3CA76bgvfUI8sM4DGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/yliIEUJv6vLJBV8IXYupkIDGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/Vi2gYeiEKThJHNpaE3cq54DGDUGfDkXyfkzVDelzfFk.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), url(../fonts/rubik/v4/p_PvaTv0YzIEJlEVv30xK6CWcynf_cDxXwCLxiixG1c.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/WdwM2J7q9PjwEDtfaHmmmxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/UVNnZWb9UilkxwgKrV-6TBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/XwD9N0jIpRr71ymtU2S41BkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 500;
src: local('Rubik Medium'), local('Rubik-Medium'), url(../fonts/rubik/v4/IUSlgBbgyuDQpy87mBOAc3YhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/YPNAXz8Lvdc_aVM_nwpD7RkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/qM4Xdpgnd4UROLJsnasqaBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/u7X1qIRpQ-sYqacI4EpdYxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), url(../fonts/rubik/v4/0hS39AKxpJlEXQF3mVPgrnYhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
}
/* cyrillic */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/Y_ya33O952tiodYPYM2XyBkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* hebrew */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/xNokXzx392-6rWw5DW0udxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* latin-ext */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/_bBO8RSSEIcKD9WcTqiItxkAz4rYn47Zy2rvigWQf6w.woff2) format('woff2');
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 900;
src: local('Rubik Black'), local('Rubik-Black'), url(../fonts/rubik/v4/q1zR17dXuC8hEk69Lb7Bo3YhjbSpvc47ee6xR_80Hnw.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
} | 0.218503 | 0.095434 |
@charset "utf-8";
/* CSS Document */
* {
padding:0;
margin:0;
border:none;
}
table td tr{ border:none;}
body{ background:#2B5E89; font-family:"微软雅黑"; font-size:12px;}
.clear{ clear:both;}
.w{width:1213px; margin:auto;}
.top{ height:65px; line-height:53px; vertical-align:middle; overflow:hidden; color:#FFF; font-weight:bold;}
.left{ float:left}
.right{ float:right}
.userS a,.right a{color:white;text-decoration: none;}
.top img{margin:11px 10px 0px 10px; border:none; float:left;}
.top a{ line-height:45px; height:65px;}
.bj{ background-color:#FFF; overflow:hidden; }
.bbj{ background:url(../images/bbjj_07.jpg) repeat-x; height:6px; display:block; margin-bottom:12px;}
.zhanghu{ width:381px; height:141px; margin-left:18px; margin-right:18px; display:block; overflow:hidden; float:left; *margin-left:9px;color:white;}
.zhanghu{background-color:#2a8ce7;}
.zhanghu dl{ margin-top:11px; margin-left:19px;}
.zhanghu dt{float:left; width:87px; text-align:center; display:block; overflow:hidden; line-height:45px; }
.zhanghu dt img{ width:87px; height:87px;}
.zhanghu dd{ float:left; line-height:24px; margin-left:18px; margin-top:10px;}
.zhanghu dd span{ width:70px; height:24px; background-color:#82b52f; display:block; line-height:24px; text-align:center;float:left; margin:10px 6px 0px 0px;}
.qBox{ background:url(../images/sjb_11.jpg) repeat-y; height:141px; margin-left:18px; width:779px; display:block; overflow:hidden;color:white;}
.qBox .head em{ width:71px; height:28px; line-height:24px; text-align:center; font-style:normal; display:block; float:left; }
.qBox .head em.tt{ margin-left:328px;background-color:#326c98;}
/*theater*/
#theater{position: relative;top: 0px;}
.theater{ width:796px;}
.theater .items{width:796px;}
.theater .item{width:779px;height:95px;overflow:hidden; display:block; margin-left:17px; float:left;padding-bottom: 48px;}
.theater .item .zz{float:left;}
.theater .item .zz dl{ width:343px; height:86px; background-color:#95bf45; border:1px solid #74a024; margin-top:5px; }
.theater .item .zz dt{ margin-top:9px; margin-left:13px; float:left;}
.theater .item .zz dd{ float:left; margin-left:15px; margin-top:9px; width:240px;}
.theater .item .zz dd a{ float:right; margin-left:5px;}
.theater .item .yy{float:left;background-color:#0093a8; margin-left:53px;}
.theater .item .yy dl{ margin-top:7px; }
.theater .item .yy dt{ float:left; width:237px; height:79px; background-color:#21a1b3;border: 1px solid #008193; padding:7px 0px 0px 10px; overflow:hidden;}
.theater .item .yy dd{ float:left; margin-left:10px; width:83px; height:86px;}
.qPage{height:16px;padding:2px 9px 0 9px; position: relative;top: 123px;left: -500px;}
.qPage .turn div{display:inline-block;*display:inline;*zoom:1;width:27px;height:7px;margin-left:5px;}
.qPage .turn a{display:block;width:100%;height:100%;line-height:16px;}
.qPage .turn .pre{cursor:pointer;background:url(../images/sss_23.jpg) no-repeat; margin-left:160px;}
.qPage .turn .next{cursor:pointer; background:url(../images/ss_15.jpg) no-repeat;}
.ttt{ height:30px; font-size:16px; color:#4d4d4d; line-height:30px; padding-top:15px; border-bottom:2px solid #59b0d6; text-indent:5px;}
.bbjj{ height:5px; line-height:5px; font-size:5px; background-color:#118fc5; width:1177px; margin:15px 18px 0px 18px;}
.content{ width:1177px; border:none; margin:auto; height:100%; }
.bbt{ width:90px; background:#0093a8; border:none; height:100%;overflow:auto; padding-bottom:50px; font-size:14px;}
.bbt em{width:90px; height:77px; display:block; text-align:center; line-height:77px; overflow:hidden;}
.bbt ul{ width:90px;}
.bbt ul li{ width:90px; height:90px; list-style:none; margin-top:5px; background-color:#0093a8; overflow:hidden}
.bbt ul li:hover{ width:90px; height:90px; list-style:none; cursor:pointer; overflow:hidden}
#menu .current{background-color:#b51c44;}
.bordd{border:1px solid #d5dce7; height:75px; width:190px; border-radius:3px; -moz-border-radius:3px; /* 老的 Firefox */ margin-top:15px; margin-left:5px; float:left; padding:10px 0px 0px 10px; margin-right:5px;}
.base{ width:1073px; margin:auto;}
.bordd dt{ float:left; width:60px; height:60px; padding-top:5px;}
.bordd dd strong{color:#4d4d4d;}
.bordd dd{ float:left; color:#aeadad; margin-left:10px; width:110px;}
.ykfg,.sysz{ border:solid 1px #b9b9b9; overflow:hidden; display:block; padding-left:15px; padding-bottom:25px; margin-top:10px;width:1050px;}
.ykfg em{ background:url(../images/gn_34.jpg) no-repeat; font-style:normal; font-size:14px; color:#0093a8; padding-left:30px; display:block; line-height:24px; margin-top:15px;}
.ykfg table .title{color: rgb(0, 147, 168);}
.ykfg .w1{width: 110px;}
.ykfg .w2{width: 315px;}
.ykfg .w3{width: 80px;}
.ykfg th{font: bold;font-size: 14px;}
.ykfg tr{height: 45px;}
.ykfg .status_off{background: url(../images/off.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg .status_on{background: url(../images/on.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg .default{background: url(../images/default.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg table{table-layout: fixed;word-break: break-all;margin-bottom: 40px;}
.ykfg .tleft{margin-top:10px;position: relative;left: 0;float: left;}
.ykfg .tright{margin-top: 10px;position: relative;left: 15px;float: left;}
.ykfg table,.ykfg tr,.ykfg th,.ykfg td{
border: 1px solid #b9b9b9;
text-align: center;
}
.ykfg table{
border-collapse: collapse;
}
.vipimgbig{ background:url(../images/img/vip.png) no-repeat;display: inline-block;
height: 14px;
margin: 0 0 0 6px;
position: relative;
top: 2px;
width: 38px;}
.vip-iconbig{ background-position: 0 0;}
.vip-iconbig0{ background-position: -14px -14px;}
.vip-iconbig1{ background-position: -14px -28px;}
.vip-iconbig2{ background-position: -14px -42px;}
.vip-iconbig3{ background-position: -14px -56px;}
.vip-iconbig4{ background-position: -14px -70px;}
.vip-iconbig5{ background-position: -14px -84px;}
.vip-iconbig6{ background-position: -14px -98px;}
.uname{margin-top:-20px;display: block;}
.sysz .cLineB{margin-top: 10px;}
.sysz .cLineB h4{font-size: 14px;}
.sysz .cLineB .right{font-size: 14px;color: #000;margin-right: 20px;}
.btnGrayS {
border:1px solid #3d810c;
box-shadow:0 1px #CCCCCC;
-moz-box-shadow:0 1px #CCCCCC;
-webkit-box-shadow:0 1px #CCCCCC;
cursor:pointer;
display:inline-block;
text-align:center;
vertical-align:bottom;
overflow:visible;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
*zoom:1;
background-color:#f1f1f1;
background-image: -webkit-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
background-image: -moz-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
background-image: -ms-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
color:#000;
border:1px solid #AAA;
padding:2px 8px 2px 8px;
text-shadow: 0 1px #FFFFFF;font-size: 14px;
line-height: 1.5;
}
.btnGrayS:hover {
background: #E5E5E5;
background-image: -webkit-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
background-image: -moz-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
background-image: -ms-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
text-decoration: none;
color:#000;
}
.btnGrayS:active {
background: #E5E5E5;
background-image: -webkit-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
background-image: -moz-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
background-image: -ms-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
text-decoration: none;
color:#000;
}
.bgfc{ background-color:#fcfcfc; padding:20px; border:1px solid #EEEEEE; border-top:0; margin-bottom:20px;}
.bgfc table,tr,td,th{border: 0;}
.bgfc td{text-align: left;}
.bgfc td,th{padding-top: 10px;}
.bgfc p, .bgfc table, .bgfc tr, .bgfc td, .bgfc th, .bgfc dl, .bgfc dt, .bgfc dd, .bgfc ol, .bgfc ul, .bgfc li, .bgfc input, .bgfc button, .bgfc select, .bgfc stextarea {
line-height:1.5;
}
.px, .pt {
padding: 5px;
}
.px, .pt, .ps, select {
background: url(../images/img/px.png) repeat-x scroll 0 0 #FFFFFF;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
border-radius: 2px 2px 2px 2px;
}
.red {
color: rgb(255, 0, 0);
background-color: transparent;
border: 0px none;
}
input, textarea {
background: none repeat scroll 0% 0% rgb(255, 255, 255);
} | tpl/User/default/common/css/ss.css | @charset "utf-8";
/* CSS Document */
* {
padding:0;
margin:0;
border:none;
}
table td tr{ border:none;}
body{ background:#2B5E89; font-family:"微软雅黑"; font-size:12px;}
.clear{ clear:both;}
.w{width:1213px; margin:auto;}
.top{ height:65px; line-height:53px; vertical-align:middle; overflow:hidden; color:#FFF; font-weight:bold;}
.left{ float:left}
.right{ float:right}
.userS a,.right a{color:white;text-decoration: none;}
.top img{margin:11px 10px 0px 10px; border:none; float:left;}
.top a{ line-height:45px; height:65px;}
.bj{ background-color:#FFF; overflow:hidden; }
.bbj{ background:url(../images/bbjj_07.jpg) repeat-x; height:6px; display:block; margin-bottom:12px;}
.zhanghu{ width:381px; height:141px; margin-left:18px; margin-right:18px; display:block; overflow:hidden; float:left; *margin-left:9px;color:white;}
.zhanghu{background-color:#2a8ce7;}
.zhanghu dl{ margin-top:11px; margin-left:19px;}
.zhanghu dt{float:left; width:87px; text-align:center; display:block; overflow:hidden; line-height:45px; }
.zhanghu dt img{ width:87px; height:87px;}
.zhanghu dd{ float:left; line-height:24px; margin-left:18px; margin-top:10px;}
.zhanghu dd span{ width:70px; height:24px; background-color:#82b52f; display:block; line-height:24px; text-align:center;float:left; margin:10px 6px 0px 0px;}
.qBox{ background:url(../images/sjb_11.jpg) repeat-y; height:141px; margin-left:18px; width:779px; display:block; overflow:hidden;color:white;}
.qBox .head em{ width:71px; height:28px; line-height:24px; text-align:center; font-style:normal; display:block; float:left; }
.qBox .head em.tt{ margin-left:328px;background-color:#326c98;}
/*theater*/
#theater{position: relative;top: 0px;}
.theater{ width:796px;}
.theater .items{width:796px;}
.theater .item{width:779px;height:95px;overflow:hidden; display:block; margin-left:17px; float:left;padding-bottom: 48px;}
.theater .item .zz{float:left;}
.theater .item .zz dl{ width:343px; height:86px; background-color:#95bf45; border:1px solid #74a024; margin-top:5px; }
.theater .item .zz dt{ margin-top:9px; margin-left:13px; float:left;}
.theater .item .zz dd{ float:left; margin-left:15px; margin-top:9px; width:240px;}
.theater .item .zz dd a{ float:right; margin-left:5px;}
.theater .item .yy{float:left;background-color:#0093a8; margin-left:53px;}
.theater .item .yy dl{ margin-top:7px; }
.theater .item .yy dt{ float:left; width:237px; height:79px; background-color:#21a1b3;border: 1px solid #008193; padding:7px 0px 0px 10px; overflow:hidden;}
.theater .item .yy dd{ float:left; margin-left:10px; width:83px; height:86px;}
.qPage{height:16px;padding:2px 9px 0 9px; position: relative;top: 123px;left: -500px;}
.qPage .turn div{display:inline-block;*display:inline;*zoom:1;width:27px;height:7px;margin-left:5px;}
.qPage .turn a{display:block;width:100%;height:100%;line-height:16px;}
.qPage .turn .pre{cursor:pointer;background:url(../images/sss_23.jpg) no-repeat; margin-left:160px;}
.qPage .turn .next{cursor:pointer; background:url(../images/ss_15.jpg) no-repeat;}
.ttt{ height:30px; font-size:16px; color:#4d4d4d; line-height:30px; padding-top:15px; border-bottom:2px solid #59b0d6; text-indent:5px;}
.bbjj{ height:5px; line-height:5px; font-size:5px; background-color:#118fc5; width:1177px; margin:15px 18px 0px 18px;}
.content{ width:1177px; border:none; margin:auto; height:100%; }
.bbt{ width:90px; background:#0093a8; border:none; height:100%;overflow:auto; padding-bottom:50px; font-size:14px;}
.bbt em{width:90px; height:77px; display:block; text-align:center; line-height:77px; overflow:hidden;}
.bbt ul{ width:90px;}
.bbt ul li{ width:90px; height:90px; list-style:none; margin-top:5px; background-color:#0093a8; overflow:hidden}
.bbt ul li:hover{ width:90px; height:90px; list-style:none; cursor:pointer; overflow:hidden}
#menu .current{background-color:#b51c44;}
.bordd{border:1px solid #d5dce7; height:75px; width:190px; border-radius:3px; -moz-border-radius:3px; /* 老的 Firefox */ margin-top:15px; margin-left:5px; float:left; padding:10px 0px 0px 10px; margin-right:5px;}
.base{ width:1073px; margin:auto;}
.bordd dt{ float:left; width:60px; height:60px; padding-top:5px;}
.bordd dd strong{color:#4d4d4d;}
.bordd dd{ float:left; color:#aeadad; margin-left:10px; width:110px;}
.ykfg,.sysz{ border:solid 1px #b9b9b9; overflow:hidden; display:block; padding-left:15px; padding-bottom:25px; margin-top:10px;width:1050px;}
.ykfg em{ background:url(../images/gn_34.jpg) no-repeat; font-style:normal; font-size:14px; color:#0093a8; padding-left:30px; display:block; line-height:24px; margin-top:15px;}
.ykfg table .title{color: rgb(0, 147, 168);}
.ykfg .w1{width: 110px;}
.ykfg .w2{width: 315px;}
.ykfg .w3{width: 80px;}
.ykfg th{font: bold;font-size: 14px;}
.ykfg tr{height: 45px;}
.ykfg .status_off{background: url(../images/off.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg .status_on{background: url(../images/on.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg .default{background: url(../images/default.png) no-repeat;width: 61px;height: 22px;margin: 0 auto;}
.ykfg table{table-layout: fixed;word-break: break-all;margin-bottom: 40px;}
.ykfg .tleft{margin-top:10px;position: relative;left: 0;float: left;}
.ykfg .tright{margin-top: 10px;position: relative;left: 15px;float: left;}
.ykfg table,.ykfg tr,.ykfg th,.ykfg td{
border: 1px solid #b9b9b9;
text-align: center;
}
.ykfg table{
border-collapse: collapse;
}
.vipimgbig{ background:url(../images/img/vip.png) no-repeat;display: inline-block;
height: 14px;
margin: 0 0 0 6px;
position: relative;
top: 2px;
width: 38px;}
.vip-iconbig{ background-position: 0 0;}
.vip-iconbig0{ background-position: -14px -14px;}
.vip-iconbig1{ background-position: -14px -28px;}
.vip-iconbig2{ background-position: -14px -42px;}
.vip-iconbig3{ background-position: -14px -56px;}
.vip-iconbig4{ background-position: -14px -70px;}
.vip-iconbig5{ background-position: -14px -84px;}
.vip-iconbig6{ background-position: -14px -98px;}
.uname{margin-top:-20px;display: block;}
.sysz .cLineB{margin-top: 10px;}
.sysz .cLineB h4{font-size: 14px;}
.sysz .cLineB .right{font-size: 14px;color: #000;margin-right: 20px;}
.btnGrayS {
border:1px solid #3d810c;
box-shadow:0 1px #CCCCCC;
-moz-box-shadow:0 1px #CCCCCC;
-webkit-box-shadow:0 1px #CCCCCC;
cursor:pointer;
display:inline-block;
text-align:center;
vertical-align:bottom;
overflow:visible;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
*zoom:1;
background-color:#f1f1f1;
background-image: -webkit-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
background-image: -moz-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
background-image: -ms-linear-gradient(bottom, #CCC 0%, #E5E5E5 3%, #FFF 97%, #FFF 100%);
color:#000;
border:1px solid #AAA;
padding:2px 8px 2px 8px;
text-shadow: 0 1px #FFFFFF;font-size: 14px;
line-height: 1.5;
}
.btnGrayS:hover {
background: #E5E5E5;
background-image: -webkit-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
background-image: -moz-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
background-image: -ms-linear-gradient(bottom, #999 0%, #f2f2f2 3%, #FFF 97%, #FFF 100%);
text-decoration: none;
color:#000;
}
.btnGrayS:active {
background: #E5E5E5;
background-image: -webkit-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
background-image: -moz-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
background-image: -ms-linear-gradient(bottom, #999 0%, #fff 3%, #CCC 97%, #E5E5E5 100%);
text-decoration: none;
color:#000;
}
.bgfc{ background-color:#fcfcfc; padding:20px; border:1px solid #EEEEEE; border-top:0; margin-bottom:20px;}
.bgfc table,tr,td,th{border: 0;}
.bgfc td{text-align: left;}
.bgfc td,th{padding-top: 10px;}
.bgfc p, .bgfc table, .bgfc tr, .bgfc td, .bgfc th, .bgfc dl, .bgfc dt, .bgfc dd, .bgfc ol, .bgfc ul, .bgfc li, .bgfc input, .bgfc button, .bgfc select, .bgfc stextarea {
line-height:1.5;
}
.px, .pt {
padding: 5px;
}
.px, .pt, .ps, select {
background: url(../images/img/px.png) repeat-x scroll 0 0 #FFFFFF;
border-color: #848484 #E0E0E0 #E0E0E0 #848484;
border-style: solid;
border-width: 1px;
border-radius: 2px 2px 2px 2px;
}
.red {
color: rgb(255, 0, 0);
background-color: transparent;
border: 0px none;
}
input, textarea {
background: none repeat scroll 0% 0% rgb(255, 255, 255);
} | 0.222785 | 0.100172 |
@charset "utf-8";
/* CSS Document */
/*.content{ width:30%; height:90%;top:10%;position:absolute;background:#ebebeb;}*/
/*内容左边*/
.content{ float:left; width:20.6%; background:#b3b6b9;position:absolute;height:87.6%; left:0px;bottom:0px;top:6.2%; }
/*任务列表*/
.listli{ border-radius:5px; width:94%; background:#fff;border-bottom:10px solid #d9d9d9; padding:5px; overflow:hidden;margin:0px auto 8px auto;}
.listli:hover{ border-radius:5px; width:94%; background:#fff; border-bottom:10px solid #246fa8; padding:5px; overflow:hidden;margin:0px auto 8px auto;}
.llist_workname{ float:left; width:100%; height:32px; font-size:14px; color:#000; line-height:32px; }
.llist_workname p{ float:left; width:62%; font-size:14px; color:#000; line-height:32px; height:32px;overflow:hidden;}
.work_link{ float:left; width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#246fa8; border-radius:3px; margin-right:5px;margin-top:8px; }
.work_link:hover{ width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#419add; }
.work_open{ float:left; width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#ee861b; border-radius:3px; margin-right:5px; margin-top:8px; }
.work_open:hover{ width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#fda74f; }
.work_bewrite{ font-size:12px; color:#999999; height:28px; line-height:28px; overflow:hidden; width:86%; padding-left:30px;}
.list_number{ float:left; margin:5px; width:18px; height:18px; border:2px solid #d9d9d9; font-size:14px; color:#000000; border-radius:5px; text-align:center; line-height:14px;}
.work_author{width:100%;overflow:hidden;height:22px; line-height:22px;font-size:12px; color:#000000; float:left; clear:both;}
.work_author span{ margin-right:15px;}
.work_author span.wk_nm_photo{ float:left;width:22px; height:22px; font-size:14px; letter-spacing:1px; text-align:center; line-height:22px; overflow:hidden; color:#fff; background:#000000;color:#fff; border-radius:50%; margin-right:5px; margin-left:5px;}
.workpag{ width: 94%; margin: 15px auto;} | src/containers/usercontent/usercontent.css | @charset "utf-8";
/* CSS Document */
/*.content{ width:30%; height:90%;top:10%;position:absolute;background:#ebebeb;}*/
/*内容左边*/
.content{ float:left; width:20.6%; background:#b3b6b9;position:absolute;height:87.6%; left:0px;bottom:0px;top:6.2%; }
/*任务列表*/
.listli{ border-radius:5px; width:94%; background:#fff;border-bottom:10px solid #d9d9d9; padding:5px; overflow:hidden;margin:0px auto 8px auto;}
.listli:hover{ border-radius:5px; width:94%; background:#fff; border-bottom:10px solid #246fa8; padding:5px; overflow:hidden;margin:0px auto 8px auto;}
.llist_workname{ float:left; width:100%; height:32px; font-size:14px; color:#000; line-height:32px; }
.llist_workname p{ float:left; width:62%; font-size:14px; color:#000; line-height:32px; height:32px;overflow:hidden;}
.work_link{ float:left; width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#246fa8; border-radius:3px; margin-right:5px;margin-top:8px; }
.work_link:hover{ width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#419add; }
.work_open{ float:left; width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#ee861b; border-radius:3px; margin-right:5px; margin-top:8px; }
.work_open:hover{ width:34px; font-size:12px; color:#fff; line-height:18px; text-align:center; height:18px; background:#fda74f; }
.work_bewrite{ font-size:12px; color:#999999; height:28px; line-height:28px; overflow:hidden; width:86%; padding-left:30px;}
.list_number{ float:left; margin:5px; width:18px; height:18px; border:2px solid #d9d9d9; font-size:14px; color:#000000; border-radius:5px; text-align:center; line-height:14px;}
.work_author{width:100%;overflow:hidden;height:22px; line-height:22px;font-size:12px; color:#000000; float:left; clear:both;}
.work_author span{ margin-right:15px;}
.work_author span.wk_nm_photo{ float:left;width:22px; height:22px; font-size:14px; letter-spacing:1px; text-align:center; line-height:22px; overflow:hidden; color:#fff; background:#000000;color:#fff; border-radius:50%; margin-right:5px; margin-left:5px;}
.workpag{ width: 94%; margin: 15px auto;} | 0.395134 | 0.079246 |
position: relative;
margin: auto;
width: 855px;
height: 507px;
border: 2px solid #b31217;
right: 0px;
}
.videoButton {
background-color: #e5e5e5;
position: relative;
margin: auto;
color: #000000;
font-size: 20px;
width: 150px;
height: 150px;
text-align: center;
padding: 4px;
border: 2px solid #b31217;
border-radius: 2px;
}
.videoButton:hover {
border: 2px solid #e1171d;
cursor: pointer;
}
.videoButton:active {
border: 2px solid #6d0b0e;
cursor: pointer;
}
.mobileBump {
position: relative;
width: 100%;
left: 0px;
margin: 0px;
height: 35px;
}
#videoList {
position: relative;
width: 140px;
}
#videosCenter {
position: relative;
width: 100%;
left: 0px;
}
.videoSelectImg {
width: 100%;
height: 100%;
z-index: 0;
position: absolute;
top: 0px;
left: 0px;
}
.videoButton .whiteFront {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: #FFFFFF;
z-index: 1;
opacity: .2;
}
.videoButton:hover .whiteFront {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: #FFFFFF;
z-index: 1;
opacity: .5;
}
.videoButton .videoText {
position: absolute;
bottom: 22px;
font-size: 18px;
color: #FFFFFF;
z-index: 2;
width: 100%;
left: 0px;
text-align: center;
}
.videoButton:hover .videoText {
color: #000000;
}
#AboutSection {
margin-top: 60px;
}
#frontTopPush
{
position: relative;
width: 100%;
height: 35px;
}
.secondaryHeaderFront {
width: 90%;
left: 5%;
position: relative;
text-align: center;
}
.mobileNavHide {
display: none;
}
.frontSecondarySection {
position: relative;
margin-top: 45px;
}
.frontLabel {
position: relative;
left: 4%;
font-size: 16px;
font-family: 'Oswald', sans-serif;
}
.input-med {
position: relative;
left: 4%;
width: 92%;
border-radius: 1px;
margin-bottom: 16px;
}
#login-loader-mobile {
display: none;
z-index: 20;
}
.loaderPositionSetter {
position: absolute;
top: -40px;
left: 0px;
width: 100%;
} | www/css/mobile_page/front.css | position: relative;
margin: auto;
width: 855px;
height: 507px;
border: 2px solid #b31217;
right: 0px;
}
.videoButton {
background-color: #e5e5e5;
position: relative;
margin: auto;
color: #000000;
font-size: 20px;
width: 150px;
height: 150px;
text-align: center;
padding: 4px;
border: 2px solid #b31217;
border-radius: 2px;
}
.videoButton:hover {
border: 2px solid #e1171d;
cursor: pointer;
}
.videoButton:active {
border: 2px solid #6d0b0e;
cursor: pointer;
}
.mobileBump {
position: relative;
width: 100%;
left: 0px;
margin: 0px;
height: 35px;
}
#videoList {
position: relative;
width: 140px;
}
#videosCenter {
position: relative;
width: 100%;
left: 0px;
}
.videoSelectImg {
width: 100%;
height: 100%;
z-index: 0;
position: absolute;
top: 0px;
left: 0px;
}
.videoButton .whiteFront {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: #FFFFFF;
z-index: 1;
opacity: .2;
}
.videoButton:hover .whiteFront {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background-color: #FFFFFF;
z-index: 1;
opacity: .5;
}
.videoButton .videoText {
position: absolute;
bottom: 22px;
font-size: 18px;
color: #FFFFFF;
z-index: 2;
width: 100%;
left: 0px;
text-align: center;
}
.videoButton:hover .videoText {
color: #000000;
}
#AboutSection {
margin-top: 60px;
}
#frontTopPush
{
position: relative;
width: 100%;
height: 35px;
}
.secondaryHeaderFront {
width: 90%;
left: 5%;
position: relative;
text-align: center;
}
.mobileNavHide {
display: none;
}
.frontSecondarySection {
position: relative;
margin-top: 45px;
}
.frontLabel {
position: relative;
left: 4%;
font-size: 16px;
font-family: 'Oswald', sans-serif;
}
.input-med {
position: relative;
left: 4%;
width: 92%;
border-radius: 1px;
margin-bottom: 16px;
}
#login-loader-mobile {
display: none;
z-index: 20;
}
.loaderPositionSetter {
position: absolute;
top: -40px;
left: 0px;
width: 100%;
} | 0.429908 | 0.100569 |
input, button{
border:none;
outline: none;
background:none;
}
.cont{
overflow: hidden;
position: relative;
width: 900px;
height: 550px;
font-family: 'Nunito', sans-serif;
align-self: center;
}
.form{
position: relative;
width:640px;
height: 100%;
padding: 50px 30px;
}
h2{
width: 100%;
font-size:30px;
text-align: center;
}
label{
display:block;
width: 260px;
margin:25px auto;
text-align: center;
}
label span{
font-size:14px;
font-weight: 600;
color:#505f75;
text-transform: uppercase;
}
input{
display:block;
width: 100%;
text-align: center;
margin-top: 5px;
font-size:16px;
padding-bottom: 5px;
border-bottom: 1px solid black;
font-family: 'Nunito', sans-serif;
}
button{
display: block;
margin:0 auto;
width:260px;
height:36px;
border-radius: 30px;
color: white;
font-size:15px;
cursor: pointer;
}
.submit{
margin-top:40px;
margin-bottom:30px;
text-transform: uppercase;
font-weight: 600;
font-family: 'Nunito',sans-serif;
background: -webkit-linear-gradient(left,#7579ff,#b224ef);
}
.submit:hover{
background: -webkit-linear-gradient(left,#b224ef,#7579ff);
}
.forgot-pass{
margin-top:15px;
text-align:center;
font-size:14px;
font-weight:600;
color:#0c0101;
cursor: pointer;
}
.forgot-pass:hover{
color:red;
}
.sub-cont{
overflow: hidden;
position:absolute;
left: 640px;
top: 0;
width:900px;
height:100%;
padding-left: 260px;
background: #fff;
}
.img{
overflow: hidden;
z-index: 2;
position: absolute;
left: 0;
top: 0;
width:260px;
height:100%;
padding-top: 360px;
}
.img:before{
content: '';
position: absolute;
right: 0;
top: 0;
width: 900px;
height: 100%;
background-image:url(bg-image/bg.jpg) ;
background-size: cover;
}
.img:after{
content: '';
position: absolute;
left: 0;
top: 0;
width:100%;
height:100%;
background: rgba(0,0,0,0.3);
}
.img-text{
z-index: 2;
position: absolute;
left: 0;
top: 50px;
width: 100%;
padding: 0 20px;
text-align: center;
color: #fff;
}
.img-text h2{
margin-bottom:10px;
font-weight:normal;
}
.img-text p{
font-size:10px;
line-height:1.5;
}
.img-btn{
overflow: hidden;
z-index: 2;
position: relative;
width:100px;
height:36px;
margin:0 auto;
background:transparent;
color:#fff;
text-transform:uppercase;
font: size 15px;
cursor: pointer;
}
.img-btn:after{
content: '';
z-index: 2;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: 2px solid #fff;
border-radius:30px;
}
.img-btn span{
position: absolute;
left: 0;
top: 0;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
-webkit-transition:-webkit-transform 1.2s;
transition: transform 1.2s;
transition: transform 1.2s, -webkit-transform 1.2s;
} | public/css/login.css |
input, button{
border:none;
outline: none;
background:none;
}
.cont{
overflow: hidden;
position: relative;
width: 900px;
height: 550px;
font-family: 'Nunito', sans-serif;
align-self: center;
}
.form{
position: relative;
width:640px;
height: 100%;
padding: 50px 30px;
}
h2{
width: 100%;
font-size:30px;
text-align: center;
}
label{
display:block;
width: 260px;
margin:25px auto;
text-align: center;
}
label span{
font-size:14px;
font-weight: 600;
color:#505f75;
text-transform: uppercase;
}
input{
display:block;
width: 100%;
text-align: center;
margin-top: 5px;
font-size:16px;
padding-bottom: 5px;
border-bottom: 1px solid black;
font-family: 'Nunito', sans-serif;
}
button{
display: block;
margin:0 auto;
width:260px;
height:36px;
border-radius: 30px;
color: white;
font-size:15px;
cursor: pointer;
}
.submit{
margin-top:40px;
margin-bottom:30px;
text-transform: uppercase;
font-weight: 600;
font-family: 'Nunito',sans-serif;
background: -webkit-linear-gradient(left,#7579ff,#b224ef);
}
.submit:hover{
background: -webkit-linear-gradient(left,#b224ef,#7579ff);
}
.forgot-pass{
margin-top:15px;
text-align:center;
font-size:14px;
font-weight:600;
color:#0c0101;
cursor: pointer;
}
.forgot-pass:hover{
color:red;
}
.sub-cont{
overflow: hidden;
position:absolute;
left: 640px;
top: 0;
width:900px;
height:100%;
padding-left: 260px;
background: #fff;
}
.img{
overflow: hidden;
z-index: 2;
position: absolute;
left: 0;
top: 0;
width:260px;
height:100%;
padding-top: 360px;
}
.img:before{
content: '';
position: absolute;
right: 0;
top: 0;
width: 900px;
height: 100%;
background-image:url(bg-image/bg.jpg) ;
background-size: cover;
}
.img:after{
content: '';
position: absolute;
left: 0;
top: 0;
width:100%;
height:100%;
background: rgba(0,0,0,0.3);
}
.img-text{
z-index: 2;
position: absolute;
left: 0;
top: 50px;
width: 100%;
padding: 0 20px;
text-align: center;
color: #fff;
}
.img-text h2{
margin-bottom:10px;
font-weight:normal;
}
.img-text p{
font-size:10px;
line-height:1.5;
}
.img-btn{
overflow: hidden;
z-index: 2;
position: relative;
width:100px;
height:36px;
margin:0 auto;
background:transparent;
color:#fff;
text-transform:uppercase;
font: size 15px;
cursor: pointer;
}
.img-btn:after{
content: '';
z-index: 2;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border: 2px solid #fff;
border-radius:30px;
}
.img-btn span{
position: absolute;
left: 0;
top: 0;
display: -webkit-box;
display: flex;
-webkit-box-pack: center;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
-webkit-transition:-webkit-transform 1.2s;
transition: transform 1.2s;
transition: transform 1.2s, -webkit-transform 1.2s;
} | 0.476336 | 0.076373 |
.ls {
letter-spacing: .1em;
&--tight {
letter-spacing: -.05em;
}
&--compact {
letter-spacing: -.01em;
}
&--breathe {
letter-spacing: .03em;
}
&--heave {
letter-spacing: .06em;
}
&--stretch {
letter-spacing: .15em;
}
&--title-uppr {
letter-spacing: .02em;
}
}
@mixin atSmall {
.ls {
&-sm {
letter-spacing: .1em;
}
&--tight-sm {
letter-spacing: -.05em;
}
&--compact-sm {
letter-spacing: -.01em;
}
&--breathe-sm {
letter-spacing: .03em;
}
&--heave-sm {
letter-spacing: .06em;
}
&--stretch-sm {
letter-spacing: .15em;
}
}
}
@mixin atMedium {
.ls {
&-md {
letter-spacing: .1em;
}
&--tight-md {
letter-spacing: -.05em;
}
&--compact-md {
letter-spacing: -.01em;
}
&--breathe-md {
letter-spacing: .03em;
}
&--heave-md {
letter-spacing: .06em;
}
&--stretch-md {
letter-spacing: .15em;
}
}
}
@mixin atLarge {
.ls {
&-lg {
letter-spacing: .1em;
}
&--tight-lg {
letter-spacing: -.05em;
}
&--compact-lg {
letter-spacing: -.01em;
}
&--breathe-lg {
letter-spacing: .03em;
}
&--heave-lg {
letter-spacing: .06em;
}
&--stretch-lg {
letter-spacing: .15em;
}
}
}
@mixin atExLarge {
.ls {
&-xl {
letter-spacing: .1em;
}
&--tight-xl {
letter-spacing: -.05em;
}
&--compact-xl {
letter-spacing: -.01em;
}
&--breathe-xl {
letter-spacing: .03em;
}
&--heave-xl {
letter-spacing: .06em;
}
&--stretch-xl {
letter-spacing: .15em;
}
}
} | src/styles/helpers/_letter-spacing.css | .ls {
letter-spacing: .1em;
&--tight {
letter-spacing: -.05em;
}
&--compact {
letter-spacing: -.01em;
}
&--breathe {
letter-spacing: .03em;
}
&--heave {
letter-spacing: .06em;
}
&--stretch {
letter-spacing: .15em;
}
&--title-uppr {
letter-spacing: .02em;
}
}
@mixin atSmall {
.ls {
&-sm {
letter-spacing: .1em;
}
&--tight-sm {
letter-spacing: -.05em;
}
&--compact-sm {
letter-spacing: -.01em;
}
&--breathe-sm {
letter-spacing: .03em;
}
&--heave-sm {
letter-spacing: .06em;
}
&--stretch-sm {
letter-spacing: .15em;
}
}
}
@mixin atMedium {
.ls {
&-md {
letter-spacing: .1em;
}
&--tight-md {
letter-spacing: -.05em;
}
&--compact-md {
letter-spacing: -.01em;
}
&--breathe-md {
letter-spacing: .03em;
}
&--heave-md {
letter-spacing: .06em;
}
&--stretch-md {
letter-spacing: .15em;
}
}
}
@mixin atLarge {
.ls {
&-lg {
letter-spacing: .1em;
}
&--tight-lg {
letter-spacing: -.05em;
}
&--compact-lg {
letter-spacing: -.01em;
}
&--breathe-lg {
letter-spacing: .03em;
}
&--heave-lg {
letter-spacing: .06em;
}
&--stretch-lg {
letter-spacing: .15em;
}
}
}
@mixin atExLarge {
.ls {
&-xl {
letter-spacing: .1em;
}
&--tight-xl {
letter-spacing: -.05em;
}
&--compact-xl {
letter-spacing: -.01em;
}
&--breathe-xl {
letter-spacing: .03em;
}
&--heave-xl {
letter-spacing: .06em;
}
&--stretch-xl {
letter-spacing: .15em;
}
}
} | 0.789437 | 0.211946 |
/* ---------------------------- GENERAL STYLING ---------------------------- */
body{
width: 100%;
height: 100%;
font-family: 'Varela Round', sans-serif;
position: relative;
color: #2d2d2d;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
html {
width: 100%;
height: 100%;
}
h2{
font-family: 'Acme', sans-serif;
font-size: 3em;
}
h3{
color: #4a400d;
}
.orange-text{
color: #ff9a03;
}
.header-text{
padding-bottom: 40px;
}
.content-center{
display:flex;
flex-direction: column;
justify-content: center;
}
.btn-default{
color: #4d4d4d;
font-weight: 500;
}
.intro-section {
height: 100%;
padding-top: 70px;
}
.features-section {
height: 100%;
padding-top: 100px;
}
.team-section {
height: 100%;
padding-top: 100px;
}
/* ---------------------------- NAVBAR ---------------------------- */
.navbar-default .navbar-brand{
color: #ff9a03;
font-style: italic;
}
.navbar-default .navbar-brand:hover{
color: #ff9a03;
}
.navbar-static-top{
position: fixed;
width: 100%;
margin-bottom: 10px;
background-color: #fdfdfd;
}
.navbar-default.rollout {
-webkit-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
-moz-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
opacity: .9;
}
#navbar-menu {
text-transform: uppercase;
font-family: 'Varela Round', sans-serif;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus{
color: #ff9a03;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
color: #ff9a03;
border-bottom: 3px solid #ff9a03;
background-color: transparent;
}
/* ---------------------------- MAIN NAVBAR ---------------------------- */
#main-navbar{
z-index: 999;
}
/* ---------------------------- INTRO ---------------------------- */
#intro{
background: rgba(255,255,255,0);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,0)), color-stop(40%, rgba(255,255,255,0.4)), color-stop(100%, rgba(255,253,247,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
}
#title-gif {
margin-left: auto;
margin-right: auto;
margin-top: 60px;
margin-bottom: 20px;
width: 500px;
height: 500px;
background-image: url('../img/title_spritesheet.png');
-webkit-animation: play 2s steps(2) infinite;
-moz-animation: play 2s steps(2) infinite;
-ms-animation: play 2s steps(2) infinite;
-o-animation: play 2s steps(2) infinite;
animation: play 2s steps(2) infinite;
}
@-webkit-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-moz-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-ms-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-o-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
/* ---------------------------- NEWSLETTER SUBSCRIPTION ---------------------------- */
#newsletter-div{
background-color: ##fffdf7;
border-bottom: 1px solid #afafaf;
border-top: 1px solid #afafaf;
padding: 22px 0;
}
#newsletter-div p{
font-size: 1.2em;
font-weight: 400;
}
#form-div{
padding-top: 40px;
}
#subscribe-form{
vertical-align: inherit;
}
#feedback-text{
color: #4a400d;
text-align: center;
}
/* ---------------------------- ABOUT ---------------------------- */
.about-section {
height: 100%;
padding-top: 100px;
}
#about-div{
padding-top: 30px;
padding-bottom: 30px;
}
#about p{
font-size: 1.4em;
line-height: 30px;
padding-bottom: 10px;
}
/* ---------------------------- FEATURES ---------------------------- */
#features-div{
padding-bottom: 40px;
background: url('../img/temp-bg.png');
background-repeat: repeat;
margin-bottom: 0px;
}
#feature1{
color: #337ab7;
margin-top:0px;
}
#feature2{
color: #ff7f7f;
margin-top: 20px;
}
#feature3{
color: #25adbd;
margin-top: 20px;
}
/* ---------------------------- TEAM ---------------------------- */
#team-div{
padding-top: 30px;
padding-bottom: 30px;
}
.team-founder{
padding-bottom: 30px;
}
.team-profile{
text-align: center;
margin-bottom: 15px;
}
.founder-name{
font-size: 1.5em;
font-weight: 300;
margin-top: 20px;
margin-bottom: 20px;
}
.team-bio{
text-align: left;
line-height: 22px;
color: #4d4d4d;
}
/* ---------------------------- FEEDBACK ---------------------------- */
#feedback-div{
background-color: #f2f2f2;
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 0px;
color: #ffffff;
}
#feedback-text{
color: #2d2d2d;
}
/* ---------------------------- FOOTER ---------------------------- */
#footer-navbar{
bottom: 0;
width: 100%;
height: 50px;
background-color: #ffffff;
border-top: 1px solid #e7e7e7;
}
#footer-navbar a{
color: #999999;
font-family: 'Varela Round', sans-serif;
}
#footer-navbar a:hover{
color: #ffa200;
background-color: transparent;
}
#footer-navbar .navbar-right p{
margin: 0;
padding-top: 15px;
padding-bottom: 15px;
color: #999999;
}
/* ////////////////////////// RESPONSIVE ////////////////////////// */
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.col-sm-6{
padding-left: 45px;
padding-right: 45px;
}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
} | css/custom-style.css |
/* ---------------------------- GENERAL STYLING ---------------------------- */
body{
width: 100%;
height: 100%;
font-family: 'Varela Round', sans-serif;
position: relative;
color: #2d2d2d;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
user-select: none;
}
html {
width: 100%;
height: 100%;
}
h2{
font-family: 'Acme', sans-serif;
font-size: 3em;
}
h3{
color: #4a400d;
}
.orange-text{
color: #ff9a03;
}
.header-text{
padding-bottom: 40px;
}
.content-center{
display:flex;
flex-direction: column;
justify-content: center;
}
.btn-default{
color: #4d4d4d;
font-weight: 500;
}
.intro-section {
height: 100%;
padding-top: 70px;
}
.features-section {
height: 100%;
padding-top: 100px;
}
.team-section {
height: 100%;
padding-top: 100px;
}
/* ---------------------------- NAVBAR ---------------------------- */
.navbar-default .navbar-brand{
color: #ff9a03;
font-style: italic;
}
.navbar-default .navbar-brand:hover{
color: #ff9a03;
}
.navbar-static-top{
position: fixed;
width: 100%;
margin-bottom: 10px;
background-color: #fdfdfd;
}
.navbar-default.rollout {
-webkit-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
-moz-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 6px;
opacity: .9;
}
#navbar-menu {
text-transform: uppercase;
font-family: 'Varela Round', sans-serif;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus{
color: #ff9a03;
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus {
color: #ff9a03;
border-bottom: 3px solid #ff9a03;
background-color: transparent;
}
/* ---------------------------- MAIN NAVBAR ---------------------------- */
#main-navbar{
z-index: 999;
}
/* ---------------------------- INTRO ---------------------------- */
#intro{
background: rgba(255,255,255,0);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,0)), color-stop(40%, rgba(255,255,255,0.4)), color-stop(100%, rgba(255,253,247,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 40%, rgba(255,253,247,1) 100%);
}
#title-gif {
margin-left: auto;
margin-right: auto;
margin-top: 60px;
margin-bottom: 20px;
width: 500px;
height: 500px;
background-image: url('../img/title_spritesheet.png');
-webkit-animation: play 2s steps(2) infinite;
-moz-animation: play 2s steps(2) infinite;
-ms-animation: play 2s steps(2) infinite;
-o-animation: play 2s steps(2) infinite;
animation: play 2s steps(2) infinite;
}
@-webkit-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-moz-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-ms-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@-o-keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
@keyframes play {
from { background-position: 0px; }
to { background-position: -1000px; }
}
/* ---------------------------- NEWSLETTER SUBSCRIPTION ---------------------------- */
#newsletter-div{
background-color: ##fffdf7;
border-bottom: 1px solid #afafaf;
border-top: 1px solid #afafaf;
padding: 22px 0;
}
#newsletter-div p{
font-size: 1.2em;
font-weight: 400;
}
#form-div{
padding-top: 40px;
}
#subscribe-form{
vertical-align: inherit;
}
#feedback-text{
color: #4a400d;
text-align: center;
}
/* ---------------------------- ABOUT ---------------------------- */
.about-section {
height: 100%;
padding-top: 100px;
}
#about-div{
padding-top: 30px;
padding-bottom: 30px;
}
#about p{
font-size: 1.4em;
line-height: 30px;
padding-bottom: 10px;
}
/* ---------------------------- FEATURES ---------------------------- */
#features-div{
padding-bottom: 40px;
background: url('../img/temp-bg.png');
background-repeat: repeat;
margin-bottom: 0px;
}
#feature1{
color: #337ab7;
margin-top:0px;
}
#feature2{
color: #ff7f7f;
margin-top: 20px;
}
#feature3{
color: #25adbd;
margin-top: 20px;
}
/* ---------------------------- TEAM ---------------------------- */
#team-div{
padding-top: 30px;
padding-bottom: 30px;
}
.team-founder{
padding-bottom: 30px;
}
.team-profile{
text-align: center;
margin-bottom: 15px;
}
.founder-name{
font-size: 1.5em;
font-weight: 300;
margin-top: 20px;
margin-bottom: 20px;
}
.team-bio{
text-align: left;
line-height: 22px;
color: #4d4d4d;
}
/* ---------------------------- FEEDBACK ---------------------------- */
#feedback-div{
background-color: #f2f2f2;
padding-top: 20px;
padding-bottom: 20px;
margin-bottom: 0px;
color: #ffffff;
}
#feedback-text{
color: #2d2d2d;
}
/* ---------------------------- FOOTER ---------------------------- */
#footer-navbar{
bottom: 0;
width: 100%;
height: 50px;
background-color: #ffffff;
border-top: 1px solid #e7e7e7;
}
#footer-navbar a{
color: #999999;
font-family: 'Varela Round', sans-serif;
}
#footer-navbar a:hover{
color: #ffa200;
background-color: transparent;
}
#footer-navbar .navbar-right p{
margin: 0;
padding-top: 15px;
padding-bottom: 15px;
color: #999999;
}
/* ////////////////////////// RESPONSIVE ////////////////////////// */
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
.col-sm-6{
padding-left: 45px;
padding-right: 45px;
}
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
} | 0.291586 | 0.045841 |
p, small {
color: #616161;
}
/* Pricing table. */
.pricing-row {
display: flex;
flex-wrap: wrap;
margin: 50px 0;
justify-content: center;
align-items: center;
}
.pricing-col {
flex: 1;
margin: 10px;
text-align: center;
border-radius: 5px;
background-color: #ffffff;
min-width: 230px;
max-width: 350px;
}
.pricing-col__head {
padding: 10px;
padding-top: 20px;
}
.pricing-col__head h3 {
margin-bottom: 0;
color: #EB1F2E;
text-transform: uppercase;
}
.pricing-col__body {
padding: 30px 30px 10px 30px;
border-top: 1px solid #efefef;
font-size: 1.1em;
}
.pricing-col__body--price {
font-size: 2em;
line-height: 1.3em;
color: #EB1F2E;
font-weight: bold;
}
.pricing-col__body--price strike {
font-size: 0.75em;
color: #1e1e1e;
font-weight: normal;
}
.pricing-col__cta {
padding: 25px 20px;
border-top: 1px solid #efefef;
}
/* offers page. */
.offers-page th, .offers-page td {
text-align: center;
}
.offer-highlight {
background-color: #EB1F2E;
padding: 10px 20px;
color: #ffffff;
font-size: 1.2em;
box-shadow: 5px 5px 0px #9E1627;
}
.offer-title-highlight {
font-size: 1.5em;
color: #EB1F2E;
text-transform: uppercase;
margin-bottom: 15px;
font-weight: bold;
line-height: 1.25em;
}
.offers-page-hero {
padding: 160px 0;
background-position: bottom;
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
}
.offers-page-hero__wrapper {
width: 42%;
}
.banner-mobile {
display: none;
}
@media (max-width: 1200px) {
.offers-page-hero {
padding-top: 100px;
padding-bottom: 100px;
}
.offers-page-hero__wrapper {
width: 60%;
}
}
@media (max-width: 979px) {
.offers-page-hero {
padding-top: 100px;
padding-bottom: 100px;
}
.offers-page-hero__wrapper {
width: 60%;
}
}
@media (max-width: 480px) {
.offers-page-hero {
padding: 180px 0;
background-position: 90% bottom;
background-size: 230%;
background-repeat: no-repeat;
color: #ffffff;
padding-top: 70px;
padding-bottom: 350px;
background-color: #EB1F2E;
}
.offers-page-hero__wrapper {
width: 100%;
}
}
.offers-page-hero p {
font-size: 1.5em;
line-height: 1.3em;
margin-bottom: 0;
color: #ffffff;
margin-top: 0;
}
.offers-page-hero h1 {
font-size: 3.5em;
line-height: 1.1em;
margin-bottom: 15px;
}
.offers-page-intro {
padding: 100px 10%;
text-align: center;
background-size: contain;
background-position: center;
background-repeat: repeat;
}
.offers-page-intro .container {
background-color: #ffffff;
padding-top: 30px;
padding-bottom: 30px;
}
@media (max-width: 480px) {
.offers-page-intro {
padding: 100px 5%;
}
}
.offer-page-intro__wrapper {
/* padding: 50px; */
/* background-color: #ffffff; */
/* margin-right: auto;
border-radius: 20px; */
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.offer-page-intro__left, .offer-page-intro__right {
flex: 1;
}
.offer-page-intro__left {
text-align: left;
}
.offer-page-intro__left h2 {
font-size: 4em;
}
.offer-page-intro__left p {
font-size: 1.5em;
line-height: 1.25em;
}
.offers-page-intro .pricing-row {
margin-bottom: 20px;
}
.offers-page-intro .pricing-col {
border: 1px solid #efefef;
border-radius: 5px;
}
.offers-page-banner {
padding: 130px 0%;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: rgba(256, 256, 256, 0.75);
color: #EB1F2E;
background-blend-mode: overlay;
}
.offers-page-banner h2 {
margin-bottom: 0;
font-size: 3em;
}
.offers-page-exclusive {
padding: 100px 15%;
background-color: #efefef;
}
.offers-page-exclusive h2 {
text-align: center;
margin-bottom: 1.5em;
}
.offers-page-exclusive__contact {
text-align: center;
margin-top: 50px;
}
.offers-page-plans__items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 20px 0;
}
.offers-page-plans__item {
background-color: rgba(255, 255, 255, 0.25);
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
min-width: 300px;
max-width: 320px;
border-radius: 10px;
border: 1px solid #dddddd;
margin: 0 -0.5px;
background-color: #ffffff;
}
.offers-page-plans__item--title {
padding: 30px;
border-bottom: 1px solid #dddddd;
}
.offers-page-plans__item--title h3 {
margin-bottom: 0;
line-height: 1.25em;
font-size: 1.35em;
text-transform: uppercase;
letter-spacing: 0px;
}
.offers-page-plans__item--body {
padding: 20px 30px;
padding-bottom: 40px;
}
.offers-page-plans__item--cta {
padding: 30px;
border-top: 1px solid #ffdddd;
}
.offers-page-plans__item--price {
font-size: 34px;
font-weight: 600;
color: #EB1F2E;
}
.offers-page-facilities {
text-align: center;
padding-top: 70px;
padding-left: 5%;
padding-right: 5%;
}
.offers-page-facilities h3 {
font-size: 1.65em;
}
.offers-page-facilities .red {
font-size: 1.3em;
}
.offers-page-facilities__items {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: baseline
}
.offers-page-facilities__item {
flex: 1;
min-width: 120px;
padding: 10px;
}
.offers-page-facilities__item img {
filter: grayscale(100%);
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
margin-bottom: 10px;
}
.offers-page-facilities__item img:hover {
filter: grayscale(0%);
}
.offers-page-facilities__item p {
font-size: 17px;
line-height: 1.4;
}
.offers-page-one-pass {
padding: 100px 0;
}
.offers-page-one-pass .container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.offers-page-one-pass__left, .offers-page-one-pass__right {
flex: 3;
min-width: 350px;
}
.offers-page-one-pass__left {
flex: 2;
text-align: center;
}
.offers-page-one-pass__right h3 {
margin-bottom: 30px;
text-align: center;
}
.offers-page-one-pass__items {
display: flex;
flex-wrap: wrap;
}
.offers-page-one-pass__item {
padding: 10px 25px;
flex: 1;
text-align: center;
/* border-right: 1px solid #EB1F2E; */
}
.offers-page-one-pass__item p {
margin-bottom: 0;
}
.offers-page-one-pass__item img {
margin: 0;
height: 70px;
width: 70px;
padding: 5px;
border-radius: 50%;
border: 1px solid #EB1F2E;
}
.offers-page-one-pass__item:last-child {
border: none;
}
.white-line {
/* border-bottom: 1px solid #EB1F2E; */
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
}
.offers-page-advantages {
padding-bottom: 90px;
text-align: center;
}
.offers-page-advantages__items {
display: flex;
flex-wrap: wrap;
padding-top: 50px;
padding-bottom: 30px;
padding-left: 5%;
padding-right: 5%;
}
.offers-page-advantages__item {
flex: 1;
padding-right: 20px;
padding-left: 20px;
min-width: 280px;
}
.offers-page-advantages__item h3 {
font-size: 1.25em;
margin-bottom: 15px;
}
.offers-page-advantages__item img {
width: 70px;
border-radius: 50%;
border: 1px solid #EB1F2E;
padding: 5px;
margin-bottom: 10px;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 15%;
padding-right: 15%;
margin-left: 15%;
margin-right: 15%;
padding-bottom: 50px;
background-color: #f2f2f2;
border: 1px solid #efefef;
border-radius: 20px;
box-shadow: 2px 8px 1px -5px rgba(0, 0, 0, 0.15);
}
.offers-page-advantages__join p {
line-height: 1.3em;
margin-bottom: 10px;
}
.offers-page-advantages__join img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 1px solid #EB1F2E;
padding: 5px;
margin-bottom: 15px;
}
.pre-book-float-btn {
position: fixed;
bottom: 10px;
right: 30px;
/* -webkit-animation-name: menuanimate;
-webkit-animation-duration: 0.25s; */
animation-name: menuanimate;
animation-duration: 0.25s;
}
/*
@-webkit-keyframes menuanimate {
from {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
to {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
} */
@keyframes menuanimate {
from {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
to {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@media (max-width: 480px) {
.pre-book-float-btn {
position: fixed;
bottom: 10px;
right: 5%;
width: 85%;
text-align: center;
}
}
@media (max-width: 979px) {
.offers-page-one-pass__item {
padding: 25px;
flex: 50%;
text-align: center;
border-right: 1px solid #EB1F2E;
margin-bottom: 20px;
}
.offers-page-one-pass__item:nth-child(2) {
border: none;
}
.white-line {
display: none;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 15%;
padding-right: 15%;
}
}
.offers-page-one-pass__more {
text-align: right;
font-size: 1.23em;
margin-top: 0px;
}
.offers-page-share {
padding: 100px 0;
background-color: #efefef;
}
@media (max-width: 979px) {
.offers-page-exclusive {
padding: 100px 10%;
background-color: #efefef;
}
}
@media (max-width: 767px) {
.offers-page-hero__wrapper {
width: 75%;
padding-left: 3%;
padding-right: 3%;
}
.offers-page-hero h1 {
font-size: 2.75em;
}
.offer-page-intro__left h2 {
font-size: 3.5em;
}
.offers-page-banner {
padding: 100px 5%;
}
.offers-page-exclusive {
padding: 100px 5%;
background-color: #efefef;
}
.offers-page-plans__item {
margin-top: -1px;
}
.offers-page-plans__items {
margin-bottom: 10px;
}
}
@media (max-width: 480px) {
.banner-mobile {
margin-top: 30px;
display: block;
width: 100%;
}
.offers-page-hero__wrapper {
width: 100%;
}
.offers-page-hero h1 {
font-size: 2em;
}
.offer-page-intro__left h2 {
font-size: 3em;
}
.offers-page-exclusive {
padding: 100px 0%;
background-color: #efefef;
}
.offers-page-plans__item {
margin: 10px;
}
.offers-page-advantages__items {
padding-top: 0px;
}
.offers-page-advantages__item {
text-align: center;
padding-right: 0;
}
.offers-page-advantages__item img {
width: 100px;
margin-top: 50px;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 30px;
padding-right: 30px;
margin-left: 5%;
margin-right: 5%;
}
.offers-page-advantages__join img {
width: 100px;
height: 100px;
}
}
/* Modal */
.workplace-modalbg {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.75);
z-index: 999;
-webkit-animation-name: headeranimbg;
animation-name: headeranimbg;
-webkit-animation-duration: 200ms;
animation-duration: 200ms;
display: none;
}
.workplace-modal {
position: absolute;
top: 50px;
border-radius: 3px;
background-color: #ffffff;
margin: auto;
width: 50%;
left: 25%;
-webkit-animation-name: headeranim;
animation-name: headeranim;
-webkit-animation-duration: 200ms;
animation-duration: 200ms;
}
.workplace-modal__title {
padding: 20px;
border-bottom: 1px solid #dddddd;
padding-right: 50px;
}
.workplace-modal__title h3 {
margin-bottom: 0;
font-size: 1.5em;
}
.workplace-modal__form {
padding: 20px;
}
.modal-close {
position: absolute;
top: 25px;
right: 25px;
cursor: pointer;
font-weight: bold;
}
@media (max-width: 979px) {
.workplace-modal {
top: 50px;
width: 60%;
left: 20%;
}
}
@media (max-width: 767px) {
.workplace-modal {
top: 100px;
width: 70%;
left: 15%;
}
}
@media (max-width: 480px) {
.workplace-modal {
top: 100px;
width: 80%;
left: 10%;
}
}
.down-arrow {
margin-right: 10px;
vertical-align: middle;
animation-name: animatearrow;
animation-duration: 0.5s;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@keyframes animatearrow {
from {
transform: translateY(-3px);
}
to {
transform: translateY(3px);
}
}
.footer-contact-links {
margin-bottom: 15px;
color: #9c9c9c;
line-height: 2em;
}
.footer-contact-links a {
color: #9c9c9c;
margin-right: 10px;
margin-left: 10px;
padding: 5px 10px;
border: 1px solid #444444;
border-radius: 5px;
}
.footer-contact-links a:hover {
border: 1px solid #9c9c9c;
}
.button-greyed {
background-color: #9c9c9c !important;
}
.button-greyed:hover,
.button-greyed:focus {
-webkit-transform: translateY(0px);
transform: translateY(0px);
background-color: #9c9c9c;
-webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
border-bottom-width: 0;
}
.offer-closed {
position: relative;
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-top: 50px;
}
.offer-closed::before {
position: absolute;
width: 101%;
height: 30px;
top: -25px;
left: -2px;
padding-top: 2px;
content: 'Sold Out';
background-color: #EB1F2E;
color: #ffffff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-top: 1px solid #cccccc;
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc;
}
.offer-page-last-chance {
padding-top: 25px;
padding-bottom: 25px;
}
.offer-page-last-chance h3:first {
margin-bottom: 30px;
} | src/css/offer.css |
p, small {
color: #616161;
}
/* Pricing table. */
.pricing-row {
display: flex;
flex-wrap: wrap;
margin: 50px 0;
justify-content: center;
align-items: center;
}
.pricing-col {
flex: 1;
margin: 10px;
text-align: center;
border-radius: 5px;
background-color: #ffffff;
min-width: 230px;
max-width: 350px;
}
.pricing-col__head {
padding: 10px;
padding-top: 20px;
}
.pricing-col__head h3 {
margin-bottom: 0;
color: #EB1F2E;
text-transform: uppercase;
}
.pricing-col__body {
padding: 30px 30px 10px 30px;
border-top: 1px solid #efefef;
font-size: 1.1em;
}
.pricing-col__body--price {
font-size: 2em;
line-height: 1.3em;
color: #EB1F2E;
font-weight: bold;
}
.pricing-col__body--price strike {
font-size: 0.75em;
color: #1e1e1e;
font-weight: normal;
}
.pricing-col__cta {
padding: 25px 20px;
border-top: 1px solid #efefef;
}
/* offers page. */
.offers-page th, .offers-page td {
text-align: center;
}
.offer-highlight {
background-color: #EB1F2E;
padding: 10px 20px;
color: #ffffff;
font-size: 1.2em;
box-shadow: 5px 5px 0px #9E1627;
}
.offer-title-highlight {
font-size: 1.5em;
color: #EB1F2E;
text-transform: uppercase;
margin-bottom: 15px;
font-weight: bold;
line-height: 1.25em;
}
.offers-page-hero {
padding: 160px 0;
background-position: bottom;
background-size: cover;
background-repeat: no-repeat;
color: #ffffff;
}
.offers-page-hero__wrapper {
width: 42%;
}
.banner-mobile {
display: none;
}
@media (max-width: 1200px) {
.offers-page-hero {
padding-top: 100px;
padding-bottom: 100px;
}
.offers-page-hero__wrapper {
width: 60%;
}
}
@media (max-width: 979px) {
.offers-page-hero {
padding-top: 100px;
padding-bottom: 100px;
}
.offers-page-hero__wrapper {
width: 60%;
}
}
@media (max-width: 480px) {
.offers-page-hero {
padding: 180px 0;
background-position: 90% bottom;
background-size: 230%;
background-repeat: no-repeat;
color: #ffffff;
padding-top: 70px;
padding-bottom: 350px;
background-color: #EB1F2E;
}
.offers-page-hero__wrapper {
width: 100%;
}
}
.offers-page-hero p {
font-size: 1.5em;
line-height: 1.3em;
margin-bottom: 0;
color: #ffffff;
margin-top: 0;
}
.offers-page-hero h1 {
font-size: 3.5em;
line-height: 1.1em;
margin-bottom: 15px;
}
.offers-page-intro {
padding: 100px 10%;
text-align: center;
background-size: contain;
background-position: center;
background-repeat: repeat;
}
.offers-page-intro .container {
background-color: #ffffff;
padding-top: 30px;
padding-bottom: 30px;
}
@media (max-width: 480px) {
.offers-page-intro {
padding: 100px 5%;
}
}
.offer-page-intro__wrapper {
/* padding: 50px; */
/* background-color: #ffffff; */
/* margin-right: auto;
border-radius: 20px; */
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.offer-page-intro__left, .offer-page-intro__right {
flex: 1;
}
.offer-page-intro__left {
text-align: left;
}
.offer-page-intro__left h2 {
font-size: 4em;
}
.offer-page-intro__left p {
font-size: 1.5em;
line-height: 1.25em;
}
.offers-page-intro .pricing-row {
margin-bottom: 20px;
}
.offers-page-intro .pricing-col {
border: 1px solid #efefef;
border-radius: 5px;
}
.offers-page-banner {
padding: 130px 0%;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: rgba(256, 256, 256, 0.75);
color: #EB1F2E;
background-blend-mode: overlay;
}
.offers-page-banner h2 {
margin-bottom: 0;
font-size: 3em;
}
.offers-page-exclusive {
padding: 100px 15%;
background-color: #efefef;
}
.offers-page-exclusive h2 {
text-align: center;
margin-bottom: 1.5em;
}
.offers-page-exclusive__contact {
text-align: center;
margin-top: 50px;
}
.offers-page-plans__items {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
margin: 20px 0;
}
.offers-page-plans__item {
background-color: rgba(255, 255, 255, 0.25);
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
min-width: 300px;
max-width: 320px;
border-radius: 10px;
border: 1px solid #dddddd;
margin: 0 -0.5px;
background-color: #ffffff;
}
.offers-page-plans__item--title {
padding: 30px;
border-bottom: 1px solid #dddddd;
}
.offers-page-plans__item--title h3 {
margin-bottom: 0;
line-height: 1.25em;
font-size: 1.35em;
text-transform: uppercase;
letter-spacing: 0px;
}
.offers-page-plans__item--body {
padding: 20px 30px;
padding-bottom: 40px;
}
.offers-page-plans__item--cta {
padding: 30px;
border-top: 1px solid #ffdddd;
}
.offers-page-plans__item--price {
font-size: 34px;
font-weight: 600;
color: #EB1F2E;
}
.offers-page-facilities {
text-align: center;
padding-top: 70px;
padding-left: 5%;
padding-right: 5%;
}
.offers-page-facilities h3 {
font-size: 1.65em;
}
.offers-page-facilities .red {
font-size: 1.3em;
}
.offers-page-facilities__items {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: baseline
}
.offers-page-facilities__item {
flex: 1;
min-width: 120px;
padding: 10px;
}
.offers-page-facilities__item img {
filter: grayscale(100%);
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
margin-bottom: 10px;
}
.offers-page-facilities__item img:hover {
filter: grayscale(0%);
}
.offers-page-facilities__item p {
font-size: 17px;
line-height: 1.4;
}
.offers-page-one-pass {
padding: 100px 0;
}
.offers-page-one-pass .container {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.offers-page-one-pass__left, .offers-page-one-pass__right {
flex: 3;
min-width: 350px;
}
.offers-page-one-pass__left {
flex: 2;
text-align: center;
}
.offers-page-one-pass__right h3 {
margin-bottom: 30px;
text-align: center;
}
.offers-page-one-pass__items {
display: flex;
flex-wrap: wrap;
}
.offers-page-one-pass__item {
padding: 10px 25px;
flex: 1;
text-align: center;
/* border-right: 1px solid #EB1F2E; */
}
.offers-page-one-pass__item p {
margin-bottom: 0;
}
.offers-page-one-pass__item img {
margin: 0;
height: 70px;
width: 70px;
padding: 5px;
border-radius: 50%;
border: 1px solid #EB1F2E;
}
.offers-page-one-pass__item:last-child {
border: none;
}
.white-line {
/* border-bottom: 1px solid #EB1F2E; */
width: 100%;
margin-top: 20px;
margin-bottom: 20px;
}
.offers-page-advantages {
padding-bottom: 90px;
text-align: center;
}
.offers-page-advantages__items {
display: flex;
flex-wrap: wrap;
padding-top: 50px;
padding-bottom: 30px;
padding-left: 5%;
padding-right: 5%;
}
.offers-page-advantages__item {
flex: 1;
padding-right: 20px;
padding-left: 20px;
min-width: 280px;
}
.offers-page-advantages__item h3 {
font-size: 1.25em;
margin-bottom: 15px;
}
.offers-page-advantages__item img {
width: 70px;
border-radius: 50%;
border: 1px solid #EB1F2E;
padding: 5px;
margin-bottom: 10px;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 15%;
padding-right: 15%;
margin-left: 15%;
margin-right: 15%;
padding-bottom: 50px;
background-color: #f2f2f2;
border: 1px solid #efefef;
border-radius: 20px;
box-shadow: 2px 8px 1px -5px rgba(0, 0, 0, 0.15);
}
.offers-page-advantages__join p {
line-height: 1.3em;
margin-bottom: 10px;
}
.offers-page-advantages__join img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 1px solid #EB1F2E;
padding: 5px;
margin-bottom: 15px;
}
.pre-book-float-btn {
position: fixed;
bottom: 10px;
right: 30px;
/* -webkit-animation-name: menuanimate;
-webkit-animation-duration: 0.25s; */
animation-name: menuanimate;
animation-duration: 0.25s;
}
/*
@-webkit-keyframes menuanimate {
from {
opacity: 0;
-webkit-transform: translateY(-20px);
transform: translateY(-20px);
}
to {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
} */
@keyframes menuanimate {
from {
opacity: 0;
-webkit-transform: translateY(20px);
transform: translateY(20px);
}
to {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px);
}
}
@media (max-width: 480px) {
.pre-book-float-btn {
position: fixed;
bottom: 10px;
right: 5%;
width: 85%;
text-align: center;
}
}
@media (max-width: 979px) {
.offers-page-one-pass__item {
padding: 25px;
flex: 50%;
text-align: center;
border-right: 1px solid #EB1F2E;
margin-bottom: 20px;
}
.offers-page-one-pass__item:nth-child(2) {
border: none;
}
.white-line {
display: none;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 15%;
padding-right: 15%;
}
}
.offers-page-one-pass__more {
text-align: right;
font-size: 1.23em;
margin-top: 0px;
}
.offers-page-share {
padding: 100px 0;
background-color: #efefef;
}
@media (max-width: 979px) {
.offers-page-exclusive {
padding: 100px 10%;
background-color: #efefef;
}
}
@media (max-width: 767px) {
.offers-page-hero__wrapper {
width: 75%;
padding-left: 3%;
padding-right: 3%;
}
.offers-page-hero h1 {
font-size: 2.75em;
}
.offer-page-intro__left h2 {
font-size: 3.5em;
}
.offers-page-banner {
padding: 100px 5%;
}
.offers-page-exclusive {
padding: 100px 5%;
background-color: #efefef;
}
.offers-page-plans__item {
margin-top: -1px;
}
.offers-page-plans__items {
margin-bottom: 10px;
}
}
@media (max-width: 480px) {
.banner-mobile {
margin-top: 30px;
display: block;
width: 100%;
}
.offers-page-hero__wrapper {
width: 100%;
}
.offers-page-hero h1 {
font-size: 2em;
}
.offer-page-intro__left h2 {
font-size: 3em;
}
.offers-page-exclusive {
padding: 100px 0%;
background-color: #efefef;
}
.offers-page-plans__item {
margin: 10px;
}
.offers-page-advantages__items {
padding-top: 0px;
}
.offers-page-advantages__item {
text-align: center;
padding-right: 0;
}
.offers-page-advantages__item img {
width: 100px;
margin-top: 50px;
}
.offers-page-advantages__join {
padding-top: 50px;
padding-left: 30px;
padding-right: 30px;
margin-left: 5%;
margin-right: 5%;
}
.offers-page-advantages__join img {
width: 100px;
height: 100px;
}
}
/* Modal */
.workplace-modalbg {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100vw;
height: 100vh;
background-color: rgba(0, 0, 0, 0.75);
z-index: 999;
-webkit-animation-name: headeranimbg;
animation-name: headeranimbg;
-webkit-animation-duration: 200ms;
animation-duration: 200ms;
display: none;
}
.workplace-modal {
position: absolute;
top: 50px;
border-radius: 3px;
background-color: #ffffff;
margin: auto;
width: 50%;
left: 25%;
-webkit-animation-name: headeranim;
animation-name: headeranim;
-webkit-animation-duration: 200ms;
animation-duration: 200ms;
}
.workplace-modal__title {
padding: 20px;
border-bottom: 1px solid #dddddd;
padding-right: 50px;
}
.workplace-modal__title h3 {
margin-bottom: 0;
font-size: 1.5em;
}
.workplace-modal__form {
padding: 20px;
}
.modal-close {
position: absolute;
top: 25px;
right: 25px;
cursor: pointer;
font-weight: bold;
}
@media (max-width: 979px) {
.workplace-modal {
top: 50px;
width: 60%;
left: 20%;
}
}
@media (max-width: 767px) {
.workplace-modal {
top: 100px;
width: 70%;
left: 15%;
}
}
@media (max-width: 480px) {
.workplace-modal {
top: 100px;
width: 80%;
left: 10%;
}
}
.down-arrow {
margin-right: 10px;
vertical-align: middle;
animation-name: animatearrow;
animation-duration: 0.5s;
animation-direction: alternate;
animation-iteration-count: infinite;
}
@keyframes animatearrow {
from {
transform: translateY(-3px);
}
to {
transform: translateY(3px);
}
}
.footer-contact-links {
margin-bottom: 15px;
color: #9c9c9c;
line-height: 2em;
}
.footer-contact-links a {
color: #9c9c9c;
margin-right: 10px;
margin-left: 10px;
padding: 5px 10px;
border: 1px solid #444444;
border-radius: 5px;
}
.footer-contact-links a:hover {
border: 1px solid #9c9c9c;
}
.button-greyed {
background-color: #9c9c9c !important;
}
.button-greyed:hover,
.button-greyed:focus {
-webkit-transform: translateY(0px);
transform: translateY(0px);
background-color: #9c9c9c;
-webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.35);
border-bottom-width: 0;
}
.offer-closed {
position: relative;
border-top-left-radius: 0;
border-top-right-radius: 0;
margin-top: 50px;
}
.offer-closed::before {
position: absolute;
width: 101%;
height: 30px;
top: -25px;
left: -2px;
padding-top: 2px;
content: 'Sold Out';
background-color: #EB1F2E;
color: #ffffff;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-top: 1px solid #cccccc;
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc;
}
.offer-page-last-chance {
padding-top: 25px;
padding-bottom: 25px;
}
.offer-page-last-chance h3:first {
margin-bottom: 30px;
} | 0.28887 | 0.061706 |
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
font-size: 16px;
}
:active {
/* Removes the overlaying (blue) highlight box on mobile
See https://stackoverflow.com/a/45050338/12695621 */
-webkit-tap-highlight-color: transparent;
}
}
@layer components {
/* See https://css-tricks.com/custom-styling-form-inputs-with-modern-css-features/ */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
.ThreeSwitch {
@apply flex items-center justify-between w-[4.5rem] rounded-2xl p-1.5;
@apply theme-1:bg-very-dark-desat-blue-2 theme-2:bg-grayish-red theme-3:bg-very-dark-violet-2;
}
.ThreeSwitch input[type="radio"] {
@apply appearance-none block h-4 w-4 rounded-full;
@apply motion-safe:transition motion-safe:duration-200;
}
.ThreeSwitch input[type="radio"]:checked {
@apply theme-1:bg-red theme-2:bg-orange theme-3:bg-pure-cyan;
}
}
.Key {
@apply inline-block p-2 pt-4 rounded-md uppercase border-b-[5px] select-none;
@apply theme-1:text-very-dark-grayish-blue theme-1:bg-light-grayish-orange theme-1:border-grayish-orange;
@apply theme-2:text-very-dark-grayish-blue theme-2:bg-light-grayish-yellow theme-2:border-dark-grayish-orange;
@apply theme-3:text-light-yellow theme-3:bg-very-dark-violet-3 theme-3:border-dark-magenta;
}
.Key:hover,
.Key:active {
@apply theme-1:bg-grayish-orange;
@apply theme-2:bg-dark-grayish-orange;
@apply theme-3:bg-dark-magenta;
}
.Key:focus {
@apply outline-none ring;
@apply theme-1:ring-light-grayish-orange;
@apply theme-2:ring-dark-grayish-orange;
@apply theme-3:ring-vivid-magenta;
}
.Key--primary {
@apply theme-1:text-white theme-1:bg-desat-dark-blue-1 theme-1:border-desat-dark-blue-2;
@apply theme-2:text-white theme-2:bg-dark-mod-cyan theme-2:border-very-dark-cyan;
@apply theme-3:text-white theme-3:bg-dark-violet theme-3:border-vivid-magenta;
}
.Key--primary:hover,
.Key--primary:active {
@apply theme-1:bg-desat-dark-blue-2;
@apply theme-2:bg-very-dark-cyan;
@apply theme-3:bg-vivid-magenta;
}
.Key--accent {
@apply theme-1:text-white theme-1:bg-red theme-1:border-dark-red;
@apply theme-2:text-white theme-2:bg-orange theme-2:border-dark-orange;
@apply theme-3:text-very-dark-blue theme-3:bg-pure-cyan theme-3:border-soft-cyan;
}
.Key--accent:hover,
.Key--accent:active {
@apply theme-1:bg-dark-red;
@apply theme-2:bg-dark-orange;
@apply theme-3:bg-soft-cyan;
}
.Key--text {
@apply text-base;
}
}
@layer utilities {
} | 12-calculator-app-main/main.css | @tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
:root {
font-size: 16px;
}
:active {
/* Removes the overlaying (blue) highlight box on mobile
See https://stackoverflow.com/a/45050338/12695621 */
-webkit-tap-highlight-color: transparent;
}
}
@layer components {
/* See https://css-tricks.com/custom-styling-form-inputs-with-modern-css-features/ */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
.ThreeSwitch {
@apply flex items-center justify-between w-[4.5rem] rounded-2xl p-1.5;
@apply theme-1:bg-very-dark-desat-blue-2 theme-2:bg-grayish-red theme-3:bg-very-dark-violet-2;
}
.ThreeSwitch input[type="radio"] {
@apply appearance-none block h-4 w-4 rounded-full;
@apply motion-safe:transition motion-safe:duration-200;
}
.ThreeSwitch input[type="radio"]:checked {
@apply theme-1:bg-red theme-2:bg-orange theme-3:bg-pure-cyan;
}
}
.Key {
@apply inline-block p-2 pt-4 rounded-md uppercase border-b-[5px] select-none;
@apply theme-1:text-very-dark-grayish-blue theme-1:bg-light-grayish-orange theme-1:border-grayish-orange;
@apply theme-2:text-very-dark-grayish-blue theme-2:bg-light-grayish-yellow theme-2:border-dark-grayish-orange;
@apply theme-3:text-light-yellow theme-3:bg-very-dark-violet-3 theme-3:border-dark-magenta;
}
.Key:hover,
.Key:active {
@apply theme-1:bg-grayish-orange;
@apply theme-2:bg-dark-grayish-orange;
@apply theme-3:bg-dark-magenta;
}
.Key:focus {
@apply outline-none ring;
@apply theme-1:ring-light-grayish-orange;
@apply theme-2:ring-dark-grayish-orange;
@apply theme-3:ring-vivid-magenta;
}
.Key--primary {
@apply theme-1:text-white theme-1:bg-desat-dark-blue-1 theme-1:border-desat-dark-blue-2;
@apply theme-2:text-white theme-2:bg-dark-mod-cyan theme-2:border-very-dark-cyan;
@apply theme-3:text-white theme-3:bg-dark-violet theme-3:border-vivid-magenta;
}
.Key--primary:hover,
.Key--primary:active {
@apply theme-1:bg-desat-dark-blue-2;
@apply theme-2:bg-very-dark-cyan;
@apply theme-3:bg-vivid-magenta;
}
.Key--accent {
@apply theme-1:text-white theme-1:bg-red theme-1:border-dark-red;
@apply theme-2:text-white theme-2:bg-orange theme-2:border-dark-orange;
@apply theme-3:text-very-dark-blue theme-3:bg-pure-cyan theme-3:border-soft-cyan;
}
.Key--accent:hover,
.Key--accent:active {
@apply theme-1:bg-dark-red;
@apply theme-2:bg-dark-orange;
@apply theme-3:bg-soft-cyan;
}
.Key--text {
@apply text-base;
}
}
@layer utilities {
} | 0.512693 | 0.079424 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(120deg,#ffffff, #d3cecd);
color: rgb(77, 77, 77);
font-family: "poppins", "sans serif";
min-height: 100vh;
}
header{
font-size: 1.5rem;
}
i,
svg {
pointer-events: none;
}
.type{
width: 150px;
}
.kick-pad,
.snare-pad,
.hihat-pad {
width: 3rem;
height: 3rem;
margin: 1rem 0.5rem;
cursor: pointer;
}
.kick-pad{
background: rgb(160,211, 224);
}
.snare-pad{
background: rgb(209, 160, 224);
}
.hihat-pad {
background: rgb(224, 199, 160);
}
.kick-pad.active {
background: rgb(60, 183, 214);
}
.snare-pad.active {
background: rgb(184, 76, 218);
}
.hihat-pad.active {
background: rgb(224, 157, 50);
}
.sequencer {
display: flex;
min-height: 100vh;
width: 100vh;
flex-direction: column;
align-items: center;
justify-content: center;
}
.kick-track,
.snare-track,
.hihat-track {
display: flex;
align-items: center;
width: 70%;
justify-content: space-between;
margin-top: 5rem;
}
.kick,
.snare,
.hihat {
display: flex;
}
.controls {
display: flex;
justify-content: space-between;
align-items: center;
flex: 1;
margin: 0rem 2rem;
}
.controls button {
padding: 1rem;
border: none;
background: #3f3f3f;
color: white;
cursor: pointer;
transition: all 0.5s ease;
}
.mute.active {
background: lightgray;
}
.tempo {
margin: 3rem;
width: 30%;
}
input[type=range]{
-webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 5px;
border: none;
border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 12px;
width: 12px;
border-radius: 50%;
border: #3f3f3f solid 1px;
background: rgb(255, 255, 255);
margin-top: -4px;
}
input[type=range]:focus {
outline: none;
}
.tempo-slider{
padding: 0.2rem;
-webkit-appearance: none;
margin: 1rem 0rem;
width: 100%;
position: relative;
background: rgb(160, 160, 160);
cursor: pointer;
border-radius: 0.8rem;
}
.tempo p {
font-size: 1.5rem;
margin: 2rem;
text-align: center;
}
.pad {
transition: all 0.5s ease;
border-radius: 50%;
-moz-border-radius:50%;
-webkit-border-radius: 50%;
}
.play {
padding: 0.5rem 2rem;
font-size: 1.5rem;
color: white;
background-image: linear-gradient(150deg, #db5353, #8d2f2f);
border-radius: 4px;
border: none;
cursor: pointer;
margin-top: 3rem;
}
select {
padding: 0.8rem;
margin: 0 1rem;
width: 150px;
font-size: 0.8rem;
}
@keyframes playTrack {
from{
transform: scale(1);
}to{
transform: scale(1.2);
}
} | app/public/formation_js/beatmaker/style.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-image: linear-gradient(120deg,#ffffff, #d3cecd);
color: rgb(77, 77, 77);
font-family: "poppins", "sans serif";
min-height: 100vh;
}
header{
font-size: 1.5rem;
}
i,
svg {
pointer-events: none;
}
.type{
width: 150px;
}
.kick-pad,
.snare-pad,
.hihat-pad {
width: 3rem;
height: 3rem;
margin: 1rem 0.5rem;
cursor: pointer;
}
.kick-pad{
background: rgb(160,211, 224);
}
.snare-pad{
background: rgb(209, 160, 224);
}
.hihat-pad {
background: rgb(224, 199, 160);
}
.kick-pad.active {
background: rgb(60, 183, 214);
}
.snare-pad.active {
background: rgb(184, 76, 218);
}
.hihat-pad.active {
background: rgb(224, 157, 50);
}
.sequencer {
display: flex;
min-height: 100vh;
width: 100vh;
flex-direction: column;
align-items: center;
justify-content: center;
}
.kick-track,
.snare-track,
.hihat-track {
display: flex;
align-items: center;
width: 70%;
justify-content: space-between;
margin-top: 5rem;
}
.kick,
.snare,
.hihat {
display: flex;
}
.controls {
display: flex;
justify-content: space-between;
align-items: center;
flex: 1;
margin: 0rem 2rem;
}
.controls button {
padding: 1rem;
border: none;
background: #3f3f3f;
color: white;
cursor: pointer;
transition: all 0.5s ease;
}
.mute.active {
background: lightgray;
}
.tempo {
margin: 3rem;
width: 30%;
}
input[type=range]{
-webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 5px;
border: none;
border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: none;
height: 12px;
width: 12px;
border-radius: 50%;
border: #3f3f3f solid 1px;
background: rgb(255, 255, 255);
margin-top: -4px;
}
input[type=range]:focus {
outline: none;
}
.tempo-slider{
padding: 0.2rem;
-webkit-appearance: none;
margin: 1rem 0rem;
width: 100%;
position: relative;
background: rgb(160, 160, 160);
cursor: pointer;
border-radius: 0.8rem;
}
.tempo p {
font-size: 1.5rem;
margin: 2rem;
text-align: center;
}
.pad {
transition: all 0.5s ease;
border-radius: 50%;
-moz-border-radius:50%;
-webkit-border-radius: 50%;
}
.play {
padding: 0.5rem 2rem;
font-size: 1.5rem;
color: white;
background-image: linear-gradient(150deg, #db5353, #8d2f2f);
border-radius: 4px;
border: none;
cursor: pointer;
margin-top: 3rem;
}
select {
padding: 0.8rem;
margin: 0 1rem;
width: 150px;
font-size: 0.8rem;
}
@keyframes playTrack {
from{
transform: scale(1);
}to{
transform: scale(1.2);
}
} | 0.434461 | 0.071689 |
{
background-color: transparent;
}
#embedplayer
{
background-color: transparent;
}
#theImage {
padding-top:5px;
}
#theImage #charlie {
margin:0px auto 5px auto;
padding: 0; background-color: transparent;
border: 0;
border-color: #cccccc #aaaaaa #666666 #aaaaaa; border-style: ridge;
}
#theImage #charlie .none_1 { /* none */ }
#theImage #charlie .none_2 { /* none */ }
#theImage #charlie .png1_1 { background: transparent url(curtains/_1_left.png) repeat-y scroll top left; }
#theImage #charlie .png1_2 { background: transparent url(curtains/_1_right.png) repeat-y scroll top right; }
#theImage #charlie .png2_1 { background: transparent url(curtains/_1_right.png) repeat-y scroll top left; }
#theImage #charlie .png2_2 { background: transparent url(curtains/_1_left.png) repeat-y scroll top right; }
#theImage #charlie .png3_1 { background: transparent url(curtains/_2_left.png) repeat-y scroll top left; }
#theImage #charlie .png3_2 { background: transparent url(curtains/_2_right.png) repeat-y scroll top right; }
#theImage #charlie .png4_1 { background: transparent url(curtains/_2_left.png) repeat-y scroll top left; }
#theImage #charlie .png4_2 { background: transparent url(curtains/_2_left.png) repeat-y scroll top right; }
#theImage #charlie .png5_1 { background: transparent url(curtains/_2_right.png) repeat-y scroll top left; }
#theImage #charlie .png5_2 { background: transparent url(curtains/_2_right.png) repeat-y scroll top right; }
#theImage #charlie .png6_1 { background: transparent url(curtains/_2_right.png) repeat-y scroll top left; }
#theImage #charlie .png6_2 { background: transparent url(curtains/_2_left.png) repeat-y scroll top right; }
#theImage #charlie .png7_1 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png7_2 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png8_1 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png8_2 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png9_1 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png9_2 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png10_1 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png10_2 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png11_1 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png11_2 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png12_1 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png12_2 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png13_1 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png13_2 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png14_1 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png14_2 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png15_1 { background: transparent url(curtains/_3.png) repeat-y scroll top left; }
#theImage #charlie .png15_2 { background: transparent url(curtains/_3.png) repeat-y scroll top right; }
#theImage #charlie .png16_1 { background: transparent url(curtains/_3b.png) repeat-y scroll top left; }
#theImage #charlie .png16_2 { background: transparent url(curtains/_3b.png) repeat-y scroll top right; }
#theImage #charlie .png17_1 { background: transparent url(curtains/_4.png) repeat-y scroll top left; }
#theImage #charlie .png17_2 { background: transparent url(curtains/_4.png) repeat-y scroll top right; }
#theImage #charlie .png18_1 { background: transparent url(curtains/_4b.png) repeat-y scroll top left; }
#theImage #charlie .png18_2 { background: transparent url(curtains/_4b.png) repeat-y scroll top right; }
a.xl { border:1px solid #666; color:#FF7700; cursor:pointer; display:block; font-size:95%; margin:5px auto;
padding:8px 41px; text-align:center; width:580px; background: #333 url(images/expender.png) no-repeat scroll 24px 0px; }
a.xl:hover, a.xl:active { background-color:#111; border:1px solid #333; }
a.nlink { border:0; color:#666; cursor:pointer; font-size:60%; margin:5px auto 2px; padding:0px 6px;}
.clear a.xl.ui-state-active { color: #333; }
a.xl.ui-state-active { border:0; color: #f1f1f1; background-image: none; background-color:#333;}
.clear a.xl { background-color:#ddd; border:1px solid #f1f1f1;}
.checking { background-color:#333; border:12px solid #333;}
.clear .checking { background-color:#F8F8F8; border:12px solid #F8F8F8;}
.Charlies legend { padding: 0px 8px;}
.content .errors, .content .infos { position:relative;}
#theAdminPage #pwgMain .Charlies *,
#theAdminPage #pwgMain .Charlies *:hover,
#theAdminPage #pwgMain .Charlies *:focus,
#theAdminPage #pwgMain .Charlies *:active { outline: 0; }
a.xl, #theAdminPage #pwgMain .Charlies input,
#theAdminPage #pwgMain .Charlies #main-options li,
#theAdminPage #pwgMain .Charlies #main-options li a {
border-radius: 8px; -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px;
}
#theAdminPage .Charlies fieldset,
#theAdminPage .Charlies .checking {
border-radius: 16px; -moz-border-radius: 16px; -khtml-border-radius: 16px; -webkit-border-radius: 16px;
}
#theAdminPage #pwgMain .Charlies input {
padding-left:5px;
}
#theAdminPage #the_page h2 { display:block; display:none; height:34px; margin:-2px 0 0; max-height:34px; min-height:34px; }
#theAdminPage #the_page.roma h2 { background: url(images/city-lights.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.roma h2.cl2 { background: url(images/city-lights-2.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2.cl3 { background: url(images/wcity-lights-3.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2.cl2 { background: url(images/wcity-lights-2.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2 { background: url(images/wcity-lights.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #charlie .input { border-top: 1px solid #666; border-bottom: 0; margin-bottom:1px;}
#theAdminPage #charlie .i15 { border-top: 1px solid #666; border-bottom: 1px solid #666; margin-bottom:1px;}
#theAdminPage #charlie .none { border: 0; }
#theAdminPage .nrm { font-weight:normal;font-size:11px;font-style:italic; display: block; text-align: left; margin: 0; }
#theAdminPage .bot { font-weight:normal; font-size:11px; font-style:italic; display: block; text-align: left; margin: 4px 0 0; }
#theAdminPage #charlie {margin-left:auto; clear:both; text-align:center;}
#theAdminPage .padd { padding: 0 25px; }
#theAdminPage .curtain_r { background-position:0 0 !important; height:60px; margin:0 55px; min-height:60px; padding-left:27px; }
#theAdminPage .curtain_l { padding-right:27px; text-align:center; margin: 0px; }
#theAdminPage .charlie-tlp td { width:60px; text-align: left; }
#theAdminPage .colorwell { border: 3px double #F30; width: 6em; text-align: center; cursor: pointer; }
#theAdminPage .colorwell-selected { border: 3px double #F36; font-weight: bold; }
#theAdminPage .radio { margin: 0 10px 0 50px; }
#theAdminPage .content div.titrePage { height:20px; }
/* #theAdminPage #the_page .content { margin-top: 0px;} */
#theAdminPage #the_page #theHeader { height: 114px; min-height: 114px; max-height: 114px; }
#theAdminPage .Charlies input[type="submit"] { display:block; margin:5px 5px 0 auto; padding:3px 40px;}
.content form.properties li, form#update ul {clear:none;}
#theAdminPage .Charlies fieldset { padding-top:0; background: transparent url(images/000000_40x100_textures_05_inset_soft_25.png) 0 bottom repeat-x; }
#theAdminPage #the_page.clear .Charlies fieldset { background: transparent url(images/f1f1f1_40x100_textures_05_inset_soft_25.png) 0 bottom repeat-x; }
#theAdminPage div.none { border:0; background: transparent none; width:100%; min-width:100%; margin: 12px 5px;}
.ui-tabs {padding: .2em;}
.ui-tabs-nav { padding: .2em .2em 0 .2em; position: relative; }
.ui-tabs-nav li { float: left; border-bottom: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs-nav li a { display:block; text-decoration: none; padding: .5em 1em; }
.ui-tabs-nav li.ui-tabs-selected { padding-bottom: .1em; border-bottom: 0; }
.ui-tabs-panel { padding: 1em 1.4em; display: block; border: 0; background: none; }
.ui-tabs-hide { display: none !important; }
#charlie td { padding: 5px 0;}
.ui-tabs-nav {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
font-size: 11px; float: right; position: relative; z-index: 1; bottom: -1px; }
.ui-tabs-nav li {
/*resets*/margin: 0 1px 0 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
float: left; border: 1px solid #666666; border-right: none; }
.clear .ui-tabs-nav li a {
color: #f1f1f1;
}
.ui-tabs-nav li a {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
float: left; font-size: 1em; font-weight: normal; text-decoration: none; padding:3px 11px; color: #111111;
background: #666666 url(images/666666_40x100_textures_02_glass_20.png) 0 50% repeat-x; }
.ui-tabs-nav li a:hover {
background: #ff7700 url(images/ff7700_40x100_textures_02_glass_40.png) 0 50% repeat-x; color: #111111; }
.ui-tabs-nav li.ui-tabs-selected { border-bottom-color: #ff3363; }
.ui-tabs-nav li.ui-tabs-selected a, .ui-tabs-nav li.ui-tabs-selected a:hover {
background: #ff3363 url(images/ff3363_40x100_textures_05_inset_soft_90.png) 0 50% repeat-x; color: #eeeeee; }
.ui-tabs-panel {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
clear:left; border: 1px solid #666666; background: transparent none;
padding: 16px 5px 0; }
.ui-tabs-hide {
display: none;/* for accessible hiding: position: absolute; left: -99999999px*/; } | src/plugins/charlies/charlies.css | {
background-color: transparent;
}
#embedplayer
{
background-color: transparent;
}
#theImage {
padding-top:5px;
}
#theImage #charlie {
margin:0px auto 5px auto;
padding: 0; background-color: transparent;
border: 0;
border-color: #cccccc #aaaaaa #666666 #aaaaaa; border-style: ridge;
}
#theImage #charlie .none_1 { /* none */ }
#theImage #charlie .none_2 { /* none */ }
#theImage #charlie .png1_1 { background: transparent url(curtains/_1_left.png) repeat-y scroll top left; }
#theImage #charlie .png1_2 { background: transparent url(curtains/_1_right.png) repeat-y scroll top right; }
#theImage #charlie .png2_1 { background: transparent url(curtains/_1_right.png) repeat-y scroll top left; }
#theImage #charlie .png2_2 { background: transparent url(curtains/_1_left.png) repeat-y scroll top right; }
#theImage #charlie .png3_1 { background: transparent url(curtains/_2_left.png) repeat-y scroll top left; }
#theImage #charlie .png3_2 { background: transparent url(curtains/_2_right.png) repeat-y scroll top right; }
#theImage #charlie .png4_1 { background: transparent url(curtains/_2_left.png) repeat-y scroll top left; }
#theImage #charlie .png4_2 { background: transparent url(curtains/_2_left.png) repeat-y scroll top right; }
#theImage #charlie .png5_1 { background: transparent url(curtains/_2_right.png) repeat-y scroll top left; }
#theImage #charlie .png5_2 { background: transparent url(curtains/_2_right.png) repeat-y scroll top right; }
#theImage #charlie .png6_1 { background: transparent url(curtains/_2_right.png) repeat-y scroll top left; }
#theImage #charlie .png6_2 { background: transparent url(curtains/_2_left.png) repeat-y scroll top right; }
#theImage #charlie .png7_1 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png7_2 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png8_1 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png8_2 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png9_1 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png9_2 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png10_1 { background: transparent url(curtains/_2_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png10_2 { background: transparent url(curtains/_2_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png11_1 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png11_2 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png12_1 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top left; }
#theImage #charlie .png12_2 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png13_1 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png13_2 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top right; }
#theImage #charlie .png14_1 { background: transparent url(curtains/_2b_right_m.png) repeat-y scroll top left; }
#theImage #charlie .png14_2 { background: transparent url(curtains/_2b_left_m.png) repeat-y scroll top right; }
#theImage #charlie .png15_1 { background: transparent url(curtains/_3.png) repeat-y scroll top left; }
#theImage #charlie .png15_2 { background: transparent url(curtains/_3.png) repeat-y scroll top right; }
#theImage #charlie .png16_1 { background: transparent url(curtains/_3b.png) repeat-y scroll top left; }
#theImage #charlie .png16_2 { background: transparent url(curtains/_3b.png) repeat-y scroll top right; }
#theImage #charlie .png17_1 { background: transparent url(curtains/_4.png) repeat-y scroll top left; }
#theImage #charlie .png17_2 { background: transparent url(curtains/_4.png) repeat-y scroll top right; }
#theImage #charlie .png18_1 { background: transparent url(curtains/_4b.png) repeat-y scroll top left; }
#theImage #charlie .png18_2 { background: transparent url(curtains/_4b.png) repeat-y scroll top right; }
a.xl { border:1px solid #666; color:#FF7700; cursor:pointer; display:block; font-size:95%; margin:5px auto;
padding:8px 41px; text-align:center; width:580px; background: #333 url(images/expender.png) no-repeat scroll 24px 0px; }
a.xl:hover, a.xl:active { background-color:#111; border:1px solid #333; }
a.nlink { border:0; color:#666; cursor:pointer; font-size:60%; margin:5px auto 2px; padding:0px 6px;}
.clear a.xl.ui-state-active { color: #333; }
a.xl.ui-state-active { border:0; color: #f1f1f1; background-image: none; background-color:#333;}
.clear a.xl { background-color:#ddd; border:1px solid #f1f1f1;}
.checking { background-color:#333; border:12px solid #333;}
.clear .checking { background-color:#F8F8F8; border:12px solid #F8F8F8;}
.Charlies legend { padding: 0px 8px;}
.content .errors, .content .infos { position:relative;}
#theAdminPage #pwgMain .Charlies *,
#theAdminPage #pwgMain .Charlies *:hover,
#theAdminPage #pwgMain .Charlies *:focus,
#theAdminPage #pwgMain .Charlies *:active { outline: 0; }
a.xl, #theAdminPage #pwgMain .Charlies input,
#theAdminPage #pwgMain .Charlies #main-options li,
#theAdminPage #pwgMain .Charlies #main-options li a {
border-radius: 8px; -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px;
}
#theAdminPage .Charlies fieldset,
#theAdminPage .Charlies .checking {
border-radius: 16px; -moz-border-radius: 16px; -khtml-border-radius: 16px; -webkit-border-radius: 16px;
}
#theAdminPage #pwgMain .Charlies input {
padding-left:5px;
}
#theAdminPage #the_page h2 { display:block; display:none; height:34px; margin:-2px 0 0; max-height:34px; min-height:34px; }
#theAdminPage #the_page.roma h2 { background: url(images/city-lights.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.roma h2.cl2 { background: url(images/city-lights-2.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2.cl3 { background: url(images/wcity-lights-3.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2.cl2 { background: url(images/wcity-lights-2.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #the_page.clear h2 { background: url(images/wcity-lights.jpg) no-repeat scroll 86% -46px transparent; }
#theAdminPage #charlie .input { border-top: 1px solid #666; border-bottom: 0; margin-bottom:1px;}
#theAdminPage #charlie .i15 { border-top: 1px solid #666; border-bottom: 1px solid #666; margin-bottom:1px;}
#theAdminPage #charlie .none { border: 0; }
#theAdminPage .nrm { font-weight:normal;font-size:11px;font-style:italic; display: block; text-align: left; margin: 0; }
#theAdminPage .bot { font-weight:normal; font-size:11px; font-style:italic; display: block; text-align: left; margin: 4px 0 0; }
#theAdminPage #charlie {margin-left:auto; clear:both; text-align:center;}
#theAdminPage .padd { padding: 0 25px; }
#theAdminPage .curtain_r { background-position:0 0 !important; height:60px; margin:0 55px; min-height:60px; padding-left:27px; }
#theAdminPage .curtain_l { padding-right:27px; text-align:center; margin: 0px; }
#theAdminPage .charlie-tlp td { width:60px; text-align: left; }
#theAdminPage .colorwell { border: 3px double #F30; width: 6em; text-align: center; cursor: pointer; }
#theAdminPage .colorwell-selected { border: 3px double #F36; font-weight: bold; }
#theAdminPage .radio { margin: 0 10px 0 50px; }
#theAdminPage .content div.titrePage { height:20px; }
/* #theAdminPage #the_page .content { margin-top: 0px;} */
#theAdminPage #the_page #theHeader { height: 114px; min-height: 114px; max-height: 114px; }
#theAdminPage .Charlies input[type="submit"] { display:block; margin:5px 5px 0 auto; padding:3px 40px;}
.content form.properties li, form#update ul {clear:none;}
#theAdminPage .Charlies fieldset { padding-top:0; background: transparent url(images/000000_40x100_textures_05_inset_soft_25.png) 0 bottom repeat-x; }
#theAdminPage #the_page.clear .Charlies fieldset { background: transparent url(images/f1f1f1_40x100_textures_05_inset_soft_25.png) 0 bottom repeat-x; }
#theAdminPage div.none { border:0; background: transparent none; width:100%; min-width:100%; margin: 12px 5px;}
.ui-tabs {padding: .2em;}
.ui-tabs-nav { padding: .2em .2em 0 .2em; position: relative; }
.ui-tabs-nav li { float: left; border-bottom: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
.ui-tabs-nav li a { display:block; text-decoration: none; padding: .5em 1em; }
.ui-tabs-nav li.ui-tabs-selected { padding-bottom: .1em; border-bottom: 0; }
.ui-tabs-panel { padding: 1em 1.4em; display: block; border: 0; background: none; }
.ui-tabs-hide { display: none !important; }
#charlie td { padding: 5px 0;}
.ui-tabs-nav {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
font-size: 11px; float: right; position: relative; z-index: 1; bottom: -1px; }
.ui-tabs-nav li {
/*resets*/margin: 0 1px 0 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
float: left; border: 1px solid #666666; border-right: none; }
.clear .ui-tabs-nav li a {
color: #f1f1f1;
}
.ui-tabs-nav li a {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
float: left; font-size: 1em; font-weight: normal; text-decoration: none; padding:3px 11px; color: #111111;
background: #666666 url(images/666666_40x100_textures_02_glass_20.png) 0 50% repeat-x; }
.ui-tabs-nav li a:hover {
background: #ff7700 url(images/ff7700_40x100_textures_02_glass_40.png) 0 50% repeat-x; color: #111111; }
.ui-tabs-nav li.ui-tabs-selected { border-bottom-color: #ff3363; }
.ui-tabs-nav li.ui-tabs-selected a, .ui-tabs-nav li.ui-tabs-selected a:hover {
background: #ff3363 url(images/ff3363_40x100_textures_05_inset_soft_90.png) 0 50% repeat-x; color: #eeeeee; }
.ui-tabs-panel {
/*resets*/margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none;
clear:left; border: 1px solid #666666; background: transparent none;
padding: 16px 5px 0; }
.ui-tabs-hide {
display: none;/* for accessible hiding: position: absolute; left: -99999999px*/; } | 0.191403 | 0.242951 |
@font-face {
font-family: taquillas;
src: url(LeagueSpartan-VF.ttf);
}
:root {
--bs-primary: #b73f36;
--bs-secondary: #d9d7cc;
--bs-success: #5cb160;
--bs-info: #3d7ab8;
--bs-warning: #f2c029;
--bs-danger: #b73f36;
--bs-light: #d9d7cc;
--bs-dark: #4e5155;
--bs-font-sans-serif: taquillas, system-ui, -apple-system, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(
180deg,
rgba(255, 255, 255, 0.15),
rgba(255, 255, 255, 0)
);
}
body {
margin: 0;
font-family: taquillas;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
/* background-color: #fff; */
background-color: rgb(245, 245, 245);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.text-transparent {
color: transparent;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
border-radius: 0rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.25);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
pointer-events: none;
opacity: 0.65;
}
.btn-primary {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-primary:hover {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #92322b;
border-color: #892f29;
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-secondary {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-secondary:hover {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
color: #000;
background-color: #e1dfd6;
border-color: #dddbd1;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-success {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-success:hover {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
}
.btn-check:focus + .btn-success,
.btn-success:focus {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
box-shadow: 0 0 0 0.25rem rgba(87, 173, 101, 0.5);
}
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
}
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(87, 173, 101, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-info {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-info:hover {
color: #000;
background-color: #5a8ec3;
border-color: #5087bf;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
color: #000;
background-color: #5a8ec3;
border-color: #5087bf;
box-shadow: 0 0 0 0.25rem rgba(52, 104, 156, 0.5);
}
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
color: #000;
background-color: #6495c6;
border-color: #5087bf;
}
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 104, 156, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-warning {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-warning:hover {
color: #000;
background-color: #f4c949;
border-color: #f3c63e;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
color: #000;
background-color: #f4c949;
border-color: #f3c63e;
box-shadow: 0 0 0 0.25rem rgba(206, 163, 35, 0.5);
}
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
color: #000;
background-color: #f5cd54;
border-color: #f3c63e;
}
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 163, 35, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-danger {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-danger:hover {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #92322b;
border-color: #892f29;
}
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-light {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-light:hover {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
color: #000;
background-color: #e1dfd6;
border-color: #dddbd1;
}
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-light:disabled,
.btn-light.disabled {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-dark {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-dark:hover {
color: #fff;
background-color: #424548;
border-color: #3e4144;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
color: #fff;
background-color: #424548;
border-color: #3e4144;
box-shadow: 0 0 0 0.25rem rgba(105, 107, 111, 0.5);
}
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
color: #fff;
background-color: #3e4144;
border-color: #3b3d40;
}
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(105, 107, 111, 0.5);
}
.btn-dark:disabled,
.btn-dark.disabled {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-outline-primary {
color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
color: var(--bs-primary);
background-color: transparent;
}
.btn-outline-secondary {
color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-outline-secondary:hover {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
color: var(--bs-secondary);
background-color: transparent;
}
.btn-outline-success {
color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-outline-success:hover {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 153, 204, 0.5);
}
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 153, 204, 0.5);
}
.btn-outline-success:disabled,
.btn-outline-success.disabled {
color: var(--bs-success);
background-color: transparent;
}
.btn-outline-info {
color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-outline-info:hover {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 122, 184, 0.5);
}
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 122, 184, 0.5);
}
.btn-outline-info:disabled,
.btn-outline-info.disabled {
color: var(--bs-info);
background-color: transparent;
}
.btn-outline-warning {
color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-outline-warning:hover {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
box-shadow: 0 0 0 0.25rem rgba(242, 192, 41, 0.5);
}
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(242, 192, 41, 0.5);
}
.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
color: var(--bs-warning);
background-color: transparent;
}
.btn-outline-danger {
color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-outline-danger:hover {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
color: var(--bs-primary);
background-color: transparent;
}
.btn-outline-light {
color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-outline-light:hover {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-outline-light:disabled,
.btn-outline-light.disabled {
color: var(--bs-secondary);
background-color: transparent;
}
.btn-outline-dark {
color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-outline-dark:hover {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
box-shadow: 0 0 0 0.25rem rgba(78, 81, 85, 0.5);
}
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(78, 81, 85, 0.5);
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
color: var(--bs-dark);
background-color: transparent;
}
.btn-link {
font-weight: 400;
color: var(--bs-primary);
text-decoration: underline;
}
.btn-link:hover {
color: #92322b;
}
.btn-link:disabled,
.btn-link.disabled {
color: #6c757d;
}
/* rtl:end:remove */
.text-primary {
color: var(--bs-primary) !important;
}
.text-secondary {
color: var(--bs-secondary) !important;
}
.text-success {
color: var(--bs-success) !important;
}
.text-info {
color: var(--bs-info) !important;
}
.text-warning {
color: var(--bs-warning) !important;
}
.text-danger {
color: var(--bs-primary) !important;
}
.text-light {
color: var(--bs-secondary) !important;
}
.text-dark {
color: var(--bs-dark) !important;
}
.text-white {
color: #fff !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
color: inherit !important;
}
.bg-primary {
background-color: var(--bs-primary) !important;
}
.bg-secondary {
background-color: var(--bs-secondary) !important;
}
.bg-success {
background-color: var(--bs-success) !important;
}
.bg-info {
background-color: var(--bs-info) !important;
}
.bg-warning {
background-color: var(--bs-warning) !important;
}
.bg-danger {
background-color: var(--bs-primary) !important;
}
.bg-light {
background-color: var(--bs-secondary) !important;
}
.bg-dark {
background-color: var(--bs-dark) !important;
}
.bg-body {
background-color: #fff !important;
}
.bg-white {
background-color: #fff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.border-primary {
border-color: var(--bs-primary) !important;
}
.border-secondary {
border-color: var(--bs-secondary) !important;
}
.border-success {
border-color: var(--bs-success) !important;
}
.border-info {
border-color: var(--bs-info) !important;
}
.border-warning {
border-color: var(--bs-warning) !important;
}
.border-danger {
border-color: var(--bs-danger) !important;
}
.border-light {
border-color: var(--bs-secondary) !important;
}
.border-dark {
border-color: var(--bs-dark) !important;
}
.border-5 {
border-width: 1rem !important;
}
a {
color: var(--bs-primary);
text-decoration: none;
}
.alert-primary {
color: var(--bs-primary);
background-color: var(--bs-secondary);
border-color: var(--bs-danger);
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: var(--bs-light);
text-decoration: none;
font-size: large;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.nav-link:hover, .nav-link:focus {
color: #252525;
}
.form-control {
border-radius: 0;
} | target/classes/static/css/bootstrap--.css | @font-face {
font-family: taquillas;
src: url(LeagueSpartan-VF.ttf);
}
:root {
--bs-primary: #b73f36;
--bs-secondary: #d9d7cc;
--bs-success: #5cb160;
--bs-info: #3d7ab8;
--bs-warning: #f2c029;
--bs-danger: #b73f36;
--bs-light: #d9d7cc;
--bs-dark: #4e5155;
--bs-font-sans-serif: taquillas, system-ui, -apple-system, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
"Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(
180deg,
rgba(255, 255, 255, 0.15),
rgba(255, 255, 255, 0)
);
}
body {
margin: 0;
font-family: taquillas;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
/* background-color: #fff; */
background-color: rgb(245, 245, 245);
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.text-transparent {
color: transparent;
}
.btn {
display: inline-block;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
user-select: none;
background-color: transparent;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
border-radius: 0rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
.btn {
transition: none;
}
}
.btn:hover {
color: #212529;
}
.btn-check:focus + .btn,
.btn:focus {
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.25);
}
.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
pointer-events: none;
opacity: 0.65;
}
.btn-primary {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-primary:hover {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
}
.btn-check:focus + .btn-primary,
.btn-primary:focus {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
color: #fff;
background-color: #92322b;
border-color: #892f29;
}
.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-primary:disabled,
.btn-primary.disabled {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-secondary {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-secondary:hover {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
}
.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
color: #000;
background-color: #e1dfd6;
border-color: #dddbd1;
}
.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-secondary:disabled,
.btn-secondary.disabled {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-success {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-success:hover {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
}
.btn-check:focus + .btn-success,
.btn-success:focus {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
box-shadow: 0 0 0 0.25rem rgba(87, 173, 101, 0.5);
}
.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
color: #000;
background-color: #3ece45;
border-color: var(--bs-success);
}
.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(87, 173, 101, 0.5);
}
.btn-success:disabled,
.btn-success.disabled {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-info {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-info:hover {
color: #000;
background-color: #5a8ec3;
border-color: #5087bf;
}
.btn-check:focus + .btn-info,
.btn-info:focus {
color: #000;
background-color: #5a8ec3;
border-color: #5087bf;
box-shadow: 0 0 0 0.25rem rgba(52, 104, 156, 0.5);
}
.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
color: #000;
background-color: #6495c6;
border-color: #5087bf;
}
.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(52, 104, 156, 0.5);
}
.btn-info:disabled,
.btn-info.disabled {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-warning {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-warning:hover {
color: #000;
background-color: #f4c949;
border-color: #f3c63e;
}
.btn-check:focus + .btn-warning,
.btn-warning:focus {
color: #000;
background-color: #f4c949;
border-color: #f3c63e;
box-shadow: 0 0 0 0.25rem rgba(206, 163, 35, 0.5);
}
.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
color: #000;
background-color: #f5cd54;
border-color: #f3c63e;
}
.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(206, 163, 35, 0.5);
}
.btn-warning:disabled,
.btn-warning.disabled {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-danger {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-danger:hover {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
}
.btn-check:focus + .btn-danger,
.btn-danger:focus {
color: #fff;
background-color: #9c362e;
border-color: #92322b;
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
color: #fff;
background-color: #92322b;
border-color: #892f29;
}
.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(194, 92, 84, 0.5);
}
.btn-danger:disabled,
.btn-danger.disabled {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-light {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-light:hover {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
}
.btn-check:focus + .btn-light,
.btn-light:focus {
color: #000;
background-color: #dfddd4;
border-color: #dddbd1;
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
color: #000;
background-color: #e1dfd6;
border-color: #dddbd1;
}
.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(184, 183, 173, 0.5);
}
.btn-light:disabled,
.btn-light.disabled {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-dark {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-dark:hover {
color: #fff;
background-color: #424548;
border-color: #3e4144;
}
.btn-check:focus + .btn-dark,
.btn-dark:focus {
color: #fff;
background-color: #424548;
border-color: #3e4144;
box-shadow: 0 0 0 0.25rem rgba(105, 107, 111, 0.5);
}
.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
color: #fff;
background-color: #3e4144;
border-color: #3b3d40;
}
.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(105, 107, 111, 0.5);
}
.btn-dark:disabled,
.btn-dark.disabled {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-outline-primary {
color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-outline-primary:hover {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-check:checked + .btn-outline-primary,
.btn-check:active + .btn-outline-primary,
.btn-outline-primary:active,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:checked + .btn-outline-primary:focus,
.btn-check:active + .btn-outline-primary:focus,
.btn-outline-primary:active:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
color: var(--bs-primary);
background-color: transparent;
}
.btn-outline-secondary {
color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-outline-secondary:hover {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-check:checked + .btn-outline-secondary,
.btn-check:active + .btn-outline-secondary,
.btn-outline-secondary:active,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:checked + .btn-outline-secondary:focus,
.btn-check:active + .btn-outline-secondary:focus,
.btn-outline-secondary:active:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
color: var(--bs-secondary);
background-color: transparent;
}
.btn-outline-success {
color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-outline-success:hover {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 153, 204, 0.5);
}
.btn-check:checked + .btn-outline-success,
.btn-check:active + .btn-outline-success,
.btn-outline-success:active,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show {
color: #000;
background-color: var(--bs-success);
border-color: var(--bs-success);
}
.btn-check:checked + .btn-outline-success:focus,
.btn-check:active + .btn-outline-success:focus,
.btn-outline-success:active:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(102, 153, 204, 0.5);
}
.btn-outline-success:disabled,
.btn-outline-success.disabled {
color: var(--bs-success);
background-color: transparent;
}
.btn-outline-info {
color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-outline-info:hover {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 122, 184, 0.5);
}
.btn-check:checked + .btn-outline-info,
.btn-check:active + .btn-outline-info,
.btn-outline-info:active,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show {
color: #000;
background-color: var(--bs-info);
border-color: var(--bs-info);
}
.btn-check:checked + .btn-outline-info:focus,
.btn-check:active + .btn-outline-info:focus,
.btn-outline-info:active:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(61, 122, 184, 0.5);
}
.btn-outline-info:disabled,
.btn-outline-info.disabled {
color: var(--bs-info);
background-color: transparent;
}
.btn-outline-warning {
color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-outline-warning:hover {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
box-shadow: 0 0 0 0.25rem rgba(242, 192, 41, 0.5);
}
.btn-check:checked + .btn-outline-warning,
.btn-check:active + .btn-outline-warning,
.btn-outline-warning:active,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show {
color: #000;
background-color: var(--bs-warning);
border-color: var(--bs-warning);
}
.btn-check:checked + .btn-outline-warning:focus,
.btn-check:active + .btn-outline-warning:focus,
.btn-outline-warning:active:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(242, 192, 41, 0.5);
}
.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
color: var(--bs-warning);
background-color: transparent;
}
.btn-outline-danger {
color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-outline-danger:hover {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-check:checked + .btn-outline-danger,
.btn-check:active + .btn-outline-danger,
.btn-outline-danger:active,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-primary);
border-color: var(--bs-primary);
}
.btn-check:checked + .btn-outline-danger:focus,
.btn-check:active + .btn-outline-danger:focus,
.btn-outline-danger:active:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(183, 63, 54, 0.5);
}
.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
color: var(--bs-primary);
background-color: transparent;
}
.btn-outline-light {
color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-outline-light:hover {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-check:checked + .btn-outline-light,
.btn-check:active + .btn-outline-light,
.btn-outline-light:active,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show {
color: #000;
background-color: var(--bs-secondary);
border-color: var(--bs-secondary);
}
.btn-check:checked + .btn-outline-light:focus,
.btn-check:active + .btn-outline-light:focus,
.btn-outline-light:active:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(217, 215, 204, 0.5);
}
.btn-outline-light:disabled,
.btn-outline-light.disabled {
color: var(--bs-secondary);
background-color: transparent;
}
.btn-outline-dark {
color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-outline-dark:hover {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
box-shadow: 0 0 0 0.25rem rgba(78, 81, 85, 0.5);
}
.btn-check:checked + .btn-outline-dark,
.btn-check:active + .btn-outline-dark,
.btn-outline-dark:active,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show {
color: #fff;
background-color: var(--bs-dark);
border-color: var(--bs-dark);
}
.btn-check:checked + .btn-outline-dark:focus,
.btn-check:active + .btn-outline-dark:focus,
.btn-outline-dark:active:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus {
box-shadow: 0 0 0 0.25rem rgba(78, 81, 85, 0.5);
}
.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
color: var(--bs-dark);
background-color: transparent;
}
.btn-link {
font-weight: 400;
color: var(--bs-primary);
text-decoration: underline;
}
.btn-link:hover {
color: #92322b;
}
.btn-link:disabled,
.btn-link.disabled {
color: #6c757d;
}
/* rtl:end:remove */
.text-primary {
color: var(--bs-primary) !important;
}
.text-secondary {
color: var(--bs-secondary) !important;
}
.text-success {
color: var(--bs-success) !important;
}
.text-info {
color: var(--bs-info) !important;
}
.text-warning {
color: var(--bs-warning) !important;
}
.text-danger {
color: var(--bs-primary) !important;
}
.text-light {
color: var(--bs-secondary) !important;
}
.text-dark {
color: var(--bs-dark) !important;
}
.text-white {
color: #fff !important;
}
.text-body {
color: #212529 !important;
}
.text-muted {
color: #6c757d !important;
}
.text-black-50 {
color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
color: rgba(255, 255, 255, 0.5) !important;
}
.text-reset {
color: inherit !important;
}
.bg-primary {
background-color: var(--bs-primary) !important;
}
.bg-secondary {
background-color: var(--bs-secondary) !important;
}
.bg-success {
background-color: var(--bs-success) !important;
}
.bg-info {
background-color: var(--bs-info) !important;
}
.bg-warning {
background-color: var(--bs-warning) !important;
}
.bg-danger {
background-color: var(--bs-primary) !important;
}
.bg-light {
background-color: var(--bs-secondary) !important;
}
.bg-dark {
background-color: var(--bs-dark) !important;
}
.bg-body {
background-color: #fff !important;
}
.bg-white {
background-color: #fff !important;
}
.bg-transparent {
background-color: transparent !important;
}
.border-primary {
border-color: var(--bs-primary) !important;
}
.border-secondary {
border-color: var(--bs-secondary) !important;
}
.border-success {
border-color: var(--bs-success) !important;
}
.border-info {
border-color: var(--bs-info) !important;
}
.border-warning {
border-color: var(--bs-warning) !important;
}
.border-danger {
border-color: var(--bs-danger) !important;
}
.border-light {
border-color: var(--bs-secondary) !important;
}
.border-dark {
border-color: var(--bs-dark) !important;
}
.border-5 {
border-width: 1rem !important;
}
a {
color: var(--bs-primary);
text-decoration: none;
}
.alert-primary {
color: var(--bs-primary);
background-color: var(--bs-secondary);
border-color: var(--bs-danger);
}
.nav-link {
display: block;
padding: 0.5rem 1rem;
color: var(--bs-light);
text-decoration: none;
font-size: large;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.nav-link:hover, .nav-link:focus {
color: #252525;
}
.form-control {
border-radius: 0;
} | 0.352648 | 0.067454 |
.ola_tooltip {
--pointer: var(--size-3);
--width: var(--size-11);
display: inline-block;
position: relative;
white-space: initial;
text-align: left;
&.is-wide {
@media (--from-width-1) {
--width: var(--size-12);
}
}
}
.ola_tooltip-trigger {
list-style: none;
outline: 0;
&::-webkit-details-marker {
display: none;
}
& .ola_button {
display: flex;
}
}
.ola_tooltip-content {
will-change: opacity, transform;
position: absolute;
filter: drop-shadow(var(--shadow-2)) drop-shadow(var(--shadow-line));
background: var(--white);
border-radius: var(--radius);
padding: var(--size-6);
width: var(--width);
box-sizing: border-box;
z-index: 5;
font: var(--font-caption);
color: var(--black);
display: none;
&::before {
content: "";
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
}
&.is-bottomright,
&.is-bottomright-extra,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomleft,
&.is-bottomleft-extra {
margin-top: calc(var(--pointer) / 2);
&::before {
top: calc(var(--pointer) * -1);
}
}
&.is-topright,
&.is-topright-extra,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topleft,
&.is-topleft-extra {
bottom: 100%;
margin-bottom: calc(var(--pointer) / 2);
&::before {
bottom: calc(var(--pointer) * -1);
}
}
&.is-topright-extra,
&.is-bottomright-extra {
left: 50%;
&::before {
left: 0;
}
}
&.is-topright,
&.is-bottomright {
left: calc(50% - var(--pointer) * 4);
&::before {
left: calc(var(--pointer) * 3);
}
}
&.is-topcenter,
&.is-bottomcenter,
&.is-topcenter-extra,
&.is-bottomcenter-extra {
left: calc(50% - var(--width) / 2);
&::before {
right: calc(50% - var(--pointer));
}
}
&.is-topcenter-extra,
&.is-bottomcenter-extra {
max-width: 90vh;
}
&.is-topleft,
&.is-bottomleft {
right: calc(50% - var(--pointer) * 4);
&::before {
right: calc(var(--pointer) * 3);
}
}
&.is-topleft-extra,
&.is-bottomleft-extra {
right: 50%;
&::before {
right: 0;
}
}
&.is-topright-extra {
border-bottom-left-radius: 0;
&::before {
border-width: var(--pointer) var(--pointer) 0 0;
border-color: white transparent transparent transparent;
}
}
&.is-bottomright-extra {
border-top-left-radius: 0;
&::before {
border-width: var(--pointer) 0 0 var(--pointer);
border-color: transparent transparent transparent white;
}
}
&.is-topleft-extra {
border-bottom-right-radius: 0;
&::before {
border-width: 0 var(--pointer) var(--pointer) 0;
border-color: transparent white transparent transparent;
}
}
&.is-bottomleft-extra {
border-top-right-radius: 0;
&::before {
border-width: 0 0 var(--pointer) var(--pointer);
border-color: transparent transparent white transparent;
}
}
&.is-topleft,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topright {
&::before {
border-width: var(--pointer) var(--pointer) 0 var(--pointer);
border-color: white transparent transparent transparent;
}
}
&.is-bottomleft,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomright {
&::before {
border-width: 0 var(--pointer) var(--pointer) var(--pointer);
border-color: transparent transparent white transparent;
}
}
}
.ola_tooltip[open] {
& .ola_tooltip-trigger .ola_buttonIcon svg,
& .ola_tooltip-trigger .ola_button {
color: var(--color-hover);
background-color: var(--background-hover);
}
& .ola_tooltip-content {
&.is-bottomright,
&.is-bottomright-extra,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomleft,
&.is-bottomleft-extra,
&.is-topright,
&.is-topright-extra,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topleft,
&.is-topleft-extra {
display: block;
animation: tooltip-show 200ms;
animation-fill-mode: both;
}
}
}
@keyframes tooltip-show {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} | src/Tooltip/style.css | .ola_tooltip {
--pointer: var(--size-3);
--width: var(--size-11);
display: inline-block;
position: relative;
white-space: initial;
text-align: left;
&.is-wide {
@media (--from-width-1) {
--width: var(--size-12);
}
}
}
.ola_tooltip-trigger {
list-style: none;
outline: 0;
&::-webkit-details-marker {
display: none;
}
& .ola_button {
display: flex;
}
}
.ola_tooltip-content {
will-change: opacity, transform;
position: absolute;
filter: drop-shadow(var(--shadow-2)) drop-shadow(var(--shadow-line));
background: var(--white);
border-radius: var(--radius);
padding: var(--size-6);
width: var(--width);
box-sizing: border-box;
z-index: 5;
font: var(--font-caption);
color: var(--black);
display: none;
&::before {
content: "";
display: block;
position: absolute;
width: 0;
height: 0;
border-style: solid;
}
&.is-bottomright,
&.is-bottomright-extra,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomleft,
&.is-bottomleft-extra {
margin-top: calc(var(--pointer) / 2);
&::before {
top: calc(var(--pointer) * -1);
}
}
&.is-topright,
&.is-topright-extra,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topleft,
&.is-topleft-extra {
bottom: 100%;
margin-bottom: calc(var(--pointer) / 2);
&::before {
bottom: calc(var(--pointer) * -1);
}
}
&.is-topright-extra,
&.is-bottomright-extra {
left: 50%;
&::before {
left: 0;
}
}
&.is-topright,
&.is-bottomright {
left: calc(50% - var(--pointer) * 4);
&::before {
left: calc(var(--pointer) * 3);
}
}
&.is-topcenter,
&.is-bottomcenter,
&.is-topcenter-extra,
&.is-bottomcenter-extra {
left: calc(50% - var(--width) / 2);
&::before {
right: calc(50% - var(--pointer));
}
}
&.is-topcenter-extra,
&.is-bottomcenter-extra {
max-width: 90vh;
}
&.is-topleft,
&.is-bottomleft {
right: calc(50% - var(--pointer) * 4);
&::before {
right: calc(var(--pointer) * 3);
}
}
&.is-topleft-extra,
&.is-bottomleft-extra {
right: 50%;
&::before {
right: 0;
}
}
&.is-topright-extra {
border-bottom-left-radius: 0;
&::before {
border-width: var(--pointer) var(--pointer) 0 0;
border-color: white transparent transparent transparent;
}
}
&.is-bottomright-extra {
border-top-left-radius: 0;
&::before {
border-width: var(--pointer) 0 0 var(--pointer);
border-color: transparent transparent transparent white;
}
}
&.is-topleft-extra {
border-bottom-right-radius: 0;
&::before {
border-width: 0 var(--pointer) var(--pointer) 0;
border-color: transparent white transparent transparent;
}
}
&.is-bottomleft-extra {
border-top-right-radius: 0;
&::before {
border-width: 0 0 var(--pointer) var(--pointer);
border-color: transparent transparent white transparent;
}
}
&.is-topleft,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topright {
&::before {
border-width: var(--pointer) var(--pointer) 0 var(--pointer);
border-color: white transparent transparent transparent;
}
}
&.is-bottomleft,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomright {
&::before {
border-width: 0 var(--pointer) var(--pointer) var(--pointer);
border-color: transparent transparent white transparent;
}
}
}
.ola_tooltip[open] {
& .ola_tooltip-trigger .ola_buttonIcon svg,
& .ola_tooltip-trigger .ola_button {
color: var(--color-hover);
background-color: var(--background-hover);
}
& .ola_tooltip-content {
&.is-bottomright,
&.is-bottomright-extra,
&.is-bottomcenter,
&.is-bottomcenter-extra,
&.is-bottomleft,
&.is-bottomleft-extra,
&.is-topright,
&.is-topright-extra,
&.is-topcenter,
&.is-topcenter-extra,
&.is-topleft,
&.is-topleft-extra {
display: block;
animation: tooltip-show 200ms;
animation-fill-mode: both;
}
}
}
@keyframes tooltip-show {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
} | 0.722625 | 0.254671 |
.DOMRecScreenshot, .DOMRecMovie {
position: relative;
max-width: 100%;
}
.DOMRecMovie > div {
position: absolute;
left: calc(50% - 100px);
top: calc(50% - 50px);
width: 200px;
font-size: 100px;
color: black;
text-shadow: 0 0 10px white, 0 0 10px white;
opacity: 0;
text-align: center;
transition: opacity 1s;
}
.DOMRecMovie > div::before {
content: "⟲";
}
.DOMRecMovie.looping > div {
opacity: 1;
transition: none;
}
.DOMRecMovie:fullscreen, .DOMRecScreenshot:fullscreen {
background: black;
}
.DOMRecMovie[popOut]:not(.poppedOut):not(:fullscreen) > button, .DOMRecScreenshot[popOut]:not(.poppedOut):not(:fullscreen) > button {
display: none;
}
.DOMRecMovie[popOut]:not(.poppedOut):not(:-webkit-full-screen) > button, .DOMRecScreenshot[popOut]:not(.poppedOut):not(:-webkit-full-screen) > button {
display: none;
}
.DOMRecMovie > button, .DOMRecScreenshot > button {
position: absolute;
opacity: 0.8;
transition: opacity 0.3s;
}
.DOMRecMovie.playing > button {
opacity: 0;
}
.DOMRecMovie > button.play {
left: calc(50% - 160px);
top: calc(50% - 50px);
width: 200px;
height: 100px;
padding-bottom: 10px;
font-size: 60px;
}
.DOMRecMovie > button.play::before {
content: "▶";
}
.DOMRecMovie > button.fullscreen, .DOMRecScreenshot > button.fullscreen {
left: calc(50% + 60px);
top: calc(50% - 25px);
width: 100px;
height: 50px;
padding-bottom: 5px;
font-size: 30px;
}
.DOMRecScreenshot:not(:hover) > button, .DOMRecScreenshot:fullscreen > button, .DOMRecMovie:not(:hover) > button, .DOMRecMovie:fullscreen > button {
opacity: 0;
pointer-events: none;
}
.DOMRecScreenshot > button.fullscreen {
left: calc(50% - 50px);
top: calc(50% - 25px);
}
.DOMRecMovie > button.fullscreen::before, .DOMRecScreenshot > button.fullscreen::before {
content: "⛶";
}
.DOMRecScreenshot > svg, .DOMRecMovie > svg {
pointer-events: none;
display: block;
}
.DOMRecScreenshot > iframe, .DOMRecMovie > iframe {
border: none;
pointer-events: none;
display: block;
position: absolute;
}
/* UGH WEBKIT */
.DOMRecScreenshot:not(:fullscreen) > iframe, .DOMRecMovie:not(:fullscreen) > iframe {
left: -2px !important;
top: -2px !important;
width: calc(4px + 100%) !important;
height: calc(4px + 100%) !important;
}
/* UGH WEBKIT */
.DOMRecScreenshot:not(:-webkit-full-screen) > iframe, .DOMRecMovie:not(:-webkit-full-screen) > iframe {
left: -2px !important;
top: -2px !important;
width: calc(4px + 100%) !important;
height: calc(4px + 100%) !important;
} | domrec.css | .DOMRecScreenshot, .DOMRecMovie {
position: relative;
max-width: 100%;
}
.DOMRecMovie > div {
position: absolute;
left: calc(50% - 100px);
top: calc(50% - 50px);
width: 200px;
font-size: 100px;
color: black;
text-shadow: 0 0 10px white, 0 0 10px white;
opacity: 0;
text-align: center;
transition: opacity 1s;
}
.DOMRecMovie > div::before {
content: "⟲";
}
.DOMRecMovie.looping > div {
opacity: 1;
transition: none;
}
.DOMRecMovie:fullscreen, .DOMRecScreenshot:fullscreen {
background: black;
}
.DOMRecMovie[popOut]:not(.poppedOut):not(:fullscreen) > button, .DOMRecScreenshot[popOut]:not(.poppedOut):not(:fullscreen) > button {
display: none;
}
.DOMRecMovie[popOut]:not(.poppedOut):not(:-webkit-full-screen) > button, .DOMRecScreenshot[popOut]:not(.poppedOut):not(:-webkit-full-screen) > button {
display: none;
}
.DOMRecMovie > button, .DOMRecScreenshot > button {
position: absolute;
opacity: 0.8;
transition: opacity 0.3s;
}
.DOMRecMovie.playing > button {
opacity: 0;
}
.DOMRecMovie > button.play {
left: calc(50% - 160px);
top: calc(50% - 50px);
width: 200px;
height: 100px;
padding-bottom: 10px;
font-size: 60px;
}
.DOMRecMovie > button.play::before {
content: "▶";
}
.DOMRecMovie > button.fullscreen, .DOMRecScreenshot > button.fullscreen {
left: calc(50% + 60px);
top: calc(50% - 25px);
width: 100px;
height: 50px;
padding-bottom: 5px;
font-size: 30px;
}
.DOMRecScreenshot:not(:hover) > button, .DOMRecScreenshot:fullscreen > button, .DOMRecMovie:not(:hover) > button, .DOMRecMovie:fullscreen > button {
opacity: 0;
pointer-events: none;
}
.DOMRecScreenshot > button.fullscreen {
left: calc(50% - 50px);
top: calc(50% - 25px);
}
.DOMRecMovie > button.fullscreen::before, .DOMRecScreenshot > button.fullscreen::before {
content: "⛶";
}
.DOMRecScreenshot > svg, .DOMRecMovie > svg {
pointer-events: none;
display: block;
}
.DOMRecScreenshot > iframe, .DOMRecMovie > iframe {
border: none;
pointer-events: none;
display: block;
position: absolute;
}
/* UGH WEBKIT */
.DOMRecScreenshot:not(:fullscreen) > iframe, .DOMRecMovie:not(:fullscreen) > iframe {
left: -2px !important;
top: -2px !important;
width: calc(4px + 100%) !important;
height: calc(4px + 100%) !important;
}
/* UGH WEBKIT */
.DOMRecScreenshot:not(:-webkit-full-screen) > iframe, .DOMRecMovie:not(:-webkit-full-screen) > iframe {
left: -2px !important;
top: -2px !important;
width: calc(4px + 100%) !important;
height: calc(4px + 100%) !important;
} | 0.379034 | 0.056522 |
.oxygenna-options-page h2:first-of-type {
margin-top: 10px;
}
.oxygenna-options-page form h2 {
margin-bottom: 0px;
margin-top: 40px;
padding-bottom: 6px;
font-weight: 300;
font-size: 20px;
padding: 20px;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
background: #fff;
}
.section-description {
font-size: 15px;
padding: 10px 20px 20px;
font-weight: 200;
line-height: 24px;
margin-top: 0;
margin-bottom: 0;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
border-bottom: 0;
}
.form-table {
margin-top: 0;
border: 1px solid #e5e5e5;
border-top: 0;
border-left: 3px solid #85C8EB;
}
.form-table tr > td {
padding-bottom: 24px;
}
.form-table th {
padding-left: 24px;
}
select {
max-width: 300px;
}
.ui-slider {
max-width: 600px;
}
.ui-slider {
margin: 4px 0;
}
.submit-footer {
margin-top: 40px;
}
.submit-footer .submit {
display: inline-block;
margin-right: 100px;
vertical-align: top;
}
.iris-picker .iris-slider-offset {
left: 0;
right: 0;
bottom: -3px;
top: -4px !important;
width: 98% !important;
height: 99% !important;
background: transparent !important;
}
.one-click {
width: 260px;
height: 60px;
background: url(../../images/oneclick.png) no-repeat top left;
border: 0;
box-shadow: none;
text-indent: -9000px;
cursor: pointer;
position: relative;
top: -5px;
}
.one-click focus {
outline: none;
}
.one-click:hover {
background-position: bottom left;
}
/* imgradio field style */
div.ui-imgradio div.imgradio-col {
float: left;
}
div.imgradio-col.col2 {
margin: 0 5% 5% 0;
width: 45%;
}
div.imgradio-col.col3 {
margin: 0 3% 3% 0;
width: 30%;
}
div.imgradio-col.col4 {
margin: 0 2% 2% 0;
width: 23%;
}
div.imgradio-col.col5 {
margin: 0 2% 2% 0;
width: 18%;
}
div.imgradio-col label, div.imgradio-col label:hover {
background-size: 100%;
width: 100%;
height: 100%;
background-position: top center;
background-repeat: no-repeat;
}
div.imgradio-col label span, div.imgradio-col label:hover span {
padding: 67% 0 0 0 !important;
box-sizing: border-box;
font-size: 12px;
margin-bottom: 5px;
}
/* White Boxes*/
.white-box {
margin-bottom: 0px;
padding-bottom: 6px;
font-weight: 300;
font-size: 20px;
padding: 20px;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
background: #fff;
margin-bottom: 60px;
}
.white-box:before,
.white-box:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.white-box:after {
clear: both;
}
/* Big Form */
.big-form {
margin: 24px 0;
}
.big-form label {
display: block;
text-transform: uppercase;
font-size: 13px;
margin-bottom: 6px;
font-weight: 700;
}
.big-form input {
border: 1px solid #dfdfdf;
width: 100%;
height: 48px;
line-height: 48px;
margin-bottom: 24px;
max-width: 600px;
font-size: 24px;
transition: all .2s;
}
.big-form input:focus {
box-shadow: 3px 0px 0px #85C8EB inset;
outline: none;
border-color: #85C8EB
}
.big-form .button {
width: 100%;
height: 48px;
line-height: 48px;
max-width: 600px;
}
.video-image {
width: 200px;
height: 150px;
display: block;
background: url(../../images/play.png) no-repeat center;
margin: 24px auto;
}
.youtube {
text-decoration: none;
display: block;
width: 100%;
padding: 25px;
box-sizing: border-box;
max-width: 500px;
margin: 0 auto;
text-transform: uppercase;
font-weight: 700;
font-size: 13px;
}
/* Text alignment Classes */
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
/* Small Grid Framework */
.half,
.big,
.small {
box-sizing: border-box;
}
.half {
width: 50%;
}
.big {
width: 75%;
}
.small {
width: 25%;
}
.half:first-child, .small:first-child, .big:first-child {
padding-right: 20px;
}
.left-part {
float: left;
}
.right-part {
float: right;
} | web/app/themes/omega/vendor/oxygenna/oxygenna-framework/assets/css/options/oxy-option-page.css | .oxygenna-options-page h2:first-of-type {
margin-top: 10px;
}
.oxygenna-options-page form h2 {
margin-bottom: 0px;
margin-top: 40px;
padding-bottom: 6px;
font-weight: 300;
font-size: 20px;
padding: 20px;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
background: #fff;
}
.section-description {
font-size: 15px;
padding: 10px 20px 20px;
font-weight: 200;
line-height: 24px;
margin-top: 0;
margin-bottom: 0;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
border-bottom: 0;
}
.form-table {
margin-top: 0;
border: 1px solid #e5e5e5;
border-top: 0;
border-left: 3px solid #85C8EB;
}
.form-table tr > td {
padding-bottom: 24px;
}
.form-table th {
padding-left: 24px;
}
select {
max-width: 300px;
}
.ui-slider {
max-width: 600px;
}
.ui-slider {
margin: 4px 0;
}
.submit-footer {
margin-top: 40px;
}
.submit-footer .submit {
display: inline-block;
margin-right: 100px;
vertical-align: top;
}
.iris-picker .iris-slider-offset {
left: 0;
right: 0;
bottom: -3px;
top: -4px !important;
width: 98% !important;
height: 99% !important;
background: transparent !important;
}
.one-click {
width: 260px;
height: 60px;
background: url(../../images/oneclick.png) no-repeat top left;
border: 0;
box-shadow: none;
text-indent: -9000px;
cursor: pointer;
position: relative;
top: -5px;
}
.one-click focus {
outline: none;
}
.one-click:hover {
background-position: bottom left;
}
/* imgradio field style */
div.ui-imgradio div.imgradio-col {
float: left;
}
div.imgradio-col.col2 {
margin: 0 5% 5% 0;
width: 45%;
}
div.imgradio-col.col3 {
margin: 0 3% 3% 0;
width: 30%;
}
div.imgradio-col.col4 {
margin: 0 2% 2% 0;
width: 23%;
}
div.imgradio-col.col5 {
margin: 0 2% 2% 0;
width: 18%;
}
div.imgradio-col label, div.imgradio-col label:hover {
background-size: 100%;
width: 100%;
height: 100%;
background-position: top center;
background-repeat: no-repeat;
}
div.imgradio-col label span, div.imgradio-col label:hover span {
padding: 67% 0 0 0 !important;
box-sizing: border-box;
font-size: 12px;
margin-bottom: 5px;
}
/* White Boxes*/
.white-box {
margin-bottom: 0px;
padding-bottom: 6px;
font-weight: 300;
font-size: 20px;
padding: 20px;
border-top: 1px solid #e5e5e5;
border-left: 3px solid #85C8EB;
border-right: 1px solid #e5e5e5;
background: #fff;
margin-bottom: 60px;
}
.white-box:before,
.white-box:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.white-box:after {
clear: both;
}
/* Big Form */
.big-form {
margin: 24px 0;
}
.big-form label {
display: block;
text-transform: uppercase;
font-size: 13px;
margin-bottom: 6px;
font-weight: 700;
}
.big-form input {
border: 1px solid #dfdfdf;
width: 100%;
height: 48px;
line-height: 48px;
margin-bottom: 24px;
max-width: 600px;
font-size: 24px;
transition: all .2s;
}
.big-form input:focus {
box-shadow: 3px 0px 0px #85C8EB inset;
outline: none;
border-color: #85C8EB
}
.big-form .button {
width: 100%;
height: 48px;
line-height: 48px;
max-width: 600px;
}
.video-image {
width: 200px;
height: 150px;
display: block;
background: url(../../images/play.png) no-repeat center;
margin: 24px auto;
}
.youtube {
text-decoration: none;
display: block;
width: 100%;
padding: 25px;
box-sizing: border-box;
max-width: 500px;
margin: 0 auto;
text-transform: uppercase;
font-weight: 700;
font-size: 13px;
}
/* Text alignment Classes */
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
/* Small Grid Framework */
.half,
.big,
.small {
box-sizing: border-box;
}
.half {
width: 50%;
}
.big {
width: 75%;
}
.small {
width: 25%;
}
.half:first-child, .small:first-child, .big:first-child {
padding-right: 20px;
}
.left-part {
float: left;
}
.right-part {
float: right;
} | 0.478285 | 0.12179 |
body, table, div, p, dl
{
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: 13px;
line-height: 1.4;
}
body
{
color: black;
margin: 0;
background-color:White;
}
h1, h2, h3
{
}
/** Wrapper of all the body contents on the page. */
div.contents
{
/* box-shadow: 0px 3px 10px #777;*/
width: 1024px;
background-color: white;
padding: 0px 20px;
margin-bottom: 10px;
border-radius: 4px;
}
.image
{
text-align: left;
}
.image2
{
text-align: center;
}
div.image, div.image2
{
padding: 0px 0px 0px 0px;
width:2px;
margin: 5px 0px 5px 0px;
}
img {
-webkit-box-shadow: 2px 2px 3px #7C7C7C;
box-shadow: 2px 2px 3px #7C7C7C;
}
img.simple {
-webkit-box-shadow: none;
box-shadow: none;
}
#projectname
{
color:#D31919;
vertical-align: middle;
}
/** Contains the logo image */
#projectlogo
{
text-align: center;
vertical-align: middle;
border-collapse: separate;
}
/** The actual logo image */
#projectlogo img
{
border: 0px none;
-webkit-box-shadow: 0px 0px 0px #7C7C7C;
box-shadow: 0px 0px 0px #7C7C7C;
}
#projectnumber
{
font: 50% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
/** The title of the current page, right below the tabs. */
div.header
{
background-image: none;
background-color: inherit;
border-bottom: 1px solid #C4CFE5;
}
/** The upper title area, with Logo, Title and Brief Description */
#titlearea
{
padding: 10px 10px 10px 25px;
box-shadow: 1px 1px 1px #999;
margin-bottom: 5px;
border-bottom: 1px solid #C4CFE5;
border-top: 1px solid #C4CFE5;
background-repeat:repeat-x;
background-color: #EDF0F6;
}
/** The actual title of the current page. See above.
* CSS3 Experiments! */
div.headertitle
{
padding: 5px 0px 0px 30px;
text-align: left;
margin-bottom: 0px;
}
h2.groupheader {
}
.header, .headertitle, .title
{
color:Black;
}
.textblock
{
width: 1024px;
}
#footer_text
{
width:1024px;
font-size:smaller;
}
hr.footer {
display: none;
}
.footer {
background-color: #AAA;
text-align:center;
}
.footer_div
{
background-image:none;
background-color: #EDF0F6;
margin: 0px;
border-bottom: 1px solid #C4CFE5;
Color:Gray;
border-top: 1px solid Gray;
text-align:center;
font-size:small;
}
/* This class is used to format frame of text in the help file */
dl.section dd
{
padding: 4px;
margin: 4px;
background-color: #FBFCFD;
border: 1px solid #C4CFE5;
} | CodeXL/Help/CodeXLHelpStyle.css |
body, table, div, p, dl
{
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: 13px;
line-height: 1.4;
}
body
{
color: black;
margin: 0;
background-color:White;
}
h1, h2, h3
{
}
/** Wrapper of all the body contents on the page. */
div.contents
{
/* box-shadow: 0px 3px 10px #777;*/
width: 1024px;
background-color: white;
padding: 0px 20px;
margin-bottom: 10px;
border-radius: 4px;
}
.image
{
text-align: left;
}
.image2
{
text-align: center;
}
div.image, div.image2
{
padding: 0px 0px 0px 0px;
width:2px;
margin: 5px 0px 5px 0px;
}
img {
-webkit-box-shadow: 2px 2px 3px #7C7C7C;
box-shadow: 2px 2px 3px #7C7C7C;
}
img.simple {
-webkit-box-shadow: none;
box-shadow: none;
}
#projectname
{
color:#D31919;
vertical-align: middle;
}
/** Contains the logo image */
#projectlogo
{
text-align: center;
vertical-align: middle;
border-collapse: separate;
}
/** The actual logo image */
#projectlogo img
{
border: 0px none;
-webkit-box-shadow: 0px 0px 0px #7C7C7C;
box-shadow: 0px 0px 0px #7C7C7C;
}
#projectnumber
{
font: 50% Tahoma, Arial,sans-serif;
margin: 0px;
padding: 0px;
}
/** The title of the current page, right below the tabs. */
div.header
{
background-image: none;
background-color: inherit;
border-bottom: 1px solid #C4CFE5;
}
/** The upper title area, with Logo, Title and Brief Description */
#titlearea
{
padding: 10px 10px 10px 25px;
box-shadow: 1px 1px 1px #999;
margin-bottom: 5px;
border-bottom: 1px solid #C4CFE5;
border-top: 1px solid #C4CFE5;
background-repeat:repeat-x;
background-color: #EDF0F6;
}
/** The actual title of the current page. See above.
* CSS3 Experiments! */
div.headertitle
{
padding: 5px 0px 0px 30px;
text-align: left;
margin-bottom: 0px;
}
h2.groupheader {
}
.header, .headertitle, .title
{
color:Black;
}
.textblock
{
width: 1024px;
}
#footer_text
{
width:1024px;
font-size:smaller;
}
hr.footer {
display: none;
}
.footer {
background-color: #AAA;
text-align:center;
}
.footer_div
{
background-image:none;
background-color: #EDF0F6;
margin: 0px;
border-bottom: 1px solid #C4CFE5;
Color:Gray;
border-top: 1px solid Gray;
text-align:center;
font-size:small;
}
/* This class is used to format frame of text in the help file */
dl.section dd
{
padding: 4px;
margin: 4px;
background-color: #FBFCFD;
border: 1px solid #C4CFE5;
} | 0.352425 | 0.088347 |
@font-face {
font-family: 'Maven Regular';
src: url('font/MavenPro-Regular.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Medium';
src: url('font/MavenPro-Medium.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Bold';
src: url('font/MavenPro-Bold.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Black';
src: url('font/MavenPro-Black.woff') format('woff');
font-display: fallback;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
color: #4a4a4a;
background: #fffffd;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2.25rem;
line-height: 1.1;
}
h2 {
margin: 0;
padding: 0;
margin-bottom: 2rem;
color: inherit;
font-family: 'Maven Black', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2rem;
line-height: 1.1;
text-align: center;
}
h3 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: 'Maven Black', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2.2rem;
line-height: 1.1;
}
h4 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: 'Maven Regular', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 1.2rem;
line-height: 1.7rem;
margin-top: 20px;
text-align: center;
}
h5 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 0.85028rem;
line-height: 1.1;
}
h6 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 0.78405rem;
line-height: 1.1;
}
p {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8rem;
line-height: 20px;
text-align: center;
}
@media (min-width: 575px) {
h4 {
font-size: 2rem;
line-height: 2.5rem;
margin-top: 0;
}
p {
text-align: left;
font-size: 1rem;
line-height: 26px;
}
}
@media (min-width: 768px) {
h2,
h4,
p {
text-align: left;
}
h4 {
font-size: 2rem;
line-height: 2.5rem;
}
}
@media (min-width: 1200px) {
h2 {
font-size: 3rem;
}
h4 {
font-size: 2.2rem;
}
p {
font-size: 1.2rem;
}
} | src/global.css | @font-face {
font-family: 'Maven Regular';
src: url('font/MavenPro-Regular.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Medium';
src: url('font/MavenPro-Medium.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Bold';
src: url('font/MavenPro-Bold.woff') format('woff');
font-display: fallback;
}
@font-face {
font-family: 'Maven Black';
src: url('font/MavenPro-Black.woff') format('woff');
font-display: fallback;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
color: #4a4a4a;
background: #fffffd;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h1 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2.25rem;
line-height: 1.1;
}
h2 {
margin: 0;
padding: 0;
margin-bottom: 2rem;
color: inherit;
font-family: 'Maven Black', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2rem;
line-height: 1.1;
text-align: center;
}
h3 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: 'Maven Black', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 2.2rem;
line-height: 1.1;
}
h4 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: 'Maven Regular', Arial, Helvetica, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 1.2rem;
line-height: 1.7rem;
margin-top: 20px;
text-align: center;
}
h5 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 0.85028rem;
line-height: 1.1;
}
h6 {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
color: inherit;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-weight: bold;
text-rendering: optimizeLegibility;
font-size: 0.78405rem;
line-height: 1.1;
}
p {
margin: 0;
padding: 0;
margin-bottom: 1.45rem;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.8rem;
line-height: 20px;
text-align: center;
}
@media (min-width: 575px) {
h4 {
font-size: 2rem;
line-height: 2.5rem;
margin-top: 0;
}
p {
text-align: left;
font-size: 1rem;
line-height: 26px;
}
}
@media (min-width: 768px) {
h2,
h4,
p {
text-align: left;
}
h4 {
font-size: 2rem;
line-height: 2.5rem;
}
}
@media (min-width: 1200px) {
h2 {
font-size: 3rem;
}
h4 {
font-size: 2.2rem;
}
p {
font-size: 1.2rem;
}
} | 0.458591 | 0.064713 |
.navbar-side {
height: 100%;
max-width: 50rem;
font-size: 1.6rem;
position: fixed;
top: 0;
right: 0;
padding: 0;
list-style: none;
background-color: #fff;
overflow-y: scroll;
z-index: 1000;
}
section#tools\ to {
border-bottom: 1px solid #dddddd;
/* margin-top: 15px; */
}
.sidehead {
padding: 2px 2px 36px 0px;
font-size: 16px !important;
}
.add_btn {
border-bottom: 1px solid #ddd;
padding-bottom: 11px;
}
.card-outline-secondary {
margin-left: 14px;
}
@media (min-width: 320px) {
.navbar-side {
width: 80%;
}
}
.navbar-side-item {
margin-bottom: .2rem;
height: 3rem;
font-weight: 300;
}
.navbar-side-item {
padding: 1.5rem 0 4rem 0;
}
@media (min-width: 320px) and (max-width: 484px) {
.navbar-side {
width: 85%;
}
.navbar-side-item {
padding: 1.5rem 0 4rem 0;
}
.navbar-side-item a {
font-size: 1.4rem;
}
}
.navbar-side-item:hover {
background-color: #27293d;
}
.navbar-side-item a {
display: inline-block;
}
.side-link {
padding-left: 1.7rem;
padding-right: 1.2rem;
color: #e3e3e3;
}
.side-link:active,
.side-link:hover {
text-decoration: none;
color: #e3e3e3;
}
.navbar-side {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: 400ms ease;
transition: 400ms ease;
}
.reveal {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
-webkit-transition: 400ms ease;
transition: 400ms ease;
}
.overlay {
position: fixed;
display: none;
top: 0;
left: 0;
right: 0;
bottom: 0;
cursor: pointer;
background-color: #27293d;
opacity: .6;
z-index: 990;
}
.card-title.to {
color: #32325d !important;
font-weight: 500 !important;
text-align: center;
font-size: 18px;
}
.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
border: none;
}
.sideinput {
border-bottom: 1px solid #32325d;
border-left: 0px;
border-right: 0px;
border-top: 0px;
background: none;
}
.textareades {
background: none;
width: 100%;
height: 50px;
}
.circle__content {
font-size: 15px;
color: #27293d;
}
.content{
font-size: 15px;
color: #32325d;
}
ul#menu li {
display:inline;
}
#menutooo {
display:inline;
}
.spantext {
font-size: 18px;
}
.inputtext {
border: 0px;
background: none;
border-bottom: 2px solid #fff;
}
.searchbar{
border-bottom: 1px solid #ddd;
border-top: 0px;
border-radius: 0px;
border-left: 0px;
border-right: 0px;
background: none;
padding: 5px 0px 5px;
}
.main {
width: 50%;
/*margin: 50px auto;*/
}
.has-search .form-control {
padding-left: 2.375rem;
border-left: 0px;
border-right: 0px;
border-top: 0px;
border-radius: 0px;
}
.circle {
position: relative;
display: block;
background-color: transparent;
color: #222;
text-align: center;
float: left;
}
.circle:after {
display: block;
padding-bottom: 10%;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: #ddd;
content: "";
}
.circle__inner {
position: absolute;
top: 0;
}
.circle-icon {
width: 10px;
height: 10px;
padding: 10px;
text-align: center;
background-color: red;
margin-bottom: 5%;
border-top: 5px solid red;
}
.addright {
float: right;
padding: 0px 12px;
color: #525f7f;
}
.spancol {
font-size: 15px;
color: #525f7f;
}
.secside {
background: #fff;
text-align: center;
height: 700px;
border-right: 1px solid #dddddd;
width: 243px;
}
ul#dock\ secside {
margin: 10px 0 0 0;
padding: 0;
width: 250px;
list-style: none;
text-align: center;
color: #ecf0f1;
}
.headpara {
font-size: 14px;
}
.tim-row{
margin-bottom: 20px;
}
.tim-white-buttons {
background-color: #777777;
}
.typography-line{
padding-left: 25%;
margin-bottom: 35px;
position: relative;
display: block;
width: 100%;
}
.typography-line span{
color: #c0c1c2;
display: block;
font-weight: 400;
font-size: 13px;
line-height: 13px;
left: 0;
position: absolute;
width: 260px;
text-transform: none;
}
.tim-row{
padding-top: 60px;
}
.tim-row h3{
margin-top: 0;
}
.offline-doc .page-header:before {
content: "";
background: rgba(0,0,0,.75);
}
.offline-doc .page-header{
display: flex;
align-items: center;
}
.offline-doc .footer{
position: absolute;
width: 100%;
background: transparent;
bottom: 0;
color: #fff;
z-index: 1;
}
#map {
position: relative;
width: 100%;
height: 100vh;
} | public/custom/stylesheets/demo.css | .navbar-side {
height: 100%;
max-width: 50rem;
font-size: 1.6rem;
position: fixed;
top: 0;
right: 0;
padding: 0;
list-style: none;
background-color: #fff;
overflow-y: scroll;
z-index: 1000;
}
section#tools\ to {
border-bottom: 1px solid #dddddd;
/* margin-top: 15px; */
}
.sidehead {
padding: 2px 2px 36px 0px;
font-size: 16px !important;
}
.add_btn {
border-bottom: 1px solid #ddd;
padding-bottom: 11px;
}
.card-outline-secondary {
margin-left: 14px;
}
@media (min-width: 320px) {
.navbar-side {
width: 80%;
}
}
.navbar-side-item {
margin-bottom: .2rem;
height: 3rem;
font-weight: 300;
}
.navbar-side-item {
padding: 1.5rem 0 4rem 0;
}
@media (min-width: 320px) and (max-width: 484px) {
.navbar-side {
width: 85%;
}
.navbar-side-item {
padding: 1.5rem 0 4rem 0;
}
.navbar-side-item a {
font-size: 1.4rem;
}
}
.navbar-side-item:hover {
background-color: #27293d;
}
.navbar-side-item a {
display: inline-block;
}
.side-link {
padding-left: 1.7rem;
padding-right: 1.2rem;
color: #e3e3e3;
}
.side-link:active,
.side-link:hover {
text-decoration: none;
color: #e3e3e3;
}
.navbar-side {
-webkit-transform: translateX(100%);
-ms-transform: translateX(100%);
transform: translateX(100%);
-webkit-transition: 400ms ease;
transition: 400ms ease;
}
.reveal {
-webkit-transform: translateX(0%);
-ms-transform: translateX(0%);
transform: translateX(0%);
-webkit-transition: 400ms ease;
transition: 400ms ease;
}
.overlay {
position: fixed;
display: none;
top: 0;
left: 0;
right: 0;
bottom: 0;
cursor: pointer;
background-color: #27293d;
opacity: .6;
z-index: 990;
}
.card-title.to {
color: #32325d !important;
font-weight: 500 !important;
text-align: center;
font-size: 18px;
}
.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
border: none;
}
.sideinput {
border-bottom: 1px solid #32325d;
border-left: 0px;
border-right: 0px;
border-top: 0px;
background: none;
}
.textareades {
background: none;
width: 100%;
height: 50px;
}
.circle__content {
font-size: 15px;
color: #27293d;
}
.content{
font-size: 15px;
color: #32325d;
}
ul#menu li {
display:inline;
}
#menutooo {
display:inline;
}
.spantext {
font-size: 18px;
}
.inputtext {
border: 0px;
background: none;
border-bottom: 2px solid #fff;
}
.searchbar{
border-bottom: 1px solid #ddd;
border-top: 0px;
border-radius: 0px;
border-left: 0px;
border-right: 0px;
background: none;
padding: 5px 0px 5px;
}
.main {
width: 50%;
/*margin: 50px auto;*/
}
.has-search .form-control {
padding-left: 2.375rem;
border-left: 0px;
border-right: 0px;
border-top: 0px;
border-radius: 0px;
}
.circle {
position: relative;
display: block;
background-color: transparent;
color: #222;
text-align: center;
float: left;
}
.circle:after {
display: block;
padding-bottom: 10%;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: #ddd;
content: "";
}
.circle__inner {
position: absolute;
top: 0;
}
.circle-icon {
width: 10px;
height: 10px;
padding: 10px;
text-align: center;
background-color: red;
margin-bottom: 5%;
border-top: 5px solid red;
}
.addright {
float: right;
padding: 0px 12px;
color: #525f7f;
}
.spancol {
font-size: 15px;
color: #525f7f;
}
.secside {
background: #fff;
text-align: center;
height: 700px;
border-right: 1px solid #dddddd;
width: 243px;
}
ul#dock\ secside {
margin: 10px 0 0 0;
padding: 0;
width: 250px;
list-style: none;
text-align: center;
color: #ecf0f1;
}
.headpara {
font-size: 14px;
}
.tim-row{
margin-bottom: 20px;
}
.tim-white-buttons {
background-color: #777777;
}
.typography-line{
padding-left: 25%;
margin-bottom: 35px;
position: relative;
display: block;
width: 100%;
}
.typography-line span{
color: #c0c1c2;
display: block;
font-weight: 400;
font-size: 13px;
line-height: 13px;
left: 0;
position: absolute;
width: 260px;
text-transform: none;
}
.tim-row{
padding-top: 60px;
}
.tim-row h3{
margin-top: 0;
}
.offline-doc .page-header:before {
content: "";
background: rgba(0,0,0,.75);
}
.offline-doc .page-header{
display: flex;
align-items: center;
}
.offline-doc .footer{
position: absolute;
width: 100%;
background: transparent;
bottom: 0;
color: #fff;
z-index: 1;
}
#map {
position: relative;
width: 100%;
height: 100vh;
} | 0.294722 | 0.086864 |
body {
padding-top: 50px;
padding-bottom: 20px;
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 100px;
height: 100px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Style the tab */
.tabs-left, .tabs-right {
border-bottom: none;
padding-top: 2px;
}
.tabs-left {
border-right: 1px solid #ddd;
}
.tabs-right {
border-left: 1px solid #ddd;
}
.tabs-left > li, .tabs-right > li {
float: none;
margin-bottom: 2px;
}
.tabs-left > li {
margin-right: -1px;
}
.tabs-right > li {
margin-left: -1px;
}
.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
border-bottom-color: #ddd;
border-right-color: transparent;
}
.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
border-bottom: 1px solid #ddd;
border-left-color: transparent;
}
.tabs-left > li > a {
border-radius: 4px 0 0 4px;
margin-right: 0;
display: block;
}
.tabs-right > li > a {
border-radius: 0 4px 4px 0;
margin-right: 0;
}
.vertical-text {
margin-top: 50px;
border: none;
position: relative;
}
.vertical-text > li {
height: 20px;
width: 120px;
margin-bottom: 100px;
}
.vertical-text > li > a {
border-bottom: 1px solid #ddd;
border-right-color: transparent;
text-align: center;
border-radius: 4px 4px 0px 0px;
}
.vertical-text > li.active > a,
.vertical-text > li.active > a:hover,
.vertical-text > li.active > a:focus {
border-bottom-color: transparent;
border-right-color: #ddd;
border-left-color: #ddd;
}
.vertical-text.tabs-left {
left: -50px;
}
.vertical-text.tabs-right {
right: -50px;
}
.vertical-text.tabs-right > li {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.vertical-text.tabs-left > li {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
} | ActivitiesManager.WebApp/wwwroot/css/site.css | body {
padding-top: 50px;
padding-bottom: 20px;
}
/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
padding-left: 15px;
padding-right: 15px;
}
.loader {
border: 16px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid #3498db;
width: 100px;
height: 100px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* Style the tab */
.tabs-left, .tabs-right {
border-bottom: none;
padding-top: 2px;
}
.tabs-left {
border-right: 1px solid #ddd;
}
.tabs-right {
border-left: 1px solid #ddd;
}
.tabs-left > li, .tabs-right > li {
float: none;
margin-bottom: 2px;
}
.tabs-left > li {
margin-right: -1px;
}
.tabs-right > li {
margin-left: -1px;
}
.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
border-bottom-color: #ddd;
border-right-color: transparent;
}
.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
border-bottom: 1px solid #ddd;
border-left-color: transparent;
}
.tabs-left > li > a {
border-radius: 4px 0 0 4px;
margin-right: 0;
display: block;
}
.tabs-right > li > a {
border-radius: 0 4px 4px 0;
margin-right: 0;
}
.vertical-text {
margin-top: 50px;
border: none;
position: relative;
}
.vertical-text > li {
height: 20px;
width: 120px;
margin-bottom: 100px;
}
.vertical-text > li > a {
border-bottom: 1px solid #ddd;
border-right-color: transparent;
text-align: center;
border-radius: 4px 4px 0px 0px;
}
.vertical-text > li.active > a,
.vertical-text > li.active > a:hover,
.vertical-text > li.active > a:focus {
border-bottom-color: transparent;
border-right-color: #ddd;
border-left-color: #ddd;
}
.vertical-text.tabs-left {
left: -50px;
}
.vertical-text.tabs-right {
right: -50px;
}
.vertical-text.tabs-right > li {
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.vertical-text.tabs-left > li {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
transform: rotate(-90deg);
} | 0.617859 | 0.129595 |
.steps-wrapper {
position: relative;
padding: 70px 0;
}
.steps-wrapper__text {
font-weight: 700;
font-style: normal;
color: #185795;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 0.9px;
margin: 0 0 18px 0;
}
.steps-wrapper__title {
font-weight: 700;
font-style: normal;
color: #464744;
text-transform: uppercase;
font-size: 40px;
margin: 0 0 30px 0;
}
.step {
display: flex;
justify-content: space-between;
}
.step-content {
width: 66.6%;
padding-right: 40px;
}
.step-list {
margin-bottom: 20px;
}
.step-list li {
position: relative;
padding-left: 14px;
line-height: 24px;
margin-bottom: 6px;
font-size: 18px;
color: #6b6c68;
}
.step-list li::before {
position: absolute;
content: "";
left: 0;
top: 9px;
width: 5px;
height: 5px;
background-color: #16bcca;
border-radius: 50%;
}
.step-list li span {
font-weight: 700;
}
.step-list__text {
color: #464744;
line-height: 24px;
font-size: 18px;
font-weight: 700;
}
.step-nested-list {
padding: 10px 10px 10px 40px;
}
.step-nested-list li {
position: relative;
font-size: 16px;
}
.step-nested-list li::before {
position: absolute;
content: "";
left: -6px;
top: 12px;
width: 10px;
height: 2px;
background-color: #16bcca;
border-radius: 0;
}
.step-img {
width: 33.3%;
padding: 0 14px;
}
.step-img img {
display: block;
width: 100%;
}
.step-services-wrapper {
margin-top: 80px;
}
.step-services {
display: flex;
align-items: center;
}
.step-services li {
position: relative;
width: 25%;
display: flex;
align-items: center;
margin-right: 20px;
}
.step-services li:last-child {
margin-right: 0;
}
.step-services__icon {
display: flex;
justify-content: center;
align-items: center;
min-width: 60px;
min-height: 60px;
width: 60px;
height: 60px;
margin-right: 10px;
}
.step-services__icon img {
display: block;
width: 100%;
}
.step-services__text {
color: #464744;
font-size: 16px;
font-weight: 700;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 0.4px;
margin: 0;
} | css/steps.css | .steps-wrapper {
position: relative;
padding: 70px 0;
}
.steps-wrapper__text {
font-weight: 700;
font-style: normal;
color: #185795;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 0.9px;
margin: 0 0 18px 0;
}
.steps-wrapper__title {
font-weight: 700;
font-style: normal;
color: #464744;
text-transform: uppercase;
font-size: 40px;
margin: 0 0 30px 0;
}
.step {
display: flex;
justify-content: space-between;
}
.step-content {
width: 66.6%;
padding-right: 40px;
}
.step-list {
margin-bottom: 20px;
}
.step-list li {
position: relative;
padding-left: 14px;
line-height: 24px;
margin-bottom: 6px;
font-size: 18px;
color: #6b6c68;
}
.step-list li::before {
position: absolute;
content: "";
left: 0;
top: 9px;
width: 5px;
height: 5px;
background-color: #16bcca;
border-radius: 50%;
}
.step-list li span {
font-weight: 700;
}
.step-list__text {
color: #464744;
line-height: 24px;
font-size: 18px;
font-weight: 700;
}
.step-nested-list {
padding: 10px 10px 10px 40px;
}
.step-nested-list li {
position: relative;
font-size: 16px;
}
.step-nested-list li::before {
position: absolute;
content: "";
left: -6px;
top: 12px;
width: 10px;
height: 2px;
background-color: #16bcca;
border-radius: 0;
}
.step-img {
width: 33.3%;
padding: 0 14px;
}
.step-img img {
display: block;
width: 100%;
}
.step-services-wrapper {
margin-top: 80px;
}
.step-services {
display: flex;
align-items: center;
}
.step-services li {
position: relative;
width: 25%;
display: flex;
align-items: center;
margin-right: 20px;
}
.step-services li:last-child {
margin-right: 0;
}
.step-services__icon {
display: flex;
justify-content: center;
align-items: center;
min-width: 60px;
min-height: 60px;
width: 60px;
height: 60px;
margin-right: 10px;
}
.step-services__icon img {
display: block;
width: 100%;
}
.step-services__text {
color: #464744;
font-size: 16px;
font-weight: 700;
line-height: 20px;
text-transform: uppercase;
letter-spacing: 0.4px;
margin: 0;
} | 0.454714 | 0.140218 |
.flex {
display: flex;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.row {
display: flex;
flex-direction: row;
}
.row-reverse {
display: flex;
flex-direction: row-reverse;
}
.column {
display: flex;
flex-direction: column;
}
.column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
/* align-items */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
/* align content */
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-stretch { align-content: stretch; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
/* flex order */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-6 { order: 6; }
.order-7 { order: 7; }
.order-8 { order: 8; }
.order-9 { order: 9; }
.order-10 { order: 10;}
/* Flex grow */
.grow-1 { flex-grow: 1; }
.grow-2 { flex-grow: 2; }
.grow-3 { flex-grow: 3; }
.grow-4 { flex-grow: 4; }
.grow-5 { flex-grow: 5; }
.grow-6 { flex-grow: 6; }
.grow-7 { flex-grow: 7; }
.grow-8 { flex-grow: 8; }
.grow-9 { flex-grow: 9; }
.grow-10 { flex-grow: 10; }
/* Align Self */
.align-self-auto { align-self: auto; }
.align-self-start { align-self: flex-start; }
.align-self-end { align-self: flex-end; }
.align-self-center { align-self: center; }
.align-self-baseline { align-self: baseline; }
.align-self-stretch { align-self: stretch; }
/* Small only */
@media screen and (max-width: 39.9375em) {
/* Flex parent */
.so-flex {
display: flex;
}
.so-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.so-row {
display: flex;
flex-direction: row;
}
.so-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.so-column {
display: flex;
flex-direction: column;
}
.so-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.so-flex-wrap { flex-wrap: wrap; }
.so-flex-nowrap { flex-wrap: nowrap; }
.so-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.so-justify-start { justify-content: flex-start; }
.so-justify-end { justify-content: flex-end; }
.so-justify-center { justify-content: center; }
.so-justify-between { justify-content: space-between; }
.so-justify-around { justify-content: space-around; }
/* align-items */
.so-items-start { align-items: flex-start; }
.so-items-end { align-items: flex-end; }
.so-items-center { align-items: center; }
.so-items-stretch { align-items: stretch; }
.so-items-baseline { align-items: baseline; }
/* align content */
.so-content-start { align-content: flex-start; }
.so-content-end { align-content: flex-end; }
.so-content-center { align-content: center; }
.so-content-stretch { align-content: stretch; }
.so-content-between { align-content: space-between; }
.so-content-around { align-content: space-around; }
/* flex order */
.so-order-1 { order: 1; }
.so-order-2 { order: 2; }
.so-order-3 { order: 3; }
.so-order-4 { order: 4; }
.so-order-5 { order: 5; }
.so-order-6 { order: 6; }
.so-order-7 { order: 7; }
.so-order-8 { order: 8; }
.so-order-9 { order: 9; }
.so-order-10 { order: 10;}
/* Flex grow */
.so-grow-1 { flex-grow: 1; }
.so-grow-2 { flex-grow: 2; }
.so-grow-3 { flex-grow: 3; }
.so-grow-4 { flex-grow: 4; }
.so-grow-5 { flex-grow: 5; }
.so-grow-6 { flex-grow: 6; }
.so-grow-7 { flex-grow: 7; }
.so-grow-8 { flex-grow: 8; }
.so-grow-9 { flex-grow: 9; }
.so-grow-10 { flex-grow: 10; }
/* Align Self */
.so-align-self-auto { align-self: auto; }
.so-align-self-start { align-self: flex-start; }
.so-align-self-end { align-self: flex-end; }
.so-align-self-center { align-self: center; }
.so-align-self-baseline { align-self: baseline; }
.so-align-self-stretch { align-self: stretch; }
}
/* Medium and up */
@media screen and (min-width: 40em) {
/* Flex parent */
.mu-flex {
display: flex;
}
.mu-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.mu-row {
display: flex;
flex-direction: row;
}
.mu-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.mu-column {
display: flex;
flex-direction: column;
}
.mu-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.mu-flex-wrap { flex-wrap: wrap; }
.mu-flex-nowrap { flex-wrap: nowrap; }
.mu-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.mu-justify-start { justify-content: flex-start; }
.mu-justify-end { justify-content: flex-end; }
.mu-justify-center { justify-content: center; }
.mu-justify-between { justify-content: space-between; }
.mu-justify-around { justify-content: space-around; }
/* align-items */
.mu-items-start { align-items: flex-start; }
.mu-items-end { align-items: flex-end; }
.mu-items-center { align-items: center; }
.mu-items-stretch { align-items: stretch; }
.mu-items-baseline { align-items: baseline; }
/* align content */
.mu-content-start { align-content: flex-start; }
.mu-content-end { align-content: flex-end; }
.mu-content-center { align-content: center; }
.mu-content-stretch { align-content: stretch; }
.mu-content-between { align-content: space-between; }
.mu-content-around { align-content: space-around; }
/* flex order */
.mu-order-1 { order: 1; }
.mu-order-2 { order: 2; }
.mu-order-3 { order: 3; }
.mu-order-4 { order: 4; }
.mu-order-5 { order: 5; }
.mu-order-6 { order: 6; }
.mu-order-7 { order: 7; }
.mu-order-8 { order: 8; }
.mu-order-9 { order: 9; }
.mu-order-10 { order: 10;}
/* Flex grow */
.mu-grow-1 { flex-grow: 1; }
.mu-grow-2 { flex-grow: 2; }
.mu-grow-3 { flex-grow: 3; }
.mu-grow-4 { flex-grow: 4; }
.mu-grow-5 { flex-grow: 5; }
.mu-grow-6 { flex-grow: 6; }
.mu-grow-7 { flex-grow: 7; }
.mu-grow-8 { flex-grow: 8; }
.mu-grow-9 { flex-grow: 9; }
.mu-grow-10 { flex-grow: 10; }
/* Align Self */
.mu-align-self-auto { align-self: auto; }
.mu-align-self-start { align-self: flex-start; }
.mu-align-self-end { align-self: flex-end; }
.mu-align-self-center { align-self: center; }
.mu-align-self-baseline { align-self: baseline; }
.mu-align-self-stretch { align-self: stretch; }
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
/* Flex parent */
.mo-flex {
display: flex;
}
.mo-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.mo-row {
display: flex;
flex-direction: row;
}
.mo-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.mo-column {
display: flex;
flex-direction: column;
}
.mo-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.mo-flex-wrap { flex-wrap: wrap; }
.mo-flex-nowrap { flex-wrap: nowrap; }
.mo-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.mo-justify-start { justify-content: flex-start; }
.mo-justify-end { justify-content: flex-end; }
.mo-justify-center { justify-content: center; }
.mo-justify-between { justify-content: space-between; }
.mo-justify-around { justify-content: space-around; }
/* align-items */
.mo-items-start { align-items: flex-start; }
.mo-items-end { align-items: flex-end; }
.mo-items-center { align-items: center; }
.mo-items-stretch { align-items: stretch; }
.mo-items-baseline { align-items: baseline; }
/* align content */
.mo-content-start { align-content: flex-start; }
.mo-content-end { align-content: flex-end; }
.mo-content-center { align-content: center; }
.mo-content-stretch { align-content: stretch; }
.mo-content-between { align-content: space-between; }
.mo-content-around { align-content: space-around; }
/* flex order */
.mo-order-1 { order: 1; }
.mo-order-2 { order: 2; }
.mo-order-3 { order: 3; }
.mo-order-4 { order: 4; }
.mo-order-5 { order: 5; }
.mo-order-6 { order: 6; }
.mo-order-7 { order: 7; }
.mo-order-8 { order: 8; }
.mo-order-9 { order: 9; }
.mo-order-10 { order: 10;}
/* Flex grow */
.mo-grow-1 { flex-grow: 1; }
.mo-grow-2 { flex-grow: 2; }
.mo-grow-3 { flex-grow: 3; }
.mo-grow-4 { flex-grow: 4; }
.mo-grow-5 { flex-grow: 5; }
.mo-grow-6 { flex-grow: 6; }
.mo-grow-7 { flex-grow: 7; }
.mo-grow-8 { flex-grow: 8; }
.mo-grow-9 { flex-grow: 9; }
.mo-grow-10 { flex-grow: 10; }
/* Align Self */
.mo-align-self-auto { align-self: auto; }
.mo-align-self-start { align-self: flex-start; }
.mo-align-self-end { align-self: flex-end; }
.mo-align-self-center { align-self: center; }
.mo-align-self-baseline { align-self: baseline; }
.mo-align-self-stretch { align-self: stretch; }
}
/* Large and up */
@media screen and (min-width: 64em) {
/* Flex parent */
.lu-flex {
display: flex;
}
.lu-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.lu-row {
display: flex;
flex-direction: row;
}
.lu-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.lu-column {
display: flex;
flex-direction: column;
}
.lu-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.lu-flex-wrap { flex-wrap: wrap; }
.lu-flex-nowrap { flex-wrap: nowrap; }
.lu-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.lu-justify-start { justify-content: flex-start; }
.lu-justify-end { justify-content: flex-end; }
.lu-justify-center { justify-content: center; }
.lu-justify-between { justify-content: space-between; }
.lu-justify-around { justify-content: space-around; }
/* align-items */
.lu-items-start { align-items: flex-start; }
.lu-items-end { align-items: flex-end; }
.lu-items-center { align-items: center; }
.lu-items-stretch { align-items: stretch; }
.lu-items-baseline { align-items: baseline; }
/* align content */
.lu-content-start { align-content: flex-start; }
.lu-content-end { align-content: flex-end; }
.lu-content-center { align-content: center; }
.lu-content-stretch { align-content: stretch; }
.lu-content-between { align-content: space-between; }
.lu-content-around { align-content: space-around; }
/* flex order */
.lu-order-1 { order: 1; }
.lu-order-2 { order: 2; }
.lu-order-3 { order: 3; }
.lu-order-4 { order: 4; }
.lu-order-5 { order: 5; }
.lu-order-6 { order: 6; }
.lu-order-7 { order: 7; }
.lu-order-8 { order: 8; }
.lu-order-9 { order: 9; }
.lu-order-10 { order: 10;}
/* Flex grow */
.lu-grow-1 { flex-grow: 1; }
.lu-grow-2 { flex-grow: 2; }
.lu-grow-3 { flex-grow: 3; }
.lu-grow-4 { flex-grow: 4; }
.lu-grow-5 { flex-grow: 5; }
.lu-grow-6 { flex-grow: 6; }
.lu-grow-7 { flex-grow: 7; }
.lu-grow-8 { flex-grow: 8; }
.lu-grow-9 { flex-grow: 9; }
.lu-grow-10 { flex-grow: 10; }
/* Align Self */
.lu-align-self-auto { align-self: auto; }
.lu-align-self-start { align-self: flex-start; }
.lu-align-self-end { align-self: flex-end; }
.lu-align-self-center { align-self: center; }
.lu-align-self-baseline { align-self: baseline; }
.lu-align-self-stretch { align-self: stretch; }
}
/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
/* Flex parent */
.lo-flex {
display: flex;
}
.lo-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.lo-row {
display: flex;
flex-direction: row;
}
.lo-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.lo-column {
display: flex;
flex-direction: column;
}
.lo-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.lo-flex-wrap { flex-wrap: wrap; }
.lo-flex-nowrap { flex-wrap: nowrap; }
.lo-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.lo-justify-start { justify-content: flex-start; }
.lo-justify-end { justify-content: flex-end; }
.lo-justify-center { justify-content: center; }
.lo-justify-between { justify-content: space-between; }
.lo-justify-around { justify-content: space-around; }
/* align-items */
.lo-items-start { align-items: flex-start; }
.lo-items-end { align-items: flex-end; }
.lo-items-center { align-items: center; }
.lo-items-stretch { align-items: stretch; }
.lo-items-baseline { align-items: baseline; }
/* align content */
.lo-content-start { align-content: flex-start; }
.lo-content-end { align-content: flex-end; }
.lo-content-center { align-content: center; }
.lo-content-stretch { align-content: stretch; }
.lo-content-between { align-content: space-between; }
.lo-content-around { align-content: space-around; }
/* flex order */
.lo-order-1 { order: 1; }
.lo-order-2 { order: 2; }
.lo-order-3 { order: 3; }
.lo-order-4 { order: 4; }
.lo-order-5 { order: 5; }
.lo-order-6 { order: 6; }
.lo-order-7 { order: 7; }
.lo-order-8 { order: 8; }
.lo-order-9 { order: 9; }
.lo-order-10 { order: 10;}
/* Flex grow */
.lo-grow-1 { flex-grow: 1; }
.lo-grow-2 { flex-grow: 2; }
.lo-grow-3 { flex-grow: 3; }
.lo-grow-4 { flex-grow: 4; }
.lo-grow-5 { flex-grow: 5; }
.lo-grow-6 { flex-grow: 6; }
.lo-grow-7 { flex-grow: 7; }
.lo-grow-8 { flex-grow: 8; }
.lo-grow-9 { flex-grow: 9; }
.lo-grow-10 { flex-grow: 10; }
/* Align Self */
.lo-align-self-auto { align-self: auto; }
.lo-align-self-start { align-self: flex-start; }
.lo-align-self-end { align-self: flex-end; }
.lo-align-self-center { align-self: center; }
.lo-align-self-baseline { align-self: baseline; }
.lo-align-self-stretch { align-self: stretch; }
} | src/css/flex.css | .flex {
display: flex;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.row {
display: flex;
flex-direction: row;
}
.row-reverse {
display: flex;
flex-direction: row-reverse;
}
.column {
display: flex;
flex-direction: column;
}
.column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
/* align-items */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.items-baseline { align-items: baseline; }
/* align content */
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-stretch { align-content: stretch; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
/* flex order */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-6 { order: 6; }
.order-7 { order: 7; }
.order-8 { order: 8; }
.order-9 { order: 9; }
.order-10 { order: 10;}
/* Flex grow */
.grow-1 { flex-grow: 1; }
.grow-2 { flex-grow: 2; }
.grow-3 { flex-grow: 3; }
.grow-4 { flex-grow: 4; }
.grow-5 { flex-grow: 5; }
.grow-6 { flex-grow: 6; }
.grow-7 { flex-grow: 7; }
.grow-8 { flex-grow: 8; }
.grow-9 { flex-grow: 9; }
.grow-10 { flex-grow: 10; }
/* Align Self */
.align-self-auto { align-self: auto; }
.align-self-start { align-self: flex-start; }
.align-self-end { align-self: flex-end; }
.align-self-center { align-self: center; }
.align-self-baseline { align-self: baseline; }
.align-self-stretch { align-self: stretch; }
/* Small only */
@media screen and (max-width: 39.9375em) {
/* Flex parent */
.so-flex {
display: flex;
}
.so-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.so-row {
display: flex;
flex-direction: row;
}
.so-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.so-column {
display: flex;
flex-direction: column;
}
.so-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.so-flex-wrap { flex-wrap: wrap; }
.so-flex-nowrap { flex-wrap: nowrap; }
.so-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.so-justify-start { justify-content: flex-start; }
.so-justify-end { justify-content: flex-end; }
.so-justify-center { justify-content: center; }
.so-justify-between { justify-content: space-between; }
.so-justify-around { justify-content: space-around; }
/* align-items */
.so-items-start { align-items: flex-start; }
.so-items-end { align-items: flex-end; }
.so-items-center { align-items: center; }
.so-items-stretch { align-items: stretch; }
.so-items-baseline { align-items: baseline; }
/* align content */
.so-content-start { align-content: flex-start; }
.so-content-end { align-content: flex-end; }
.so-content-center { align-content: center; }
.so-content-stretch { align-content: stretch; }
.so-content-between { align-content: space-between; }
.so-content-around { align-content: space-around; }
/* flex order */
.so-order-1 { order: 1; }
.so-order-2 { order: 2; }
.so-order-3 { order: 3; }
.so-order-4 { order: 4; }
.so-order-5 { order: 5; }
.so-order-6 { order: 6; }
.so-order-7 { order: 7; }
.so-order-8 { order: 8; }
.so-order-9 { order: 9; }
.so-order-10 { order: 10;}
/* Flex grow */
.so-grow-1 { flex-grow: 1; }
.so-grow-2 { flex-grow: 2; }
.so-grow-3 { flex-grow: 3; }
.so-grow-4 { flex-grow: 4; }
.so-grow-5 { flex-grow: 5; }
.so-grow-6 { flex-grow: 6; }
.so-grow-7 { flex-grow: 7; }
.so-grow-8 { flex-grow: 8; }
.so-grow-9 { flex-grow: 9; }
.so-grow-10 { flex-grow: 10; }
/* Align Self */
.so-align-self-auto { align-self: auto; }
.so-align-self-start { align-self: flex-start; }
.so-align-self-end { align-self: flex-end; }
.so-align-self-center { align-self: center; }
.so-align-self-baseline { align-self: baseline; }
.so-align-self-stretch { align-self: stretch; }
}
/* Medium and up */
@media screen and (min-width: 40em) {
/* Flex parent */
.mu-flex {
display: flex;
}
.mu-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.mu-row {
display: flex;
flex-direction: row;
}
.mu-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.mu-column {
display: flex;
flex-direction: column;
}
.mu-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.mu-flex-wrap { flex-wrap: wrap; }
.mu-flex-nowrap { flex-wrap: nowrap; }
.mu-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.mu-justify-start { justify-content: flex-start; }
.mu-justify-end { justify-content: flex-end; }
.mu-justify-center { justify-content: center; }
.mu-justify-between { justify-content: space-between; }
.mu-justify-around { justify-content: space-around; }
/* align-items */
.mu-items-start { align-items: flex-start; }
.mu-items-end { align-items: flex-end; }
.mu-items-center { align-items: center; }
.mu-items-stretch { align-items: stretch; }
.mu-items-baseline { align-items: baseline; }
/* align content */
.mu-content-start { align-content: flex-start; }
.mu-content-end { align-content: flex-end; }
.mu-content-center { align-content: center; }
.mu-content-stretch { align-content: stretch; }
.mu-content-between { align-content: space-between; }
.mu-content-around { align-content: space-around; }
/* flex order */
.mu-order-1 { order: 1; }
.mu-order-2 { order: 2; }
.mu-order-3 { order: 3; }
.mu-order-4 { order: 4; }
.mu-order-5 { order: 5; }
.mu-order-6 { order: 6; }
.mu-order-7 { order: 7; }
.mu-order-8 { order: 8; }
.mu-order-9 { order: 9; }
.mu-order-10 { order: 10;}
/* Flex grow */
.mu-grow-1 { flex-grow: 1; }
.mu-grow-2 { flex-grow: 2; }
.mu-grow-3 { flex-grow: 3; }
.mu-grow-4 { flex-grow: 4; }
.mu-grow-5 { flex-grow: 5; }
.mu-grow-6 { flex-grow: 6; }
.mu-grow-7 { flex-grow: 7; }
.mu-grow-8 { flex-grow: 8; }
.mu-grow-9 { flex-grow: 9; }
.mu-grow-10 { flex-grow: 10; }
/* Align Self */
.mu-align-self-auto { align-self: auto; }
.mu-align-self-start { align-self: flex-start; }
.mu-align-self-end { align-self: flex-end; }
.mu-align-self-center { align-self: center; }
.mu-align-self-baseline { align-self: baseline; }
.mu-align-self-stretch { align-self: stretch; }
}
/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
/* Flex parent */
.mo-flex {
display: flex;
}
.mo-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.mo-row {
display: flex;
flex-direction: row;
}
.mo-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.mo-column {
display: flex;
flex-direction: column;
}
.mo-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.mo-flex-wrap { flex-wrap: wrap; }
.mo-flex-nowrap { flex-wrap: nowrap; }
.mo-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.mo-justify-start { justify-content: flex-start; }
.mo-justify-end { justify-content: flex-end; }
.mo-justify-center { justify-content: center; }
.mo-justify-between { justify-content: space-between; }
.mo-justify-around { justify-content: space-around; }
/* align-items */
.mo-items-start { align-items: flex-start; }
.mo-items-end { align-items: flex-end; }
.mo-items-center { align-items: center; }
.mo-items-stretch { align-items: stretch; }
.mo-items-baseline { align-items: baseline; }
/* align content */
.mo-content-start { align-content: flex-start; }
.mo-content-end { align-content: flex-end; }
.mo-content-center { align-content: center; }
.mo-content-stretch { align-content: stretch; }
.mo-content-between { align-content: space-between; }
.mo-content-around { align-content: space-around; }
/* flex order */
.mo-order-1 { order: 1; }
.mo-order-2 { order: 2; }
.mo-order-3 { order: 3; }
.mo-order-4 { order: 4; }
.mo-order-5 { order: 5; }
.mo-order-6 { order: 6; }
.mo-order-7 { order: 7; }
.mo-order-8 { order: 8; }
.mo-order-9 { order: 9; }
.mo-order-10 { order: 10;}
/* Flex grow */
.mo-grow-1 { flex-grow: 1; }
.mo-grow-2 { flex-grow: 2; }
.mo-grow-3 { flex-grow: 3; }
.mo-grow-4 { flex-grow: 4; }
.mo-grow-5 { flex-grow: 5; }
.mo-grow-6 { flex-grow: 6; }
.mo-grow-7 { flex-grow: 7; }
.mo-grow-8 { flex-grow: 8; }
.mo-grow-9 { flex-grow: 9; }
.mo-grow-10 { flex-grow: 10; }
/* Align Self */
.mo-align-self-auto { align-self: auto; }
.mo-align-self-start { align-self: flex-start; }
.mo-align-self-end { align-self: flex-end; }
.mo-align-self-center { align-self: center; }
.mo-align-self-baseline { align-self: baseline; }
.mo-align-self-stretch { align-self: stretch; }
}
/* Large and up */
@media screen and (min-width: 64em) {
/* Flex parent */
.lu-flex {
display: flex;
}
.lu-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.lu-row {
display: flex;
flex-direction: row;
}
.lu-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.lu-column {
display: flex;
flex-direction: column;
}
.lu-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.lu-flex-wrap { flex-wrap: wrap; }
.lu-flex-nowrap { flex-wrap: nowrap; }
.lu-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.lu-justify-start { justify-content: flex-start; }
.lu-justify-end { justify-content: flex-end; }
.lu-justify-center { justify-content: center; }
.lu-justify-between { justify-content: space-between; }
.lu-justify-around { justify-content: space-around; }
/* align-items */
.lu-items-start { align-items: flex-start; }
.lu-items-end { align-items: flex-end; }
.lu-items-center { align-items: center; }
.lu-items-stretch { align-items: stretch; }
.lu-items-baseline { align-items: baseline; }
/* align content */
.lu-content-start { align-content: flex-start; }
.lu-content-end { align-content: flex-end; }
.lu-content-center { align-content: center; }
.lu-content-stretch { align-content: stretch; }
.lu-content-between { align-content: space-between; }
.lu-content-around { align-content: space-around; }
/* flex order */
.lu-order-1 { order: 1; }
.lu-order-2 { order: 2; }
.lu-order-3 { order: 3; }
.lu-order-4 { order: 4; }
.lu-order-5 { order: 5; }
.lu-order-6 { order: 6; }
.lu-order-7 { order: 7; }
.lu-order-8 { order: 8; }
.lu-order-9 { order: 9; }
.lu-order-10 { order: 10;}
/* Flex grow */
.lu-grow-1 { flex-grow: 1; }
.lu-grow-2 { flex-grow: 2; }
.lu-grow-3 { flex-grow: 3; }
.lu-grow-4 { flex-grow: 4; }
.lu-grow-5 { flex-grow: 5; }
.lu-grow-6 { flex-grow: 6; }
.lu-grow-7 { flex-grow: 7; }
.lu-grow-8 { flex-grow: 8; }
.lu-grow-9 { flex-grow: 9; }
.lu-grow-10 { flex-grow: 10; }
/* Align Self */
.lu-align-self-auto { align-self: auto; }
.lu-align-self-start { align-self: flex-start; }
.lu-align-self-end { align-self: flex-end; }
.lu-align-self-center { align-self: center; }
.lu-align-self-baseline { align-self: baseline; }
.lu-align-self-stretch { align-self: stretch; }
}
/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
/* Flex parent */
.lo-flex {
display: flex;
}
.lo-flex-center {
display: flex;
justify-content: center;
align-items: center;
}
/* flex direction */
.lo-row {
display: flex;
flex-direction: row;
}
.lo-row-reverse {
display: flex;
flex-direction: row-reverse;
}
.lo-column {
display: flex;
flex-direction: column;
}
.lo-column-reverse {
display: flex;
flex-direction: column-reverse;
}
/* flex-wrap */
.lo-flex-wrap { flex-wrap: wrap; }
.lo-flex-nowrap { flex-wrap: nowrap; }
.lo-flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* justify content */
.lo-justify-start { justify-content: flex-start; }
.lo-justify-end { justify-content: flex-end; }
.lo-justify-center { justify-content: center; }
.lo-justify-between { justify-content: space-between; }
.lo-justify-around { justify-content: space-around; }
/* align-items */
.lo-items-start { align-items: flex-start; }
.lo-items-end { align-items: flex-end; }
.lo-items-center { align-items: center; }
.lo-items-stretch { align-items: stretch; }
.lo-items-baseline { align-items: baseline; }
/* align content */
.lo-content-start { align-content: flex-start; }
.lo-content-end { align-content: flex-end; }
.lo-content-center { align-content: center; }
.lo-content-stretch { align-content: stretch; }
.lo-content-between { align-content: space-between; }
.lo-content-around { align-content: space-around; }
/* flex order */
.lo-order-1 { order: 1; }
.lo-order-2 { order: 2; }
.lo-order-3 { order: 3; }
.lo-order-4 { order: 4; }
.lo-order-5 { order: 5; }
.lo-order-6 { order: 6; }
.lo-order-7 { order: 7; }
.lo-order-8 { order: 8; }
.lo-order-9 { order: 9; }
.lo-order-10 { order: 10;}
/* Flex grow */
.lo-grow-1 { flex-grow: 1; }
.lo-grow-2 { flex-grow: 2; }
.lo-grow-3 { flex-grow: 3; }
.lo-grow-4 { flex-grow: 4; }
.lo-grow-5 { flex-grow: 5; }
.lo-grow-6 { flex-grow: 6; }
.lo-grow-7 { flex-grow: 7; }
.lo-grow-8 { flex-grow: 8; }
.lo-grow-9 { flex-grow: 9; }
.lo-grow-10 { flex-grow: 10; }
/* Align Self */
.lo-align-self-auto { align-self: auto; }
.lo-align-self-start { align-self: flex-start; }
.lo-align-self-end { align-self: flex-end; }
.lo-align-self-center { align-self: center; }
.lo-align-self-baseline { align-self: baseline; }
.lo-align-self-stretch { align-self: stretch; }
} | 0.536313 | 0.091342 |
.Conversation {
border-top: 1px solid #222222 !important;
background-color: #222222 !important;
}
.ReplyBox{
background-color: #393939 !important;
border-top: 1px solid #565656 !important;
}
.Messagebox {
color: #ffffff !important;
}
.MessageListItem-Date {
color: #bfbfbf !important;
}
.Message-inbound {
background-color: #393939 !important;
color: #ffffff !important;
}
.Message-outbound {
background-color: #00818a !important;
}
.Button-secondary{
color: #d6d6d6 !important;
background-color: #393939 !important;
border: 1px solid #505050 !important;
}
.Button-inverted {
color: #d6d6d6 !important;
background-color: #393939 !important;
border: 1px solid #505050 !important;
}
.ConversationHeader {
background-color: #393939 !important;
border-bottom: 1px solid #565656 !important;
}
.ConversationHeader--Body a{
color: #ffffff !important;
}
.Messagebox.jsx-1359264706 {
color: #ffffff !important;
background-color: #222222 !important;
border: 1px solid #565656 !important;
}
.BulkSelect {
color: #d6d6d6 !important;
background-color: #222222 !important;
border: 1px solid #505050 !important;
}
.ConversationListItem--Title {
color: #ffffff !important;
}
.ConversationListItem--Message {
color: #e6e6e6 !important;
}
.ConversationListItem {
color: #bfbfbf !important;
border-bottom: 1px solid #565656 !important;
}
.ConversationListItem.is-highlighted {
background-color: #393939 !important;
border-left: 2px solid #00818a !important;
}
.ConversationListItem:hover {
background-color: #393939 !important;
}
.ReplyBox textarea {
background-color: #222222 !important;
border: 1px solid #565656 !important;
color: #ffffff !important;
}
.Modal--Header h2 {
color: #ffffff !important;
}
.Modal--Body {
border-top: 1px solid #565656 !important;
}
.Modal--Body p{
color: #ffffff !important;
}
.ReplyAttachment {
border: 1px solid #565656 !important;
}
.ConversationList {
border-right: none !important;
border-top: 1px solid #565656 !important;
}
.Modal--Content {
background: #222222 !important;
border-radius: 15px !important;
border: none !important;
}
::-webkit-scrollbar-track
{
background-color: #222222;
}
::-webkit-scrollbar
{
width: 8px;
background-color: #222222;
}
::-webkit-scrollbar-thumb
{
background-color: #80808080;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
} | recipes/ebay-kleinanzeigen/darkmode.css | .Conversation {
border-top: 1px solid #222222 !important;
background-color: #222222 !important;
}
.ReplyBox{
background-color: #393939 !important;
border-top: 1px solid #565656 !important;
}
.Messagebox {
color: #ffffff !important;
}
.MessageListItem-Date {
color: #bfbfbf !important;
}
.Message-inbound {
background-color: #393939 !important;
color: #ffffff !important;
}
.Message-outbound {
background-color: #00818a !important;
}
.Button-secondary{
color: #d6d6d6 !important;
background-color: #393939 !important;
border: 1px solid #505050 !important;
}
.Button-inverted {
color: #d6d6d6 !important;
background-color: #393939 !important;
border: 1px solid #505050 !important;
}
.ConversationHeader {
background-color: #393939 !important;
border-bottom: 1px solid #565656 !important;
}
.ConversationHeader--Body a{
color: #ffffff !important;
}
.Messagebox.jsx-1359264706 {
color: #ffffff !important;
background-color: #222222 !important;
border: 1px solid #565656 !important;
}
.BulkSelect {
color: #d6d6d6 !important;
background-color: #222222 !important;
border: 1px solid #505050 !important;
}
.ConversationListItem--Title {
color: #ffffff !important;
}
.ConversationListItem--Message {
color: #e6e6e6 !important;
}
.ConversationListItem {
color: #bfbfbf !important;
border-bottom: 1px solid #565656 !important;
}
.ConversationListItem.is-highlighted {
background-color: #393939 !important;
border-left: 2px solid #00818a !important;
}
.ConversationListItem:hover {
background-color: #393939 !important;
}
.ReplyBox textarea {
background-color: #222222 !important;
border: 1px solid #565656 !important;
color: #ffffff !important;
}
.Modal--Header h2 {
color: #ffffff !important;
}
.Modal--Body {
border-top: 1px solid #565656 !important;
}
.Modal--Body p{
color: #ffffff !important;
}
.ReplyAttachment {
border: 1px solid #565656 !important;
}
.ConversationList {
border-right: none !important;
border-top: 1px solid #565656 !important;
}
.Modal--Content {
background: #222222 !important;
border-radius: 15px !important;
border: none !important;
}
::-webkit-scrollbar-track
{
background-color: #222222;
}
::-webkit-scrollbar
{
width: 8px;
background-color: #222222;
}
::-webkit-scrollbar-thumb
{
background-color: #80808080;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
} | 0.257765 | 0.114963 |
.sf-menu, .sf-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.webkit .sf-menu {line-height:1.1em;}
.sf-menu {
line-height:1.1em;
}
.sf-menu ul {
position: absolute;
top: -999em;
width: 10em; /* left offset of submenus need to match (see below) */
margin-left:2px;
}
.sf-menu ul li {
width: 100%;
}
.sf-menu li:hover {
visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
float: left;
position: relative;
border-top:none;
}
.sf-menu a {
display: block;
position: relative;
}
.webkit .sf-menu li:hover ul,
.webkit .sf-menu li.sfHover ul {
left:0;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
left: 12px;
top: 3.9em; /* match top ul list item height */
z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
left: 10em; /* match ul width */
top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
left: 10em; /* match ul width */
top: 0;
}
/*** DEMO SKIN ***/
.sf-menu {
float: right;
margin-bottom: 26px;
margin-top: 20px;
}
.sf-menu a {
padding: 0.2em 1em;
text-decoration:none;
}
.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
color: #555;
}
.sf-menu a:active { /* visited pseudo selector so IE6 applies text colour*/
color: #000;
}
.sf-menu ul li a, .sf-menu ul li a:visited {color: #555;}
.sf-menu ul li { padding-left: 0;}
.sf-menu li li {
background:none repeat scroll 0 0 #FFF;
border-bottom:1px solid #d6d6d6;
font-size:12px;
}
.sf-menu li a.active, .sf-menu li li a.active {
color: #fff;
}
ul.sf-menu li li a:hover {
background: red;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
color: #555;
outline: 0;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
padding-right: 2.25em;
min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
position: absolute;
display: block;
right: .75em;
top: 1.05em; /* IE6 only */
width: 10px;
height: 10px;
text-indent: -999em;
overflow: hidden;
background: url('../images/arrows_menu.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .5em;
background-position: 0 -103px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
background-position: -10px -103px; /* arrow hovers for modern browsers*/
}
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position: -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position: 7px 5px; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus ,
.sf-menu ul a:hover ,
.sf-menu ul a:active ,
.sf-menu ul li:hover > a ,
.sf-menu ul li.sfHover > a {
background-position: -10px 0; /* arrow hovers for modern browsers*/
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
background: url('../img/shadow.png') no-repeat bottom right;
padding: 0 8px 9px 0;
-moz-border-radius-bottomleft: 17px;
-moz-border-radius-topright: 17px;
-webkit-border-top-right-radius: 17px;
-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
background: transparent;
}
ul.sf-menu li ul li a {padding: 10px 19px; color:#555;}
ul.sf-menu li ul li a:hover {color: #333; text-shadow:none; background: #EAEAEA; -moz-border-radius: 0px; -webkit-border-radius: 0px;}
#top-navigation ul.sf-menu li ul li a {color:#bcb29e; text-shadow: none;}
#top-navigation ul.sf-menu li ul li a:hover {color:#fff; } | Public/Home/css/superfish.css | .sf-menu, .sf-menu * {
margin: 0;
padding: 0;
list-style: none;
}
.webkit .sf-menu {line-height:1.1em;}
.sf-menu {
line-height:1.1em;
}
.sf-menu ul {
position: absolute;
top: -999em;
width: 10em; /* left offset of submenus need to match (see below) */
margin-left:2px;
}
.sf-menu ul li {
width: 100%;
}
.sf-menu li:hover {
visibility: inherit; /* fixes IE7 'sticky bug' */
}
.sf-menu li {
float: left;
position: relative;
border-top:none;
}
.sf-menu a {
display: block;
position: relative;
}
.webkit .sf-menu li:hover ul,
.webkit .sf-menu li.sfHover ul {
left:0;
}
.sf-menu li:hover ul,
.sf-menu li.sfHover ul {
left: 12px;
top: 3.9em; /* match top ul list item height */
z-index: 99;
}
ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li:hover ul,
ul.sf-menu li li.sfHover ul {
left: 10em; /* match ul width */
top: 0;
}
ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul {
top: -999em;
}
ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul {
left: 10em; /* match ul width */
top: 0;
}
/*** DEMO SKIN ***/
.sf-menu {
float: right;
margin-bottom: 26px;
margin-top: 20px;
}
.sf-menu a {
padding: 0.2em 1em;
text-decoration:none;
}
.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
color: #555;
}
.sf-menu a:active { /* visited pseudo selector so IE6 applies text colour*/
color: #000;
}
.sf-menu ul li a, .sf-menu ul li a:visited {color: #555;}
.sf-menu ul li { padding-left: 0;}
.sf-menu li li {
background:none repeat scroll 0 0 #FFF;
border-bottom:1px solid #d6d6d6;
font-size:12px;
}
.sf-menu li a.active, .sf-menu li li a.active {
color: #fff;
}
ul.sf-menu li li a:hover {
background: red;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
color: #555;
outline: 0;
}
/*** arrows **/
.sf-menu a.sf-with-ul {
padding-right: 2.25em;
min-width: 1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
position: absolute;
display: block;
right: .75em;
top: 1.05em; /* IE6 only */
width: 10px;
height: 10px;
text-indent: -999em;
overflow: hidden;
background: url('../images/arrows_menu.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator { /* give all except IE6 the correct values */
top: .5em;
background-position: 0 -103px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
background-position: -10px -103px; /* arrow hovers for modern browsers*/
}
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position: -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position: 7px 5px; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus ,
.sf-menu ul a:hover ,
.sf-menu ul a:active ,
.sf-menu ul li:hover > a ,
.sf-menu ul li.sfHover > a {
background-position: -10px 0; /* arrow hovers for modern browsers*/
}
/*** shadows for all but IE6 ***/
.sf-shadow ul {
background: url('../img/shadow.png') no-repeat bottom right;
padding: 0 8px 9px 0;
-moz-border-radius-bottomleft: 17px;
-moz-border-radius-topright: 17px;
-webkit-border-top-right-radius: 17px;
-webkit-border-bottom-left-radius: 17px;
}
.sf-shadow ul.sf-shadow-off {
background: transparent;
}
ul.sf-menu li ul li a {padding: 10px 19px; color:#555;}
ul.sf-menu li ul li a:hover {color: #333; text-shadow:none; background: #EAEAEA; -moz-border-radius: 0px; -webkit-border-radius: 0px;}
#top-navigation ul.sf-menu li ul li a {color:#bcb29e; text-shadow: none;}
#top-navigation ul.sf-menu li ul li a:hover {color:#fff; } | 0.236516 | 0.036322 |
.header{
position: fixed;
z-index: 10;
left: 0;
top: 0;
height: 75px;
width: 100%;
background-color: white;
padding: 0 30px;
display: flex;
/*子元素垂直方向居中*/
align-items: center;
/*border-bottom: 1px solid #dddddd;*/
box-shadow: 0 4px 8px 0 rgba(7,17,27,0.1);
}
.header a{
color: #4D555D;
font-size: 16px;
text-decoration: none;
margin: 0 10px;
}
body{
position: relative;
}
.erm-box p {
margin-top: 20px;
font-size: 14px;
line-height: 20px;
}
.login-content {
padding: 40px 0 10px 0;
}
.inp input{
width: 100%;
height: 40px;
line-height: 40px;
border: 1px solid #ddd;
}
.inp input:first-of-type {
border-bottom: none;
}
.foget-warpper{
padding: 10px 0 20px 0;
}
.foget-warpper span{
color: #888888;
font-size: 15px;
}
.foget-warpper a{
color: darkblue;
}
.login-button {
background: limegreen;
color: white;
width: 130px;
height: 40px;
border-radius: 5px;
border: none;
}
.header img{
-webkit-box-shadow: 0 0 18px 12px #fff;
box-shadow: inset 0 0 18px 12px #fff;
}
.header .nav{
width: 560px;
margin-left: 20px;
}
.nav a{
margin: 20px;
}
.header .seacher{
width:310px;
margin-left: 7px;
position: relative;
}
.seacher input{
width: 310px;
height: 38px;
line-height: 38px;
padding: 0 25px 0 5px;
background-color:#E9E9E9;
border: 1px solid #E9E9E9;
box-sizing: border-box;
border-radius: 8px;
outline: none;
}
.seacher .seach-key{
position: absolute;
right: 9px;
top: 8px;
}
.seach-key a:hover{
color: #F21F1F;
}
.header .right{
flex: 1;
text-align: right;
margin-right: 50px;
}
.right a{
display: inline-block;
color: #746f64;
font-size: 13px;
}
.right .download{
position: relative;
height: 80px;
line-height: 80px;
}
/*显示我的后代。。。*/
.download:hover .download-wrapper{
display: block;
}
.right .download-wrapper{
position: absolute;
right: 0;
top: 78px;
width: 300px;
height: 180px;
border: 1px solid #dddddd;
background-color: white;
/*行高初始化,使行高不再是80*/
line-height: initial;
box-sizing: border-box;
padding: 30px;
text-align: center;
color: #4D555D;
display: none;
}
.right a:hover{
color: #F21F1F;
}
.right .cart{
height: 33px;
width: 100px;
line-height: 33px;
border-radius: 20px;
border: 1px solid #dddddd;
text-align: center;
padding: 2px;
position: relative;
}
.cart:hover .cart-wrappper{
display: block;
}
.cart-wrappper{
position: absolute;
top: 38px;
right: 0;
width: 300px;
height: 400px;
padding-top: 18px;
display: none;
}
.cart-content{
width: 100%;
height: 300px;
border: 1px solid #dddddd;
background-color: white;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
text-align: left;
color: #4D555D;
}
.cart-content p{
margin: 0 auto;
width: 300px;
height: 50px;
left: 50px;
border-bottom: 1px solid #dddddd;
font-size: 13px;
box-sizing: border-box;
padding: 0 20px;
}
.right span{
color: #beb9ae;
}
.container{
width: 1200px;
margin: 0 auto;
}
/*menu部分*/
.menu {
margin-top: 75px;
padding-top: 30px;
}
.menu .container{
display: flex;
}
.menu .submenu{
width: 264px;
height: 382px;
background: #2b333b;
padding: 15px 0 15px 10px;
box-sizing: border-box;
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
position: relative;
}
.submenu a{
display: block;
text-align: left;
text-decoration: none;
color: rgba(255,255,255,0.6);
font-size: 15px;
padding: 20px 0 16px 12px;
border-bottom-left-radius:3px ;
border-top-left-radius: 3px;
}
.submenu a:hover{
color: white;
background-color:rgba(255,255,255,0.3);
}
.submenu-detatil{
position: absolute;
top: 0;
left: 254px;
height: 382px;
width: 700px;
z-index: 9;
background: white;
box-sizing: border-box;
border: 1px solid #dddddd;
display: none;
padding: 30px;
}
.submenu-detatil p{
font-weight: bold;
font-size: 16px;
}
.submenu:hover .submenu-detatil{
display: block;
}
.manu .banner {
flex: 1;
height: 382px;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
overflow: hidden;
}
.banner .swiper-container {
width: 936px;
height: 382px;
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
--swiper-navigation-size: 30px;
}
.swiper-slide {
background-position: center;
background-size: cover;
}
/*!* .footer{*/
/* width:100%;*/
/* position: absolute;*/
/* bottom: -200px;*/
/*} *!*/
/*.course-list{*/
/* margin-top: 40px;*/
/*}*/
/*.main .course-list .c-title{*/
/* color: #333;*/
/* font-size: 24px;*/
/* font-weight: 500;*/
/* !*margin-bottom: 20px;*!*/
/*}*/
/*._3yyVu{*/
/* width: 387px;*/
/* border-radius: 4px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* background: rgba(255,255,255,1);*/
/* float: left;*/
/* position: relative;*/
/* height: 496px;*/
/*}*/
/*._158JU {*/
/* width: 387px;*/
/* border-radius: 4px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* background: rgba(255,255,255,1);*/
/* float: left;*/
/* position: relative;*/
/* height: 496px;*/
/*}*/
/*.f5bWh {*/
/* font-size: 16px;*/
/* font-weight: 600;*/
/* margin: 24px 14px 22px;*/
/* color: rgba(51,51,51,1);*/
/* overflow: hidden;*/
/* -o-text-overflow: ellipsis;*/
/* text-overflow: ellipsis;*/
/* display: -webkit-box;*/
/* -webkit-box-orient: vertical;*/
/* -webkit-line-clamp: 2;*/
/*}*/
/*._3t7S4 {*/
/* width: 392px;*/
/* overflow: hidden;*/
/* cursor: pointer;*/
/*}*/
/*._3iNZP {*/
/* float: right;*/
/* font-size: 18px;*/
/* font-weight: bold;*/
/* font-style: italic;*/
/* color: #E2E2E2;*/
/*}*/
/*._1442f {*/
/* position: relative;*/
/*}*/
/*._2vopq {*/
/* margin-bottom: 20px;*/
/* width: 392px;*/
/* display: -ms-flexbox;*/
/* display: flex;*/
/* padding-left: 14px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* position: relative;*/
/*}*/
.main{
width: 100%;
margin-top: 100px;
padding-top: 15px;
border-left: 1px solid #eeeeee;
border-right: 1px solid #eeeeee;
}
.main-title{
margin-bottom: 60px;
height: 60px;
display: flex;
background: url("../image/bg01.jpg");
}
.main-title a{
text-decoration: none;
font-size: 23px;
color:white;
margin:0 20px 15px 0px;
display: block;
height: 20px;
padding: 20px 20px 5px;
}
.main-title a:hover{
background:#dddddd;
border-radius: 5px;
color: white;
}
.ns{
background:#dddddd;
border-radius: 5px;
color: white;
display: inline;
}
.course-list{
display: flex;
flex-wrap: wrap;
padding: 0 20px;
}
.course-item{
width: calc(100%/6);
min-height: 250px;
box-sizing: border-box;
text-align: left;
}
.course-item-container{
width: 94%;
}
.course-item img{
width: 100%;
height: 240px;
border-radius: 7px;
}
.course-item .title {
font-weight: bold;
display: inline-block;
line-height: 30px;
}
.course-item:hover .title{
color: #F21F1F;
}
.course-item .content{
font-size: 12px;
line-height: 20px;
color: rgba(136,136,136,0.55);
}
.course-item div:last-of-type span{
color: rgba(136,136,136,0.55);
font-size: 15px;
padding: 20px 5px;
} | web/ike/style/css/index.css | .header{
position: fixed;
z-index: 10;
left: 0;
top: 0;
height: 75px;
width: 100%;
background-color: white;
padding: 0 30px;
display: flex;
/*子元素垂直方向居中*/
align-items: center;
/*border-bottom: 1px solid #dddddd;*/
box-shadow: 0 4px 8px 0 rgba(7,17,27,0.1);
}
.header a{
color: #4D555D;
font-size: 16px;
text-decoration: none;
margin: 0 10px;
}
body{
position: relative;
}
.erm-box p {
margin-top: 20px;
font-size: 14px;
line-height: 20px;
}
.login-content {
padding: 40px 0 10px 0;
}
.inp input{
width: 100%;
height: 40px;
line-height: 40px;
border: 1px solid #ddd;
}
.inp input:first-of-type {
border-bottom: none;
}
.foget-warpper{
padding: 10px 0 20px 0;
}
.foget-warpper span{
color: #888888;
font-size: 15px;
}
.foget-warpper a{
color: darkblue;
}
.login-button {
background: limegreen;
color: white;
width: 130px;
height: 40px;
border-radius: 5px;
border: none;
}
.header img{
-webkit-box-shadow: 0 0 18px 12px #fff;
box-shadow: inset 0 0 18px 12px #fff;
}
.header .nav{
width: 560px;
margin-left: 20px;
}
.nav a{
margin: 20px;
}
.header .seacher{
width:310px;
margin-left: 7px;
position: relative;
}
.seacher input{
width: 310px;
height: 38px;
line-height: 38px;
padding: 0 25px 0 5px;
background-color:#E9E9E9;
border: 1px solid #E9E9E9;
box-sizing: border-box;
border-radius: 8px;
outline: none;
}
.seacher .seach-key{
position: absolute;
right: 9px;
top: 8px;
}
.seach-key a:hover{
color: #F21F1F;
}
.header .right{
flex: 1;
text-align: right;
margin-right: 50px;
}
.right a{
display: inline-block;
color: #746f64;
font-size: 13px;
}
.right .download{
position: relative;
height: 80px;
line-height: 80px;
}
/*显示我的后代。。。*/
.download:hover .download-wrapper{
display: block;
}
.right .download-wrapper{
position: absolute;
right: 0;
top: 78px;
width: 300px;
height: 180px;
border: 1px solid #dddddd;
background-color: white;
/*行高初始化,使行高不再是80*/
line-height: initial;
box-sizing: border-box;
padding: 30px;
text-align: center;
color: #4D555D;
display: none;
}
.right a:hover{
color: #F21F1F;
}
.right .cart{
height: 33px;
width: 100px;
line-height: 33px;
border-radius: 20px;
border: 1px solid #dddddd;
text-align: center;
padding: 2px;
position: relative;
}
.cart:hover .cart-wrappper{
display: block;
}
.cart-wrappper{
position: absolute;
top: 38px;
right: 0;
width: 300px;
height: 400px;
padding-top: 18px;
display: none;
}
.cart-content{
width: 100%;
height: 300px;
border: 1px solid #dddddd;
background-color: white;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
text-align: left;
color: #4D555D;
}
.cart-content p{
margin: 0 auto;
width: 300px;
height: 50px;
left: 50px;
border-bottom: 1px solid #dddddd;
font-size: 13px;
box-sizing: border-box;
padding: 0 20px;
}
.right span{
color: #beb9ae;
}
.container{
width: 1200px;
margin: 0 auto;
}
/*menu部分*/
.menu {
margin-top: 75px;
padding-top: 30px;
}
.menu .container{
display: flex;
}
.menu .submenu{
width: 264px;
height: 382px;
background: #2b333b;
padding: 15px 0 15px 10px;
box-sizing: border-box;
border-bottom-left-radius: 10px;
border-top-left-radius: 10px;
position: relative;
}
.submenu a{
display: block;
text-align: left;
text-decoration: none;
color: rgba(255,255,255,0.6);
font-size: 15px;
padding: 20px 0 16px 12px;
border-bottom-left-radius:3px ;
border-top-left-radius: 3px;
}
.submenu a:hover{
color: white;
background-color:rgba(255,255,255,0.3);
}
.submenu-detatil{
position: absolute;
top: 0;
left: 254px;
height: 382px;
width: 700px;
z-index: 9;
background: white;
box-sizing: border-box;
border: 1px solid #dddddd;
display: none;
padding: 30px;
}
.submenu-detatil p{
font-weight: bold;
font-size: 16px;
}
.submenu:hover .submenu-detatil{
display: block;
}
.manu .banner {
flex: 1;
height: 382px;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
overflow: hidden;
}
.banner .swiper-container {
width: 936px;
height: 382px;
border-bottom-right-radius: 10px;
border-top-right-radius: 10px;
--swiper-navigation-size: 30px;
}
.swiper-slide {
background-position: center;
background-size: cover;
}
/*!* .footer{*/
/* width:100%;*/
/* position: absolute;*/
/* bottom: -200px;*/
/*} *!*/
/*.course-list{*/
/* margin-top: 40px;*/
/*}*/
/*.main .course-list .c-title{*/
/* color: #333;*/
/* font-size: 24px;*/
/* font-weight: 500;*/
/* !*margin-bottom: 20px;*!*/
/*}*/
/*._3yyVu{*/
/* width: 387px;*/
/* border-radius: 4px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* background: rgba(255,255,255,1);*/
/* float: left;*/
/* position: relative;*/
/* height: 496px;*/
/*}*/
/*._158JU {*/
/* width: 387px;*/
/* border-radius: 4px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* background: rgba(255,255,255,1);*/
/* float: left;*/
/* position: relative;*/
/* height: 496px;*/
/*}*/
/*.f5bWh {*/
/* font-size: 16px;*/
/* font-weight: 600;*/
/* margin: 24px 14px 22px;*/
/* color: rgba(51,51,51,1);*/
/* overflow: hidden;*/
/* -o-text-overflow: ellipsis;*/
/* text-overflow: ellipsis;*/
/* display: -webkit-box;*/
/* -webkit-box-orient: vertical;*/
/* -webkit-line-clamp: 2;*/
/*}*/
/*._3t7S4 {*/
/* width: 392px;*/
/* overflow: hidden;*/
/* cursor: pointer;*/
/*}*/
/*._3iNZP {*/
/* float: right;*/
/* font-size: 18px;*/
/* font-weight: bold;*/
/* font-style: italic;*/
/* color: #E2E2E2;*/
/*}*/
/*._1442f {*/
/* position: relative;*/
/*}*/
/*._2vopq {*/
/* margin-bottom: 20px;*/
/* width: 392px;*/
/* display: -ms-flexbox;*/
/* display: flex;*/
/* padding-left: 14px;*/
/* -webkit-box-sizing: border-box;*/
/* box-sizing: border-box;*/
/* position: relative;*/
/*}*/
.main{
width: 100%;
margin-top: 100px;
padding-top: 15px;
border-left: 1px solid #eeeeee;
border-right: 1px solid #eeeeee;
}
.main-title{
margin-bottom: 60px;
height: 60px;
display: flex;
background: url("../image/bg01.jpg");
}
.main-title a{
text-decoration: none;
font-size: 23px;
color:white;
margin:0 20px 15px 0px;
display: block;
height: 20px;
padding: 20px 20px 5px;
}
.main-title a:hover{
background:#dddddd;
border-radius: 5px;
color: white;
}
.ns{
background:#dddddd;
border-radius: 5px;
color: white;
display: inline;
}
.course-list{
display: flex;
flex-wrap: wrap;
padding: 0 20px;
}
.course-item{
width: calc(100%/6);
min-height: 250px;
box-sizing: border-box;
text-align: left;
}
.course-item-container{
width: 94%;
}
.course-item img{
width: 100%;
height: 240px;
border-radius: 7px;
}
.course-item .title {
font-weight: bold;
display: inline-block;
line-height: 30px;
}
.course-item:hover .title{
color: #F21F1F;
}
.course-item .content{
font-size: 12px;
line-height: 20px;
color: rgba(136,136,136,0.55);
}
.course-item div:last-of-type span{
color: rgba(136,136,136,0.55);
font-size: 15px;
padding: 20px 5px;
} | 0.36693 | 0.121165 |
body {
color: rgb(0, 0, 0);
background-size: cover;
height:100%;
background-image: url("../images/surfer.png");
background-attachment: fixed;
}
.jumbotron {
background: rgba(0,0,0,0);
}
.modal {
color: black;
}
#user-form, .header-wrap, #create-form, .create-user-wrap {
padding: 20px;
border-radius: 15px;
margin: 20px 0;
}
#update-err-msg,
#login-err-msg,
#create-err-msg {
color: red !important;
}
#go-home {
width: auto;
height: 65px;
}
[data-useremail="true"] {
color: white !important;
}
[data-register="true"] {
color: white !important;
}
.lead {
font-size: 1.8rem;
font-weight: 500;
}
.userId h2, .header-wrap h1 {
text-transform: capitalize;
}
hr {
background-color: #fff !important;
}
.list-group-item {
line-height: 2.5;
}
.card-body {
color: #444;
}
#main ul {
list-style-type: none;
}
#map {
height: 500px;
width: 500px;
}
.form-control {
border-radius: 18px 18px 18px 18px;
height: 30px;
}
.weasy {
padding-left: 20px;
padding-right: 20px;
height: auto;
width: 100%;
}
nav {
height: 80px;
border-bottom: 2px solid yellow;
/* overflow: visible; */
}
h2 {
font-family: "Bangers", cursive;
}
#login, p, a {
font-family: "Bangers", cursive;
font-size: large;
}
.navbar-brand {
padding: 10px 200px 40px 20px;
justify-content: center;
font-family: "Bangers", cursive;
color: rgb(106, 134, 158) !important;
font-size: 50px;
width: 33%;
text-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.nav {
background-color: rgba(61, 61, 61, 0.815);
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.navtext {
color: azure;
font-family: fantasy;
}
.side-bar {
background-color: rgba(240, 255, 255, 0.932);
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.btn {
color: rgb(230, 120, 120);
border: none;
}
.btn:hover {
color: white;
}
.btn-primary {
border-radius: 18px 18px 18px 18px;
background-color: rgb(40, 40, 43);
padding: 2px;
justify-content: center;
padding-left: 15px;
padding-right: 15px;
width: auto;
height: 32px;
}
.dashLogin {
margin-top: 4px;
}
.card {
background-color: rgba(240, 255, 255, 0.815);
border-radius: 10px;
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.dash {
background-color: rgba(240, 255, 255, 0.877);
border-radius: 5px;
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
label {
color: azure;
}
footer {
border-top:yellow 1px solid;
} | public/assets/css/style.css | body {
color: rgb(0, 0, 0);
background-size: cover;
height:100%;
background-image: url("../images/surfer.png");
background-attachment: fixed;
}
.jumbotron {
background: rgba(0,0,0,0);
}
.modal {
color: black;
}
#user-form, .header-wrap, #create-form, .create-user-wrap {
padding: 20px;
border-radius: 15px;
margin: 20px 0;
}
#update-err-msg,
#login-err-msg,
#create-err-msg {
color: red !important;
}
#go-home {
width: auto;
height: 65px;
}
[data-useremail="true"] {
color: white !important;
}
[data-register="true"] {
color: white !important;
}
.lead {
font-size: 1.8rem;
font-weight: 500;
}
.userId h2, .header-wrap h1 {
text-transform: capitalize;
}
hr {
background-color: #fff !important;
}
.list-group-item {
line-height: 2.5;
}
.card-body {
color: #444;
}
#main ul {
list-style-type: none;
}
#map {
height: 500px;
width: 500px;
}
.form-control {
border-radius: 18px 18px 18px 18px;
height: 30px;
}
.weasy {
padding-left: 20px;
padding-right: 20px;
height: auto;
width: 100%;
}
nav {
height: 80px;
border-bottom: 2px solid yellow;
/* overflow: visible; */
}
h2 {
font-family: "Bangers", cursive;
}
#login, p, a {
font-family: "Bangers", cursive;
font-size: large;
}
.navbar-brand {
padding: 10px 200px 40px 20px;
justify-content: center;
font-family: "Bangers", cursive;
color: rgb(106, 134, 158) !important;
font-size: 50px;
width: 33%;
text-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.nav {
background-color: rgba(61, 61, 61, 0.815);
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.navtext {
color: azure;
font-family: fantasy;
}
.side-bar {
background-color: rgba(240, 255, 255, 0.932);
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.btn {
color: rgb(230, 120, 120);
border: none;
}
.btn:hover {
color: white;
}
.btn-primary {
border-radius: 18px 18px 18px 18px;
background-color: rgb(40, 40, 43);
padding: 2px;
justify-content: center;
padding-left: 15px;
padding-right: 15px;
width: auto;
height: 32px;
}
.dashLogin {
margin-top: 4px;
}
.card {
background-color: rgba(240, 255, 255, 0.815);
border-radius: 10px;
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
.dash {
background-color: rgba(240, 255, 255, 0.877);
border-radius: 5px;
box-shadow:
-1px -1px 0 rgba(255, 255, 255, 0),
1px 1px 0 rgba(0,0,0,.25),
3px 3px 3px rgba(0,0,0,.25),
10px 10px 20px rgba(0,0,0,.5),
20px 40px 40px rgba(0,0,0,.5);
}
label {
color: azure;
}
footer {
border-top:yellow 1px solid;
} | 0.303629 | 0.121607 |
width: 90%;
background-color: #be0000;
margin-top: 20px;
padding: 10px;
margin-left: 4%;
border-radius: 5px;
border: none;
color: #fff;
}
#settingConfig ion-header-bar button{
margin-left: 16px;
}
#settingConfig ion-header-bar {
background-color: #0167b1;
border: none
}
#settingConfig ion-header-bar h1 {
color: #fff;
}
#settingConfig ion-content ion-item:first-child {
background-color: #0167b1;
margin-top: -2px
}
#settingConfig ion-item img {
width: 64px;
height: 64px;
}
#settingConfig ion-item .edwfirstblock h3 {
font-weight: bold;
color: #fff
}
#settingConfig ion-item .edwfirstblock p {
color: #fff
}
#settingConfig ion-list ion-item span .contact-icon-next {
float: right
}
#commonLanguage ion-header-bar button{
margin-left: 16px;
}
#aboutsetting ion-header-bar button{
margin-left: 16px;
}
#aboutsetting ion-content .scroll{
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(206, 211, 231, 0.43);
}
#aboutsetting ion-content .about{
display: flex;
flex-direction: column;
height: 100%;
align-items: center;
}
#aboutsetting ion-content .about div:nth-of-type(1){
display: flex;
justify-content: center;
align-items: center;
flex: 1 1 auto
}
#aboutsetting ion-content .about div:nth-of-type(1) img{
max-height: 40%;
max-width: 70%
}
#aboutsetting ion-content .about div:nth-of-type(2){
flex: 0 1 auto;
align-self: left;
width: 100%;
margin-bottom: 30px;
background-color: #fff;
}
#aboutsetting ion-content .about div:nth-of-type(2) .value{
color:gray;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1){
display: flex;
justify-content: space-between;
padding: 5px;
padding-top: 10px
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(1){
margin-left: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(2){
margin-right: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(2){
width: 100%;
height: 0;
border-bottom: 0.1px gray solid;
opacity: 0.5
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3){
display: flex;
justify-content: space-between;
padding: 5px;
padding-top: 10px
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3) span:nth-of-type(1){
margin-left: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3) span:nth-of-type(2){
margin-right: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(3){
flex: 1 1 auto;
color: gray;
}
div#aa p:nth-of-type(1){
}
div#aa p:nth-of-type(3){
} | Contact/setting/content/css/setting-list.css | width: 90%;
background-color: #be0000;
margin-top: 20px;
padding: 10px;
margin-left: 4%;
border-radius: 5px;
border: none;
color: #fff;
}
#settingConfig ion-header-bar button{
margin-left: 16px;
}
#settingConfig ion-header-bar {
background-color: #0167b1;
border: none
}
#settingConfig ion-header-bar h1 {
color: #fff;
}
#settingConfig ion-content ion-item:first-child {
background-color: #0167b1;
margin-top: -2px
}
#settingConfig ion-item img {
width: 64px;
height: 64px;
}
#settingConfig ion-item .edwfirstblock h3 {
font-weight: bold;
color: #fff
}
#settingConfig ion-item .edwfirstblock p {
color: #fff
}
#settingConfig ion-list ion-item span .contact-icon-next {
float: right
}
#commonLanguage ion-header-bar button{
margin-left: 16px;
}
#aboutsetting ion-header-bar button{
margin-left: 16px;
}
#aboutsetting ion-content .scroll{
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(206, 211, 231, 0.43);
}
#aboutsetting ion-content .about{
display: flex;
flex-direction: column;
height: 100%;
align-items: center;
}
#aboutsetting ion-content .about div:nth-of-type(1){
display: flex;
justify-content: center;
align-items: center;
flex: 1 1 auto
}
#aboutsetting ion-content .about div:nth-of-type(1) img{
max-height: 40%;
max-width: 70%
}
#aboutsetting ion-content .about div:nth-of-type(2){
flex: 0 1 auto;
align-self: left;
width: 100%;
margin-bottom: 30px;
background-color: #fff;
}
#aboutsetting ion-content .about div:nth-of-type(2) .value{
color:gray;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1){
display: flex;
justify-content: space-between;
padding: 5px;
padding-top: 10px
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(1){
margin-left: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(1) span:nth-of-type(2){
margin-right: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(2){
width: 100%;
height: 0;
border-bottom: 0.1px gray solid;
opacity: 0.5
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3){
display: flex;
justify-content: space-between;
padding: 5px;
padding-top: 10px
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3) span:nth-of-type(1){
margin-left: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(2) p:nth-of-type(3) span:nth-of-type(2){
margin-right: 10px;
}
#aboutsetting ion-content .about div:nth-of-type(3){
flex: 1 1 auto;
color: gray;
}
div#aa p:nth-of-type(1){
}
div#aa p:nth-of-type(3){
} | 0.298594 | 0.069858 |
NEW COLORS
------------------------- */
/* Raleway navigation header/footer styling variables */
/* Color variables for the white navigation theme */
/* Variables for the gray navigation theme */
/* Text and link mixins */
/* Button mixins */
/* Close (x) mixins*/
/* Centering content mixins */
/* Maintaining aspect ratio */
/* Variable shadow sizes */
#header-raleway .mega-dropdown-menu,
#hamburger-overlay .mega-dropdown-menu {
top: 55px;
padding: 12px 0;
width: 100%;
max-width: 740px;
margin-left: -370px;
left: 50%;
border: none;
border-top: 1px solid #ecedef;
box-shadow: 0px 2px 8px rgba(5, 18, 37, 0.1);
background-color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 992px) {
#header-raleway .mega-dropdown-menu,
#hamburger-overlay .mega-dropdown-menu {
max-width: calc(100% + 60px);
margin-left: 0;
left: 0;
}
}
#header-raleway .mega-dropdown-menu::before,
#hamburger-overlay .mega-dropdown-menu::before,
#header-raleway .mega-dropdown-menu::after,
#hamburger-overlay .mega-dropdown-menu::after {
display: none;
}
#header-raleway .mega-dropdown-menu__container,
#hamburger-overlay .mega-dropdown-menu__container {
display: flex;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link {
padding: 12px;
flex-basis: 240px;
max-width: 240px;
text-align: left;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover {
background-color: #f6f7f9;
border-radius: 8px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover .mega-dropdown-menu-link__title--dark,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover .mega-dropdown-menu-link__title--dark {
color: #1e55eb;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover .arrow,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover .arrow {
left: 3px;
opacity: 1;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:not(:last-of-type),
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:not(:last-of-type),
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:not(:first-of-type),
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:not(:first-of-type) {
padding: 12px;
margin: 0;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link video,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link video {
max-width: 100%;
border-radius: 4px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title {
display: flex;
align-items: center;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.5px;
margin-bottom: 8px;
margin-top: 12px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title__icon,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title__icon {
margin-right: 10px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--blue,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--blue {
color: #1e55eb;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--purple,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--purple {
color: #a409b8;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--teal,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--teal {
color: #00a0aa;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--dark,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--dark {
font-family: "RalewaySemiBold";
color: #152235;
text-decoration: none;
transition: 0.4s all;
margin-bottom: 0;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__thumb,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb {
max-width: 100%;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__thumb img,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb img {
border-radius: 4px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__description,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__description {
font-size: 14px;
line-height: 20px;
letter-spacing: 0.25px;
color: #747c87;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link .arrow,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link .arrow {
position: relative;
top: 3px;
left: -7px;
opacity: 0;
transition: 0.4s all;
}
#header-raleway.theme-transparent-on-dark .mega-dropdown-menu {
box-shadow: none;
width: 100%;
max-width: 740px;
margin-left: -370px;
left: 50%;
border-top: 0;
padding: 10px;
border-radius: 8px;
}
@media (max-width: 992px) {
#header-raleway.theme-transparent-on-dark .mega-dropdown-menu {
max-width: calc(100% + 60px);
margin-left: 0;
left: 0;
}
}
#hamburger-overlay .mega-dropdown-menu {
box-shadow: none;
width: 100%;
margin-left: 0;
}
@media (max-width: 700px) {
#hamburger-overlay .mega-dropdown-menu__container {
flex-wrap: wrap;
justify-content: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link {
flex-basis: 400px;
max-width: 400px;
text-align: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title {
justify-content: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb {
display: none;
}
}
#header-raleway .dropdown-items .mega-dropdown-menu {
top: 67px;
right: 0;
left: auto;
box-shadow: 0px 2px 8px rgba(5, 18, 37, 0.1);
}
#header-raleway-spacer.theme-core-blue {
display: none;
}
#header-raleway {
position: relative;
height: 72px;
}
#header-raleway .top-row {
/* Top Nav */
padding: 6px 20px;
transition: all ease 200ms;
}
#header-raleway .top-row.theme-core-blue {
background-color: #3181FF;
box-shadow: none;
}
#header-raleway .top-row.theme-business-gray {
background-color: #F3F5F9;
box-shadow: none;
}
#header-raleway .top-row.theme-business-gray-dark {
box-shadow: none;
}
#header-raleway .top-row.theme-business-white-minimal,
#header-raleway .top-row.theme-business-white-no-links {
background-color: #FFFFFF;
box-shadow: none;
}
#header-raleway .top-row.theme-business-white-minimal a,
#header-raleway .top-row.theme-business-white-no-links a,
#header-raleway .top-row.theme-business-white-minimal .link-element,
#header-raleway .top-row.theme-business-white-no-links .link-element,
#header-raleway .top-row.theme-business-white-minimal .login,
#header-raleway .top-row.theme-business-white-no-links .login {
color: #475262;
}
#header-raleway .top-row.theme-business-white-minimal a:hover,
#header-raleway .top-row.theme-business-white-no-links a:hover,
#header-raleway .top-row.theme-business-white-minimal .link-element:hover,
#header-raleway .top-row.theme-business-white-no-links .link-element:hover,
#header-raleway .top-row.theme-business-white-minimal .login:hover,
#header-raleway .top-row.theme-business-white-no-links .login:hover,
#header-raleway .top-row.theme-business-white-minimal a.active,
#header-raleway .top-row.theme-business-white-no-links a.active,
#header-raleway .top-row.theme-business-white-minimal .link-element.active,
#header-raleway .top-row.theme-business-white-no-links .link-element.active,
#header-raleway .top-row.theme-business-white-minimal .login.active,
#header-raleway .top-row.theme-business-white-no-links .login.active,
#header-raleway .top-row.theme-business-white-minimal a:focus,
#header-raleway .top-row.theme-business-white-no-links a:focus,
#header-raleway .top-row.theme-business-white-minimal .link-element:focus,
#header-raleway .top-row.theme-business-white-no-links .link-element:focus,
#header-raleway .top-row.theme-business-white-minimal .login:focus,
#header-raleway .top-row.theme-business-white-no-links .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway .top-row.theme-business-white-minimal .hamburger .hamburger-control,
#header-raleway .top-row.theme-business-white-no-links .hamburger .hamburger-control {
cursor: auto;
}
#header-raleway .top-row.theme-transparent-on-dark,
#header-raleway .top-row.theme-transparent-on-light {
position: absolute !important;
background-color: transparent;
box-shadow: none;
}
#header-raleway .top-row.theme-design-teal {
background-color: #00a0aa;
box-shadow: none;
}
@media (min-width: 1320px) {
#header-raleway .top-row {
padding: 6px 30px;
}
}
#header-raleway .dropdown .name {
transition: all ease 200ms;
}
#header-raleway .products-dropdown-group {
position: relative;
margin-right: 30px;
}
#header-raleway .why-prezi-dropdown,
#header-raleway .discover-dropdown {
cursor: pointer;
}
#header-raleway .why-prezi-dropdown-group,
#header-raleway .discover-dropdown-group,
#header-raleway .product-dropdown-group {
position: relative;
margin-right: 35px;
margin-left: 35px;
}
#header-raleway .why-prezi-dropdown-group.no-left-margin,
#header-raleway .discover-dropdown-group.no-left-margin,
#header-raleway .product-dropdown-group.no-left-margin {
margin-left: 0;
}
@media (max-width: 1030px) {
#header-raleway .hide-why-prezi-video-in-nav {
display: none;
}
#header-raleway .video-right-margin {
margin-right: 35px;
}
}
#header-raleway [data-toggle="dropdown"] {
cursor: pointer;
}
#header-raleway .dropdown .caret,
#header-raleway .dropdown-group .caret {
transition: -webkit-transform 0.25s ease-in-out;
transition: transform 0.25s ease-in-out;
transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
#header-raleway .dropdown.open .caret,
#header-raleway .dropdown-group.open .caret {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
#header-raleway .products-dropdown-menu {
min-width: 302px;
margin: 0 0 0 -151px;
left: 50%;
top: 55px;
}
#header-raleway .products-dropdown-menu .product-container {
padding: 10px 25px;
margin: 15px 0;
}
#header-raleway .products-dropdown-menu .product-logo {
text-align: center;
transition: none;
}
#header-raleway .products-dropdown-menu .product-logo path,
#header-raleway .products-dropdown-menu .product-logo p {
transition: all ease 200ms;
}
#header-raleway .products-dropdown-menu .product-logo:hover {
cursor: pointer;
}
#header-raleway .products-dropdown-menu .product-logo:hover p {
color: #3181FF;
}
#header-raleway .products-dropdown-menu .product-logo:hover .icon-outline {
stroke: #3181FF;
}
#header-raleway .products-dropdown-menu .product-logo {
width: 100px;
}
#header-raleway .products-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .why-prezi-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 230px;
margin: 0 0 0 -115px;
left: 50%;
top: 55px;
}
#header-raleway .why-prezi-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .discover-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 120px;
margin: 0 0 0 -60px;
left: 50%;
top: 55px;
}
#header-raleway .discover-dropdown-menu.with-design-navigation {
left: 0;
}
#header-raleway .discover-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .product-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 120px;
margin: 0 0 0 -60px;
left: 30%;
top: 55px;
}
#header-raleway .product-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway.theme-business-gray .name-container,
#header-raleway.theme-business-gray-dark .name-container,
#header-raleway.theme-transparent-on-dark .name-container,
#header-raleway.theme-transparent-on-light .name-container {
float: right;
margin-left: 30px;
}
#header-raleway.theme-design-teal .login-page {
margin-right: 30px;
}
#header-raleway.theme-core-blue .logo {
margin: 12px 15px 14px 0;
}
#header-raleway.theme-core-blue .login {
margin-right: 30px;
}
#header-raleway.theme-core-blue .login-page {
padding: 13px 0;
}
#header-raleway.theme-core-blue .top-link,
#header-raleway.theme-core-blue .login-page {
font-size: 13px;
letter-spacing: 1px;
text-transform: none;
}
#header-raleway.theme-core-blue .top-link.active,
#header-raleway.theme-core-blue .top-link:hover,
#header-raleway.theme-core-blue .login-page.active,
#header-raleway.theme-core-blue .login-page:hover {
color: rgba(255, 255, 255, 0.6);
}
#header-raleway.theme-core-blue .name-container .name {
color: #FFFFFF;
font-family: "RalewayBold", Helvetica, sans-serif;
letter-spacing: 1px;
font-size: 13px;
}
#header-raleway.theme-core-blue .name-container .name:hover,
#header-raleway.theme-core-blue .name-container .name.active,
#header-raleway.theme-core-blue .name-container .name:focus {
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-core-blue .name-container .name:hover:after {
border-top-color: rgba(255, 255, 255, 0.6);
}
#header-raleway.theme-core-blue .dropdown-menu {
background-color: #FFFFFF;
border: none;
box-shadow: 0 1px 6px 0 rgba(21, 34, 53, 0.4);
}
#header-raleway.theme-core-blue .dropdown-menu:before,
#header-raleway.theme-core-blue .dropdown-menu:after {
border-bottom-color: #FFFFFF;
}
#header-raleway.theme-core-blue .dropdown-menu .left {
border-right: 1px solid rgba(0, 0, 0, 0.4);
}
#header-raleway.theme-core-blue .dropdown-menu a {
color: #152235;
}
#header-raleway.theme-core-blue .dropdown-menu a:hover {
color: rgba(0, 0, 0, 0.4);
}
#header-raleway.theme-business-gray .name:after,
#header-raleway.theme-business-white-minimal .name:after,
#header-raleway.theme-transparent-on-light .name:after {
border-top-color: #475262;
}
#header-raleway.theme-business-gray .name:hover:after,
#header-raleway.theme-business-white-minimal .name:hover:after,
#header-raleway.theme-transparent-on-light .name:hover:after {
border-top-color: #3181FF;
}
#header-raleway.theme-business-gray .business-header-cta,
#header-raleway.theme-business-gray-dark .business-header-cta,
#header-raleway.theme-business-white-minimal .business-header-cta,
#header-raleway.theme-transparent-on-light .business-header-cta,
#header-raleway.theme-transparent-on-dark .business-header-cta,
#header-raleway.theme-design-teal .business-header-cta {
margin-top: 4px;
color: #FFFFFF;
font-family: "RalewaySemiBold", Helvetica, sans-serif;
font-size: 13px;
line-height: 14px;
letter-spacing: 1px;
text-transform: none;
padding: 8px 13px;
}
#header-raleway.theme-business-gray .business-header-cta:hover,
#header-raleway.theme-business-gray-dark .business-header-cta:hover,
#header-raleway.theme-business-white-minimal .business-header-cta:hover,
#header-raleway.theme-transparent-on-light .business-header-cta:hover,
#header-raleway.theme-transparent-on-dark .business-header-cta:hover,
#header-raleway.theme-design-teal .business-header-cta:hover {
color: #FFFFFF;
}
#header-raleway.theme-business-gray.theme-design-teal .business-header-cta,
#header-raleway.theme-business-gray-dark.theme-design-teal .business-header-cta,
#header-raleway.theme-business-white-minimal.theme-design-teal .business-header-cta,
#header-raleway.theme-transparent-on-light.theme-design-teal .business-header-cta,
#header-raleway.theme-transparent-on-dark.theme-design-teal .business-header-cta,
#header-raleway.theme-design-teal.theme-design-teal .business-header-cta {
text-transform: capitalize;
background-color: #00c6c6;
border-radius: 15px;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.5px;
padding: 12px 24px;
margin-top: 0;
}
#header-raleway.theme-business-gray.theme-design-teal .cta a:hover,
#header-raleway.theme-business-gray-dark.theme-design-teal .cta a:hover,
#header-raleway.theme-business-white-minimal.theme-design-teal .cta a:hover,
#header-raleway.theme-transparent-on-light.theme-design-teal .cta a:hover,
#header-raleway.theme-transparent-on-dark.theme-design-teal .cta a:hover,
#header-raleway.theme-design-teal.theme-design-teal .cta a:hover {
background-color: #00717f;
}
#header-raleway.theme-business-gray .pricing-btn,
#header-raleway.theme-business-gray-dark .pricing-btn,
#header-raleway.theme-business-white-minimal .pricing-btn,
#header-raleway.theme-transparent-on-light .pricing-btn,
#header-raleway.theme-transparent-on-dark .pricing-btn,
#header-raleway.theme-design-teal .pricing-btn {
padding-left: 30px;
padding-right: 30px;
}
#header-raleway .links a,
#header-raleway .links .link-element {
padding: 0;
text-transform: capitalize;
}
#header-raleway .links a:hover,
#header-raleway .links .link-element:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-business-gray .links.left,
#header-raleway.theme-business-white-minimal .links.left,
#header-raleway.theme-business-gray-dark .links.left,
#header-raleway.theme-transparent-on-light .links.left,
#header-raleway.theme-transparent-on-dark .links.left {
padding-left: 204px;
}
#header-raleway.theme-business-gray .links a,
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-gray-dark .links a,
#header-raleway.theme-transparent-on-light .links a,
#header-raleway.theme-transparent-on-dark .links a,
#header-raleway.theme-business-gray .links .link-element,
#header-raleway.theme-business-white-minimal .links .link-element,
#header-raleway.theme-business-gray-dark .links .link-element,
#header-raleway.theme-transparent-on-light .links .link-element,
#header-raleway.theme-transparent-on-dark .links .link-element {
text-transform: none;
font-size: 13px;
line-height: 12px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
transition: all ease 200ms;
}
#header-raleway.theme-business-gray .links.left a,
#header-raleway.theme-business-gray-dark .links.left a,
#header-raleway.theme-business-gray .links.left .link-element,
#header-raleway.theme-business-gray-dark .links.left .link-element {
margin-left: 30px;
}
#header-raleway.theme-business-gray .links.right a:not(:last-of-type),
#header-raleway.theme-business-gray-dark .links.right a:not(:last-of-type),
#header-raleway.theme-business-gray .links.right .link-element:not(:last-child),
#header-raleway.theme-business-gray-dark .links.right .link-element:not(:last-child) {
margin-right: 30px;
}
#header-raleway.theme-business-gray .top-link.cta,
#header-raleway.theme-business-gray-dark .top-link.cta {
margin-top: 8px;
margin-left: 30px;
}
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-white-minimal .links .link-element {
margin-right: 0;
}
@media (max-width: 767px) {
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-white-minimal .links .link-element {
position: absolute;
top: 30px;
right: 10px;
}
}
#header-raleway.theme-business-gray a,
#header-raleway.theme-business-white-minimal a,
#header-raleway.theme-transparent-on-light a,
#header-raleway.theme-business-gray .link-element,
#header-raleway.theme-business-white-minimal .link-element,
#header-raleway.theme-transparent-on-light .link-element,
#header-raleway.theme-business-gray .login,
#header-raleway.theme-business-white-minimal .login,
#header-raleway.theme-transparent-on-light .login {
color: #475262;
}
#header-raleway.theme-business-gray a:hover,
#header-raleway.theme-business-white-minimal a:hover,
#header-raleway.theme-transparent-on-light a:hover,
#header-raleway.theme-business-gray .link-element:hover,
#header-raleway.theme-business-white-minimal .link-element:hover,
#header-raleway.theme-transparent-on-light .link-element:hover,
#header-raleway.theme-business-gray .login:hover,
#header-raleway.theme-business-white-minimal .login:hover,
#header-raleway.theme-transparent-on-light .login:hover,
#header-raleway.theme-business-gray a.active,
#header-raleway.theme-business-white-minimal a.active,
#header-raleway.theme-transparent-on-light a.active,
#header-raleway.theme-business-gray .link-element.active,
#header-raleway.theme-business-white-minimal .link-element.active,
#header-raleway.theme-transparent-on-light .link-element.active,
#header-raleway.theme-business-gray .login.active,
#header-raleway.theme-business-white-minimal .login.active,
#header-raleway.theme-transparent-on-light .login.active,
#header-raleway.theme-business-gray a:focus,
#header-raleway.theme-business-white-minimal a:focus,
#header-raleway.theme-transparent-on-light a:focus,
#header-raleway.theme-business-gray .link-element:focus,
#header-raleway.theme-business-white-minimal .link-element:focus,
#header-raleway.theme-transparent-on-light .link-element:focus,
#header-raleway.theme-business-gray .login:focus,
#header-raleway.theme-business-white-minimal .login:focus,
#header-raleway.theme-transparent-on-light .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-business-gray .name-container .name,
#header-raleway.theme-business-white-minimal .name-container .name,
#header-raleway.theme-transparent-on-light .name-container .name {
color: #475262;
}
#header-raleway.theme-business-gray .name-container .name:hover,
#header-raleway.theme-business-white-minimal .name-container .name:hover,
#header-raleway.theme-transparent-on-light .name-container .name:hover,
#header-raleway.theme-business-gray .name-container .name.active,
#header-raleway.theme-business-white-minimal .name-container .name.active,
#header-raleway.theme-transparent-on-light .name-container .name.active,
#header-raleway.theme-business-gray .name-container .name:focus,
#header-raleway.theme-business-white-minimal .name-container .name:focus,
#header-raleway.theme-transparent-on-light .name-container .name:focus {
color: #3181FF;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-design-teal .name-container .name:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-design-teal .name-container .name:hover:after {
border-top-color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-design-teal .dropdown-menu a:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) {
background: #FFFFFF;
border: none;
box-shadow: 0 1px 6px 0 rgba(21, 34, 53, 0.4);
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .left {
border-right-color: #DBDFE5;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu):before {
border: none;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login {
color: #475262;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login:focus {
color: #3181FF;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-business-gray .name-dropdown,
#header-raleway.theme-business-white-minimal .name-dropdown,
#header-raleway.theme-business-gray-dark .name-dropdown,
#header-raleway.theme-transparent-on-light .name-dropdown,
#header-raleway.theme-transparent-on-dark .name-dropdown {
top: 50px;
}
#header-raleway.theme-business-gray .name,
#header-raleway.theme-business-white-minimal .name,
#header-raleway.theme-business-gray-dark .name,
#header-raleway.theme-transparent-on-light .name,
#header-raleway.theme-transparent-on-dark .name {
font-size: 13px;
line-height: 12px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway.theme-transparent-on-dark .top-link.cta,
#header-raleway.theme-transparent-on-light .top-link.cta {
margin-left: 30px;
}
#header-raleway .dropdown-menu a {
transition: all ease 200ms;
font-size: 13px;
line-height: 13px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway .dropdown-menu .right a,
#header-raleway .dropdown-menu .left a {
font-size: 13px;
line-height: 13px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway.theme-business-gray .cta a:hover,
#header-raleway.theme-transparent-on-light .cta a:hover,
#header-raleway.theme-transparent-on-dark .cta a:hover,
#header-raleway.theme-business-gray .cta a:focus,
#header-raleway.theme-transparent-on-light .cta a:focus,
#header-raleway.theme-transparent-on-dark .cta a:focus,
#header-raleway.theme-business-gray .cta a:active,
#header-raleway.theme-transparent-on-light .cta a:active,
#header-raleway.theme-transparent-on-dark .cta a:active {
color: #FFFFFF;
background-color: #1966CC;
}
#header-raleway.sticky-header {
-webkit-transform: none;
transform: none;
position: fixed !important;
transition: all 200ms;
}
#header-raleway.sticky-header.p-slide-not-top {
box-shadow: 0 1px 3px 0 rgba(21, 34, 53, 0.3);
background-color: rgba(255, 255, 255, 0.96);
}
#header-raleway.sticky-header.p-slide-not-top .links a,
#header-raleway.sticky-header.p-slide-not-top .links .link-element {
color: #475262;
}
#header-raleway.sticky-header.p-slide-not-top .links a:hover,
#header-raleway.sticky-header.p-slide-not-top .links .link-element:hover,
#header-raleway.sticky-header.p-slide-not-top .links a:focus,
#header-raleway.sticky-header.p-slide-not-top .links .link-element:focus,
#header-raleway.sticky-header.p-slide-not-top .links a.active,
#header-raleway.sticky-header.p-slide-not-top .links .link-element.active {
color: #3181FF;
}
#header-raleway.sticky-header.p-slide-not-top .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo.svg?402e7509a501');
}
#header-raleway.sticky-header.p-slide-not-top .hamburger-control svg g {
fill: #475262;
}
#header-raleway.sticky-header .p-slide-up {
-webkit-transform: translateY(0);
transform: translateY(0);
}
#hamburger-overlay a {
text-transform: none;
transition: all ease 200ms;
}
#hamburger-overlay .top-nav .login a {
color: inherit;
text-transform: capitalize;
}
#hamburger-overlay .top-nav .cta a {
font-family: "RalewaySemiBold", Helvetica, sans-serif;
font-size: 13px;
line-height: 14px;
letter-spacing: 1px;
text-transform: none;
padding: 10px 20px;
}
#hamburger-overlay.theme-design-teal .top-nav .cta a {
text-transform: capitalize;
background-color: #00c6c6;
border-radius: 15px;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.5px;
padding: 12px 24px;
margin-top: 0;
}
#hamburger-overlay .products-title {
color: #8E939C;
}
#hamburger-overlay .product-selector {
width: 335px;
margin-left: auto;
margin-right: auto;
background-color: #3181FF;
border-radius: 3px;
}
#hamburger-overlay .product-selector .product-container {
padding: 10px 10px;
margin: 0px 0;
}
#hamburger-overlay .product-selector .product-logo {
text-align: center;
transition: none;
}
#hamburger-overlay .product-selector .product-logo path,
#hamburger-overlay .product-selector .product-logo p {
transition: all ease 200ms;
}
#hamburger-overlay .product-selector .product-logo:hover {
cursor: pointer;
}
#hamburger-overlay .product-selector .product-logo:hover p {
color: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo:hover .icon-outline {
stroke: #FFFFFF;
}
#hamburger-overlay .product-selector:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
#hamburger-overlay .product-selector .left {
border-right: 1px solid #1966CC;
}
#hamburger-overlay .product-selector .product-logo {
color: #FFFFFF;
margin: auto;
}
#hamburger-overlay .product-selector .product-logo:hover,
#hamburger-overlay .product-selector .product-logo.active,
#hamburger-overlay .product-selector .product-logo:focus {
color: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo p {
font-family: "RalewaySemiBold", Helvetica, sans-serif;
line-height: 16px;
}
#hamburger-overlay .product-selector .product-logo .icon-outline {
stroke: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo .icon-shadow {
opacity: 0.3;
}
#hamburger-overlay .product-selector .product-container {
width: 50%;
display: inline-block;
vertical-align: middle;
text-align: center;
}
#hamburger-overlay.theme-business-gray,
#hamburger-overlay.theme-transparent-on-light {
background-color: #f3f5f9;
}
#hamburger-overlay.theme-business-gray a,
#hamburger-overlay.theme-transparent-on-light a,
#hamburger-overlay.theme-business-gray .link-element,
#hamburger-overlay.theme-transparent-on-light .link-element,
#hamburger-overlay.theme-business-gray .login,
#hamburger-overlay.theme-transparent-on-light .login {
color: #475262;
}
#hamburger-overlay.theme-business-gray a:hover,
#hamburger-overlay.theme-transparent-on-light a:hover,
#hamburger-overlay.theme-business-gray .link-element:hover,
#hamburger-overlay.theme-transparent-on-light .link-element:hover,
#hamburger-overlay.theme-business-gray .login:hover,
#hamburger-overlay.theme-transparent-on-light .login:hover,
#hamburger-overlay.theme-business-gray a.active,
#hamburger-overlay.theme-transparent-on-light a.active,
#hamburger-overlay.theme-business-gray .link-element.active,
#hamburger-overlay.theme-transparent-on-light .link-element.active,
#hamburger-overlay.theme-business-gray .login.active,
#hamburger-overlay.theme-transparent-on-light .login.active,
#hamburger-overlay.theme-business-gray a:focus,
#hamburger-overlay.theme-transparent-on-light a:focus,
#hamburger-overlay.theme-business-gray .link-element:focus,
#hamburger-overlay.theme-transparent-on-light .link-element:focus,
#hamburger-overlay.theme-business-gray .login:focus,
#hamburger-overlay.theme-transparent-on-light .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#hamburger-overlay.theme-business-gray .section,
#hamburger-overlay.theme-transparent-on-light .section {
background-color: #f3f5f9;
}
#hamburger-overlay.theme-business-gray .section:not(:last-child),
#hamburger-overlay.theme-transparent-on-light .section:not(:last-child) {
border-bottom: 1px solid rgba(71, 82, 98, 0.2);
}
#hamburger-overlay.theme-business-gray .business-hamburger-cta,
#hamburger-overlay.theme-business-gray-dark .business-hamburger-cta,
#hamburger-overlay.theme-transparent-on-light .business-hamburger-cta,
#hamburger-overlay.theme-transparent-on-dark .business-hamburger-cta {
margin-top: 15px;
color: #FFFFFF;
}
#hamburger-overlay.theme-business-gray .cta a:hover,
#hamburger-overlay.theme-business-gray-dark .cta a:hover,
#hamburger-overlay.theme-transparent-on-light .cta a:hover,
#hamburger-overlay.theme-transparent-on-dark .cta a:hover,
#hamburger-overlay.theme-business-gray .cta a:focus,
#hamburger-overlay.theme-business-gray-dark .cta a:focus,
#hamburger-overlay.theme-transparent-on-light .cta a:focus,
#hamburger-overlay.theme-transparent-on-dark .cta a:focus,
#hamburger-overlay.theme-business-gray .cta a:active,
#hamburger-overlay.theme-business-gray-dark .cta a:active,
#hamburger-overlay.theme-transparent-on-light .cta a:active,
#hamburger-overlay.theme-transparent-on-dark .cta a:active {
color: #FFFFFF;
background-color: #1966CC;
}
.valign-absolute {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.valign-absolute.with-subnav {
-webkit-transform: inherit;
transform: inherit;
top: 18px;
}
#subnav.raleway.business .container ul li {
text-transform: none;
display: inline-block;
margin-right: 48px;
}
.nav-logo {
height: 36px;
width: 206.8px;
float: left;
background-repeat: no-repeat;
z-index: 10;
}
#header-raleway.theme-core-blue .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo-white.svg?402e7509a501');
}
#header-raleway.theme-core-blue .cta {
margin-top: 14px;
}
#header-raleway.theme-core-blue .cta .get-started-page {
color: #3181FF;
background-color: #FFFFFF;
text-transform: none;
transition: all ease 200ms;
padding: 8px 0;
width: 150px;
text-align: center;
}
#header-raleway.theme-core-blue .cta .get-started-page:hover {
background-color: rgba(255, 255, 255, 0.6);
}
.theme-business-gray .nav-logo,
.theme-business-white-minimal .nav-logo,
.theme-business-white-no-links .nav-logo,
.theme-transparent-on-light .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray .nav-logo,
.theme-business-white-minimal .nav-logo,
.theme-business-white-no-links .nav-logo,
.theme-transparent-on-light .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-retina.svg?402e7509a501');
}
}
.theme-business-gray .nav-logo-core,
.theme-business-white-minimal .nav-logo-core,
.theme-business-white-no-links .nav-logo-core,
.theme-transparent-on-light .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo.svg?402e7509a501');
width: 150px;
}
.theme-business-gray .nav-logo-next,
.theme-business-white-minimal .nav-logo-next,
.theme-business-white-no-links .nav-logo-next,
.theme-transparent-on-light .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray .nav-logo-next,
.theme-business-white-minimal .nav-logo-next,
.theme-business-white-no-links .nav-logo-next,
.theme-transparent-on-light .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-retina.svg?402e7509a501');
}
}
.theme-business-gray-dark .nav-logo,
.theme-transparent-on-dark .nav-logo,
.theme-design-teal .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-white.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray-dark .nav-logo,
.theme-transparent-on-dark .nav-logo,
.theme-design-teal .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-retina-white.svg?402e7509a501');
}
}
.theme-business-gray-dark .nav-logo-core,
.theme-transparent-on-dark .nav-logo-core,
.theme-design-teal .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo-white.svg?402e7509a501');
width: 150px;
}
.theme-business-gray-dark .nav-logo-next,
.theme-transparent-on-dark .nav-logo-next,
.theme-design-teal .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-white.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray-dark .nav-logo-next,
.theme-transparent-on-dark .nav-logo-next,
.theme-design-teal .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-retina-white.svg?402e7509a501');
}
}
.visible-hamburger-1060 {
display: none !important;
}
@media (max-width: 1060px) {
.visible-hamburger-1060 {
display: block !important;
}
}
@media (max-width: 1060px) {
.hidden-hamburger-1060 {
display: none !important;
}
}
.visible-hamburger-1024 {
display: none !important;
}
@media (max-width: 1024px) {
.visible-hamburger-1024 {
display: block !important;
}
}
@media (max-width: 1024px) {
.hidden-hamburger-1024 {
display: none !important;
}
}
body.overlay-open {
position: inherit;
}
body.overlay-open .theme-transparent-on-dark {
background-color: #152235;
}
body.overlay-open .theme-transparent-on-light {
background-color: #F3F5F9;
}
/* Video Header Navbar */
.video-purple-500 {
color: #FFFFFF;
border-color: #a409b8 !important;
background-color: #a409b8;
transition: 200ms all ease;
}
.video-purple-500:hover {
color: #FFFFFF;
border-color: #e628e1 !important;
background-color: #e628e1;
}
.video-purple-500:focus {
color: #FFFFFF;
}
.video-header {
/* Highlight */
}
.video-header .pe-auto {
pointer-events: auto;
}
.video-header .pe-none {
pointer-events: none;
}
.video-header ::-moz-selection {
color: #FFFFFF;
background: #fd6afa;
}
.video-header ::selection {
color: #FFFFFF;
background: #fd6afa;
}
.video-header .noselect {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
}
.video-header .shape-overflow {
overflow-x: hidden;
}
.video-header .shape-wrapper {
position: relative;
}
.video-header .navbar {
position: relative;
min-height: 48px;
margin-bottom: 0;
border: none;
border-radius: 0;
z-index: 1000;
background-color: #a409b8;
}
@media (min-width: 992px) {
.video-header .navbar {
border-radius: 0;
height: 72px;
}
}
@media (max-width: 991px) {
.video-header .navbar #header-raleway {
border-radius: 0;
height: 48px;
}
}
.video-header .navbar-video {
background-color: #62008f;
border-color: #62008f;
}
.video-header .navbar-brand {
height: auto;
line-height: normal;
padding: 12px 15px;
}
@media (min-width: 992px) {
.video-header .navbar-brand {
padding: 18px 15px;
}
}
@media (min-width: 1320px) {
.video-header .navbar-brand {
padding: 18px 30px;
}
}
.video-header .navbar-video .navbar-toggle {
cursor: pointer;
position: relative;
float: right;
color: #FFFFFF;
border-color: #a409b8;
background-color: #a409b8;
transition: 200ms all ease;
font-size: 12px;
line-height: 12px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
padding: 7px 12px;
border: 2px solid #a409b8;
border-radius: 15px;
margin: 9px 15px;
text-decoration: none;
}
@media (min-width: 992px) {
.video-header .navbar-video .navbar-toggle {
font-size: 14px;
line-height: 16px;
padding: 12px 24px;
border-radius: 30px;
}
}
.video-header .navbar-video .navbar-toggle:active {
color: #FFFFFF;
border-color: #a409b8;
background-color: #a409b8;
}
.video-header .navbar-video .navbar-toggle:hover {
color: #FFFFFF;
border-color: #e628e1;
background-color: #e628e1;
}
.video-header .navbar-video .navbar-close {
margin: 12px 15px;
}
.video-header .navbar-video .navbar-nav > li > a {
color: #FFFFFF;
transition: 200ms all ease;
}
.video-header .navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
font-size: 16px;
line-height: 24px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
letter-spacing: 0.5px;
}
@media (min-width: 768px) {
.video-header .navbar-nav > li > a {
font-size: 13px;
line-height: 18px;
}
}
@media (min-width: 992px) {
.video-header .navbar-nav > li > a {
padding-top: 27px;
padding-bottom: 27px;
}
}
.video-header .navbar-video .navbar-nav > li > a:hover,
.video-header .navbar-video .navbar-nav > li > a:focus {
opacity: 0.6;
background-color: transparent;
}
.video-header .navbar-collapse .navbar-header {
background-color: #62008f;
}
.video-header .navbar-collapse .navbar-header .navbar-toggle {
background-color: transparent;
border: none;
padding: 0;
}
.video-header .navbar-collapse {
position: fixed;
top: 0px;
z-index: 100;
width: 100%;
background-color: rgba(98, 0, 143, 0.96);
padding-left: 0px;
padding-right: 0px;
text-align: center;
overflow-x: visible;
border-top: none;
box-shadow: none;
max-height: none;
-webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
.video-header .navbar-collapse {
padding-right: 15px;
padding-left: 15px;
position: relative;
width: 80%;
margin-left: auto;
height: auto;
background-color: transparent;
}
}
.video-header .vid-logo {
height: 24px;
width: auto;
}
@media (min-width: 992px) {
.video-header .vid-logo {
height: 36px;
width: auto;
}
}
.video-header .v-nav-cta {
font-size: 16px;
line-height: 16px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
padding: 10px 24px;
margin: 9px 15px;
border: 2px solid;
border-radius: 30px;
display: inline-flex;
justify-content: center;
align-items: center;
text-decoration: none;
}
@media (min-width: 768px) {
.video-header .v-nav-cta {
font-size: 12px;
line-height: 12px;
padding: 7px 12px;
margin-right: -15px;
border-radius: 15px;
}
}
@media (min-width: 992px) {
.video-header .v-nav-cta {
font-size: 14px;
line-height: 16px;
padding: 12px 24px;
margin: 14px -15px 14px 15px;
border-radius: 30px;
}
}
@media (min-width: 1320px) {
.video-header .v-nav-cta {
margin: 14px 0 14px 15px;
}
}
@media (max-width: 767px) {
.video-header .mobile-margin {
margin-top: 40px;
margin-bottom: 40px;
height: 100vh;
overflow: hidden;
}
}
.video-header .icon-white {
-webkit-filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(231deg) brightness(112%) contrast(101%);
filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(231deg) brightness(112%) contrast(101%);
}
.video-header .explore-page {
padding-left: 0;
}
.video-header .dropdown-items .link-element {
margin-top: 5px;
} | client/src/assets/images/AdoptAPet_files/29465a9c5d0b.css | NEW COLORS
------------------------- */
/* Raleway navigation header/footer styling variables */
/* Color variables for the white navigation theme */
/* Variables for the gray navigation theme */
/* Text and link mixins */
/* Button mixins */
/* Close (x) mixins*/
/* Centering content mixins */
/* Maintaining aspect ratio */
/* Variable shadow sizes */
#header-raleway .mega-dropdown-menu,
#hamburger-overlay .mega-dropdown-menu {
top: 55px;
padding: 12px 0;
width: 100%;
max-width: 740px;
margin-left: -370px;
left: 50%;
border: none;
border-top: 1px solid #ecedef;
box-shadow: 0px 2px 8px rgba(5, 18, 37, 0.1);
background-color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
@media (max-width: 992px) {
#header-raleway .mega-dropdown-menu,
#hamburger-overlay .mega-dropdown-menu {
max-width: calc(100% + 60px);
margin-left: 0;
left: 0;
}
}
#header-raleway .mega-dropdown-menu::before,
#hamburger-overlay .mega-dropdown-menu::before,
#header-raleway .mega-dropdown-menu::after,
#hamburger-overlay .mega-dropdown-menu::after {
display: none;
}
#header-raleway .mega-dropdown-menu__container,
#hamburger-overlay .mega-dropdown-menu__container {
display: flex;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link {
padding: 12px;
flex-basis: 240px;
max-width: 240px;
text-align: left;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover {
background-color: #f6f7f9;
border-radius: 8px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover .mega-dropdown-menu-link__title--dark,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover .mega-dropdown-menu-link__title--dark {
color: #1e55eb;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:hover .arrow,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:hover .arrow {
left: 3px;
opacity: 1;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:not(:last-of-type),
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:not(:last-of-type),
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link:not(:first-of-type),
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link:not(:first-of-type) {
padding: 12px;
margin: 0;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link video,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link video {
max-width: 100%;
border-radius: 4px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title {
display: flex;
align-items: center;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.5px;
margin-bottom: 8px;
margin-top: 12px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title__icon,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title__icon {
margin-right: 10px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--blue,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--blue {
color: #1e55eb;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--purple,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--purple {
color: #a409b8;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--teal,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--teal {
color: #00a0aa;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__title--dark,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title--dark {
font-family: "RalewaySemiBold";
color: #152235;
text-decoration: none;
transition: 0.4s all;
margin-bottom: 0;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__thumb,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb {
max-width: 100%;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__thumb img,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb img {
border-radius: 4px;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link__description,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__description {
font-size: 14px;
line-height: 20px;
letter-spacing: 0.25px;
color: #747c87;
}
#header-raleway .mega-dropdown-menu .mega-dropdown-menu-link .arrow,
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link .arrow {
position: relative;
top: 3px;
left: -7px;
opacity: 0;
transition: 0.4s all;
}
#header-raleway.theme-transparent-on-dark .mega-dropdown-menu {
box-shadow: none;
width: 100%;
max-width: 740px;
margin-left: -370px;
left: 50%;
border-top: 0;
padding: 10px;
border-radius: 8px;
}
@media (max-width: 992px) {
#header-raleway.theme-transparent-on-dark .mega-dropdown-menu {
max-width: calc(100% + 60px);
margin-left: 0;
left: 0;
}
}
#hamburger-overlay .mega-dropdown-menu {
box-shadow: none;
width: 100%;
margin-left: 0;
}
@media (max-width: 700px) {
#hamburger-overlay .mega-dropdown-menu__container {
flex-wrap: wrap;
justify-content: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link {
flex-basis: 400px;
max-width: 400px;
text-align: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__title {
justify-content: center;
}
#hamburger-overlay .mega-dropdown-menu .mega-dropdown-menu-link__thumb {
display: none;
}
}
#header-raleway .dropdown-items .mega-dropdown-menu {
top: 67px;
right: 0;
left: auto;
box-shadow: 0px 2px 8px rgba(5, 18, 37, 0.1);
}
#header-raleway-spacer.theme-core-blue {
display: none;
}
#header-raleway {
position: relative;
height: 72px;
}
#header-raleway .top-row {
/* Top Nav */
padding: 6px 20px;
transition: all ease 200ms;
}
#header-raleway .top-row.theme-core-blue {
background-color: #3181FF;
box-shadow: none;
}
#header-raleway .top-row.theme-business-gray {
background-color: #F3F5F9;
box-shadow: none;
}
#header-raleway .top-row.theme-business-gray-dark {
box-shadow: none;
}
#header-raleway .top-row.theme-business-white-minimal,
#header-raleway .top-row.theme-business-white-no-links {
background-color: #FFFFFF;
box-shadow: none;
}
#header-raleway .top-row.theme-business-white-minimal a,
#header-raleway .top-row.theme-business-white-no-links a,
#header-raleway .top-row.theme-business-white-minimal .link-element,
#header-raleway .top-row.theme-business-white-no-links .link-element,
#header-raleway .top-row.theme-business-white-minimal .login,
#header-raleway .top-row.theme-business-white-no-links .login {
color: #475262;
}
#header-raleway .top-row.theme-business-white-minimal a:hover,
#header-raleway .top-row.theme-business-white-no-links a:hover,
#header-raleway .top-row.theme-business-white-minimal .link-element:hover,
#header-raleway .top-row.theme-business-white-no-links .link-element:hover,
#header-raleway .top-row.theme-business-white-minimal .login:hover,
#header-raleway .top-row.theme-business-white-no-links .login:hover,
#header-raleway .top-row.theme-business-white-minimal a.active,
#header-raleway .top-row.theme-business-white-no-links a.active,
#header-raleway .top-row.theme-business-white-minimal .link-element.active,
#header-raleway .top-row.theme-business-white-no-links .link-element.active,
#header-raleway .top-row.theme-business-white-minimal .login.active,
#header-raleway .top-row.theme-business-white-no-links .login.active,
#header-raleway .top-row.theme-business-white-minimal a:focus,
#header-raleway .top-row.theme-business-white-no-links a:focus,
#header-raleway .top-row.theme-business-white-minimal .link-element:focus,
#header-raleway .top-row.theme-business-white-no-links .link-element:focus,
#header-raleway .top-row.theme-business-white-minimal .login:focus,
#header-raleway .top-row.theme-business-white-no-links .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway .top-row.theme-business-white-minimal .hamburger .hamburger-control,
#header-raleway .top-row.theme-business-white-no-links .hamburger .hamburger-control {
cursor: auto;
}
#header-raleway .top-row.theme-transparent-on-dark,
#header-raleway .top-row.theme-transparent-on-light {
position: absolute !important;
background-color: transparent;
box-shadow: none;
}
#header-raleway .top-row.theme-design-teal {
background-color: #00a0aa;
box-shadow: none;
}
@media (min-width: 1320px) {
#header-raleway .top-row {
padding: 6px 30px;
}
}
#header-raleway .dropdown .name {
transition: all ease 200ms;
}
#header-raleway .products-dropdown-group {
position: relative;
margin-right: 30px;
}
#header-raleway .why-prezi-dropdown,
#header-raleway .discover-dropdown {
cursor: pointer;
}
#header-raleway .why-prezi-dropdown-group,
#header-raleway .discover-dropdown-group,
#header-raleway .product-dropdown-group {
position: relative;
margin-right: 35px;
margin-left: 35px;
}
#header-raleway .why-prezi-dropdown-group.no-left-margin,
#header-raleway .discover-dropdown-group.no-left-margin,
#header-raleway .product-dropdown-group.no-left-margin {
margin-left: 0;
}
@media (max-width: 1030px) {
#header-raleway .hide-why-prezi-video-in-nav {
display: none;
}
#header-raleway .video-right-margin {
margin-right: 35px;
}
}
#header-raleway [data-toggle="dropdown"] {
cursor: pointer;
}
#header-raleway .dropdown .caret,
#header-raleway .dropdown-group .caret {
transition: -webkit-transform 0.25s ease-in-out;
transition: transform 0.25s ease-in-out;
transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
#header-raleway .dropdown.open .caret,
#header-raleway .dropdown-group.open .caret {
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}
#header-raleway .products-dropdown-menu {
min-width: 302px;
margin: 0 0 0 -151px;
left: 50%;
top: 55px;
}
#header-raleway .products-dropdown-menu .product-container {
padding: 10px 25px;
margin: 15px 0;
}
#header-raleway .products-dropdown-menu .product-logo {
text-align: center;
transition: none;
}
#header-raleway .products-dropdown-menu .product-logo path,
#header-raleway .products-dropdown-menu .product-logo p {
transition: all ease 200ms;
}
#header-raleway .products-dropdown-menu .product-logo:hover {
cursor: pointer;
}
#header-raleway .products-dropdown-menu .product-logo:hover p {
color: #3181FF;
}
#header-raleway .products-dropdown-menu .product-logo:hover .icon-outline {
stroke: #3181FF;
}
#header-raleway .products-dropdown-menu .product-logo {
width: 100px;
}
#header-raleway .products-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .why-prezi-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 230px;
margin: 0 0 0 -115px;
left: 50%;
top: 55px;
}
#header-raleway .why-prezi-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .discover-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 120px;
margin: 0 0 0 -60px;
left: 50%;
top: 55px;
}
#header-raleway .discover-dropdown-menu.with-design-navigation {
left: 0;
}
#header-raleway .discover-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway .product-dropdown-menu {
white-space: nowrap;
padding: 20px;
min-width: 120px;
margin: 0 0 0 -60px;
left: 30%;
top: 55px;
}
#header-raleway .product-dropdown-menu .top-triangle-with-shadow {
position: absolute;
left: 50%;
margin-right: -50%;
-webkit-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
#header-raleway.theme-business-gray .name-container,
#header-raleway.theme-business-gray-dark .name-container,
#header-raleway.theme-transparent-on-dark .name-container,
#header-raleway.theme-transparent-on-light .name-container {
float: right;
margin-left: 30px;
}
#header-raleway.theme-design-teal .login-page {
margin-right: 30px;
}
#header-raleway.theme-core-blue .logo {
margin: 12px 15px 14px 0;
}
#header-raleway.theme-core-blue .login {
margin-right: 30px;
}
#header-raleway.theme-core-blue .login-page {
padding: 13px 0;
}
#header-raleway.theme-core-blue .top-link,
#header-raleway.theme-core-blue .login-page {
font-size: 13px;
letter-spacing: 1px;
text-transform: none;
}
#header-raleway.theme-core-blue .top-link.active,
#header-raleway.theme-core-blue .top-link:hover,
#header-raleway.theme-core-blue .login-page.active,
#header-raleway.theme-core-blue .login-page:hover {
color: rgba(255, 255, 255, 0.6);
}
#header-raleway.theme-core-blue .name-container .name {
color: #FFFFFF;
font-family: "RalewayBold", Helvetica, sans-serif;
letter-spacing: 1px;
font-size: 13px;
}
#header-raleway.theme-core-blue .name-container .name:hover,
#header-raleway.theme-core-blue .name-container .name.active,
#header-raleway.theme-core-blue .name-container .name:focus {
color: rgba(255, 255, 255, 0.6);
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-core-blue .name-container .name:hover:after {
border-top-color: rgba(255, 255, 255, 0.6);
}
#header-raleway.theme-core-blue .dropdown-menu {
background-color: #FFFFFF;
border: none;
box-shadow: 0 1px 6px 0 rgba(21, 34, 53, 0.4);
}
#header-raleway.theme-core-blue .dropdown-menu:before,
#header-raleway.theme-core-blue .dropdown-menu:after {
border-bottom-color: #FFFFFF;
}
#header-raleway.theme-core-blue .dropdown-menu .left {
border-right: 1px solid rgba(0, 0, 0, 0.4);
}
#header-raleway.theme-core-blue .dropdown-menu a {
color: #152235;
}
#header-raleway.theme-core-blue .dropdown-menu a:hover {
color: rgba(0, 0, 0, 0.4);
}
#header-raleway.theme-business-gray .name:after,
#header-raleway.theme-business-white-minimal .name:after,
#header-raleway.theme-transparent-on-light .name:after {
border-top-color: #475262;
}
#header-raleway.theme-business-gray .name:hover:after,
#header-raleway.theme-business-white-minimal .name:hover:after,
#header-raleway.theme-transparent-on-light .name:hover:after {
border-top-color: #3181FF;
}
#header-raleway.theme-business-gray .business-header-cta,
#header-raleway.theme-business-gray-dark .business-header-cta,
#header-raleway.theme-business-white-minimal .business-header-cta,
#header-raleway.theme-transparent-on-light .business-header-cta,
#header-raleway.theme-transparent-on-dark .business-header-cta,
#header-raleway.theme-design-teal .business-header-cta {
margin-top: 4px;
color: #FFFFFF;
font-family: "RalewaySemiBold", Helvetica, sans-serif;
font-size: 13px;
line-height: 14px;
letter-spacing: 1px;
text-transform: none;
padding: 8px 13px;
}
#header-raleway.theme-business-gray .business-header-cta:hover,
#header-raleway.theme-business-gray-dark .business-header-cta:hover,
#header-raleway.theme-business-white-minimal .business-header-cta:hover,
#header-raleway.theme-transparent-on-light .business-header-cta:hover,
#header-raleway.theme-transparent-on-dark .business-header-cta:hover,
#header-raleway.theme-design-teal .business-header-cta:hover {
color: #FFFFFF;
}
#header-raleway.theme-business-gray.theme-design-teal .business-header-cta,
#header-raleway.theme-business-gray-dark.theme-design-teal .business-header-cta,
#header-raleway.theme-business-white-minimal.theme-design-teal .business-header-cta,
#header-raleway.theme-transparent-on-light.theme-design-teal .business-header-cta,
#header-raleway.theme-transparent-on-dark.theme-design-teal .business-header-cta,
#header-raleway.theme-design-teal.theme-design-teal .business-header-cta {
text-transform: capitalize;
background-color: #00c6c6;
border-radius: 15px;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.5px;
padding: 12px 24px;
margin-top: 0;
}
#header-raleway.theme-business-gray.theme-design-teal .cta a:hover,
#header-raleway.theme-business-gray-dark.theme-design-teal .cta a:hover,
#header-raleway.theme-business-white-minimal.theme-design-teal .cta a:hover,
#header-raleway.theme-transparent-on-light.theme-design-teal .cta a:hover,
#header-raleway.theme-transparent-on-dark.theme-design-teal .cta a:hover,
#header-raleway.theme-design-teal.theme-design-teal .cta a:hover {
background-color: #00717f;
}
#header-raleway.theme-business-gray .pricing-btn,
#header-raleway.theme-business-gray-dark .pricing-btn,
#header-raleway.theme-business-white-minimal .pricing-btn,
#header-raleway.theme-transparent-on-light .pricing-btn,
#header-raleway.theme-transparent-on-dark .pricing-btn,
#header-raleway.theme-design-teal .pricing-btn {
padding-left: 30px;
padding-right: 30px;
}
#header-raleway .links a,
#header-raleway .links .link-element {
padding: 0;
text-transform: capitalize;
}
#header-raleway .links a:hover,
#header-raleway .links .link-element:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-business-gray .links.left,
#header-raleway.theme-business-white-minimal .links.left,
#header-raleway.theme-business-gray-dark .links.left,
#header-raleway.theme-transparent-on-light .links.left,
#header-raleway.theme-transparent-on-dark .links.left {
padding-left: 204px;
}
#header-raleway.theme-business-gray .links a,
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-gray-dark .links a,
#header-raleway.theme-transparent-on-light .links a,
#header-raleway.theme-transparent-on-dark .links a,
#header-raleway.theme-business-gray .links .link-element,
#header-raleway.theme-business-white-minimal .links .link-element,
#header-raleway.theme-business-gray-dark .links .link-element,
#header-raleway.theme-transparent-on-light .links .link-element,
#header-raleway.theme-transparent-on-dark .links .link-element {
text-transform: none;
font-size: 13px;
line-height: 12px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
transition: all ease 200ms;
}
#header-raleway.theme-business-gray .links.left a,
#header-raleway.theme-business-gray-dark .links.left a,
#header-raleway.theme-business-gray .links.left .link-element,
#header-raleway.theme-business-gray-dark .links.left .link-element {
margin-left: 30px;
}
#header-raleway.theme-business-gray .links.right a:not(:last-of-type),
#header-raleway.theme-business-gray-dark .links.right a:not(:last-of-type),
#header-raleway.theme-business-gray .links.right .link-element:not(:last-child),
#header-raleway.theme-business-gray-dark .links.right .link-element:not(:last-child) {
margin-right: 30px;
}
#header-raleway.theme-business-gray .top-link.cta,
#header-raleway.theme-business-gray-dark .top-link.cta {
margin-top: 8px;
margin-left: 30px;
}
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-white-minimal .links .link-element {
margin-right: 0;
}
@media (max-width: 767px) {
#header-raleway.theme-business-white-minimal .links a,
#header-raleway.theme-business-white-minimal .links .link-element {
position: absolute;
top: 30px;
right: 10px;
}
}
#header-raleway.theme-business-gray a,
#header-raleway.theme-business-white-minimal a,
#header-raleway.theme-transparent-on-light a,
#header-raleway.theme-business-gray .link-element,
#header-raleway.theme-business-white-minimal .link-element,
#header-raleway.theme-transparent-on-light .link-element,
#header-raleway.theme-business-gray .login,
#header-raleway.theme-business-white-minimal .login,
#header-raleway.theme-transparent-on-light .login {
color: #475262;
}
#header-raleway.theme-business-gray a:hover,
#header-raleway.theme-business-white-minimal a:hover,
#header-raleway.theme-transparent-on-light a:hover,
#header-raleway.theme-business-gray .link-element:hover,
#header-raleway.theme-business-white-minimal .link-element:hover,
#header-raleway.theme-transparent-on-light .link-element:hover,
#header-raleway.theme-business-gray .login:hover,
#header-raleway.theme-business-white-minimal .login:hover,
#header-raleway.theme-transparent-on-light .login:hover,
#header-raleway.theme-business-gray a.active,
#header-raleway.theme-business-white-minimal a.active,
#header-raleway.theme-transparent-on-light a.active,
#header-raleway.theme-business-gray .link-element.active,
#header-raleway.theme-business-white-minimal .link-element.active,
#header-raleway.theme-transparent-on-light .link-element.active,
#header-raleway.theme-business-gray .login.active,
#header-raleway.theme-business-white-minimal .login.active,
#header-raleway.theme-transparent-on-light .login.active,
#header-raleway.theme-business-gray a:focus,
#header-raleway.theme-business-white-minimal a:focus,
#header-raleway.theme-transparent-on-light a:focus,
#header-raleway.theme-business-gray .link-element:focus,
#header-raleway.theme-business-white-minimal .link-element:focus,
#header-raleway.theme-transparent-on-light .link-element:focus,
#header-raleway.theme-business-gray .login:focus,
#header-raleway.theme-business-white-minimal .login:focus,
#header-raleway.theme-transparent-on-light .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-business-gray .name-container .name,
#header-raleway.theme-business-white-minimal .name-container .name,
#header-raleway.theme-transparent-on-light .name-container .name {
color: #475262;
}
#header-raleway.theme-business-gray .name-container .name:hover,
#header-raleway.theme-business-white-minimal .name-container .name:hover,
#header-raleway.theme-transparent-on-light .name-container .name:hover,
#header-raleway.theme-business-gray .name-container .name.active,
#header-raleway.theme-business-white-minimal .name-container .name.active,
#header-raleway.theme-transparent-on-light .name-container .name.active,
#header-raleway.theme-business-gray .name-container .name:focus,
#header-raleway.theme-business-white-minimal .name-container .name:focus,
#header-raleway.theme-transparent-on-light .name-container .name:focus {
color: #3181FF;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-design-teal .name-container .name:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-design-teal .name-container .name:hover:after {
border-top-color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-design-teal .dropdown-menu a:hover {
color: #FFFFFF;
opacity: 0.6;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu),
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) {
background: #FFFFFF;
border: none;
box-shadow: 0 1px 6px 0 rgba(21, 34, 53, 0.4);
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .left,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .left {
border-right-color: #DBDFE5;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu):after,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu):before,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu):before {
border: none;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login {
color: #475262;
}
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login:hover,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login.active,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) a:focus,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .link-element:focus,
#header-raleway.theme-business-gray .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-business-gray-dark .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-business-white-minimal .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-transparent-on-light .dropdown-menu:not(.mega-dropdown-menu) .login:focus,
#header-raleway.theme-transparent-on-dark .dropdown-menu:not(.mega-dropdown-menu) .login:focus {
color: #3181FF;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#header-raleway.theme-business-gray .name-dropdown,
#header-raleway.theme-business-white-minimal .name-dropdown,
#header-raleway.theme-business-gray-dark .name-dropdown,
#header-raleway.theme-transparent-on-light .name-dropdown,
#header-raleway.theme-transparent-on-dark .name-dropdown {
top: 50px;
}
#header-raleway.theme-business-gray .name,
#header-raleway.theme-business-white-minimal .name,
#header-raleway.theme-business-gray-dark .name,
#header-raleway.theme-transparent-on-light .name,
#header-raleway.theme-transparent-on-dark .name {
font-size: 13px;
line-height: 12px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway.theme-transparent-on-dark .top-link.cta,
#header-raleway.theme-transparent-on-light .top-link.cta {
margin-left: 30px;
}
#header-raleway .dropdown-menu a {
transition: all ease 200ms;
font-size: 13px;
line-height: 13px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway .dropdown-menu .right a,
#header-raleway .dropdown-menu .left a {
font-size: 13px;
line-height: 13px;
letter-spacing: 1px;
font-family: "RalewayBold", Helvetica, sans-serif;
}
#header-raleway.theme-business-gray .cta a:hover,
#header-raleway.theme-transparent-on-light .cta a:hover,
#header-raleway.theme-transparent-on-dark .cta a:hover,
#header-raleway.theme-business-gray .cta a:focus,
#header-raleway.theme-transparent-on-light .cta a:focus,
#header-raleway.theme-transparent-on-dark .cta a:focus,
#header-raleway.theme-business-gray .cta a:active,
#header-raleway.theme-transparent-on-light .cta a:active,
#header-raleway.theme-transparent-on-dark .cta a:active {
color: #FFFFFF;
background-color: #1966CC;
}
#header-raleway.sticky-header {
-webkit-transform: none;
transform: none;
position: fixed !important;
transition: all 200ms;
}
#header-raleway.sticky-header.p-slide-not-top {
box-shadow: 0 1px 3px 0 rgba(21, 34, 53, 0.3);
background-color: rgba(255, 255, 255, 0.96);
}
#header-raleway.sticky-header.p-slide-not-top .links a,
#header-raleway.sticky-header.p-slide-not-top .links .link-element {
color: #475262;
}
#header-raleway.sticky-header.p-slide-not-top .links a:hover,
#header-raleway.sticky-header.p-slide-not-top .links .link-element:hover,
#header-raleway.sticky-header.p-slide-not-top .links a:focus,
#header-raleway.sticky-header.p-slide-not-top .links .link-element:focus,
#header-raleway.sticky-header.p-slide-not-top .links a.active,
#header-raleway.sticky-header.p-slide-not-top .links .link-element.active {
color: #3181FF;
}
#header-raleway.sticky-header.p-slide-not-top .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo.svg?402e7509a501');
}
#header-raleway.sticky-header.p-slide-not-top .hamburger-control svg g {
fill: #475262;
}
#header-raleway.sticky-header .p-slide-up {
-webkit-transform: translateY(0);
transform: translateY(0);
}
#hamburger-overlay a {
text-transform: none;
transition: all ease 200ms;
}
#hamburger-overlay .top-nav .login a {
color: inherit;
text-transform: capitalize;
}
#hamburger-overlay .top-nav .cta a {
font-family: "RalewaySemiBold", Helvetica, sans-serif;
font-size: 13px;
line-height: 14px;
letter-spacing: 1px;
text-transform: none;
padding: 10px 20px;
}
#hamburger-overlay.theme-design-teal .top-nav .cta a {
text-transform: capitalize;
background-color: #00c6c6;
border-radius: 15px;
font-size: 14px;
line-height: 16px;
letter-spacing: 0.5px;
padding: 12px 24px;
margin-top: 0;
}
#hamburger-overlay .products-title {
color: #8E939C;
}
#hamburger-overlay .product-selector {
width: 335px;
margin-left: auto;
margin-right: auto;
background-color: #3181FF;
border-radius: 3px;
}
#hamburger-overlay .product-selector .product-container {
padding: 10px 10px;
margin: 0px 0;
}
#hamburger-overlay .product-selector .product-logo {
text-align: center;
transition: none;
}
#hamburger-overlay .product-selector .product-logo path,
#hamburger-overlay .product-selector .product-logo p {
transition: all ease 200ms;
}
#hamburger-overlay .product-selector .product-logo:hover {
cursor: pointer;
}
#hamburger-overlay .product-selector .product-logo:hover p {
color: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo:hover .icon-outline {
stroke: #FFFFFF;
}
#hamburger-overlay .product-selector:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
#hamburger-overlay .product-selector .left {
border-right: 1px solid #1966CC;
}
#hamburger-overlay .product-selector .product-logo {
color: #FFFFFF;
margin: auto;
}
#hamburger-overlay .product-selector .product-logo:hover,
#hamburger-overlay .product-selector .product-logo.active,
#hamburger-overlay .product-selector .product-logo:focus {
color: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo p {
font-family: "RalewaySemiBold", Helvetica, sans-serif;
line-height: 16px;
}
#hamburger-overlay .product-selector .product-logo .icon-outline {
stroke: #FFFFFF;
}
#hamburger-overlay .product-selector .product-logo .icon-shadow {
opacity: 0.3;
}
#hamburger-overlay .product-selector .product-container {
width: 50%;
display: inline-block;
vertical-align: middle;
text-align: center;
}
#hamburger-overlay.theme-business-gray,
#hamburger-overlay.theme-transparent-on-light {
background-color: #f3f5f9;
}
#hamburger-overlay.theme-business-gray a,
#hamburger-overlay.theme-transparent-on-light a,
#hamburger-overlay.theme-business-gray .link-element,
#hamburger-overlay.theme-transparent-on-light .link-element,
#hamburger-overlay.theme-business-gray .login,
#hamburger-overlay.theme-transparent-on-light .login {
color: #475262;
}
#hamburger-overlay.theme-business-gray a:hover,
#hamburger-overlay.theme-transparent-on-light a:hover,
#hamburger-overlay.theme-business-gray .link-element:hover,
#hamburger-overlay.theme-transparent-on-light .link-element:hover,
#hamburger-overlay.theme-business-gray .login:hover,
#hamburger-overlay.theme-transparent-on-light .login:hover,
#hamburger-overlay.theme-business-gray a.active,
#hamburger-overlay.theme-transparent-on-light a.active,
#hamburger-overlay.theme-business-gray .link-element.active,
#hamburger-overlay.theme-transparent-on-light .link-element.active,
#hamburger-overlay.theme-business-gray .login.active,
#hamburger-overlay.theme-transparent-on-light .login.active,
#hamburger-overlay.theme-business-gray a:focus,
#hamburger-overlay.theme-transparent-on-light a:focus,
#hamburger-overlay.theme-business-gray .link-element:focus,
#hamburger-overlay.theme-transparent-on-light .link-element:focus,
#hamburger-overlay.theme-business-gray .login:focus,
#hamburger-overlay.theme-transparent-on-light .login:focus {
color: #475262;
text-decoration: none;
outline: none;
box-shadow: none;
/**/
}
#hamburger-overlay.theme-business-gray .section,
#hamburger-overlay.theme-transparent-on-light .section {
background-color: #f3f5f9;
}
#hamburger-overlay.theme-business-gray .section:not(:last-child),
#hamburger-overlay.theme-transparent-on-light .section:not(:last-child) {
border-bottom: 1px solid rgba(71, 82, 98, 0.2);
}
#hamburger-overlay.theme-business-gray .business-hamburger-cta,
#hamburger-overlay.theme-business-gray-dark .business-hamburger-cta,
#hamburger-overlay.theme-transparent-on-light .business-hamburger-cta,
#hamburger-overlay.theme-transparent-on-dark .business-hamburger-cta {
margin-top: 15px;
color: #FFFFFF;
}
#hamburger-overlay.theme-business-gray .cta a:hover,
#hamburger-overlay.theme-business-gray-dark .cta a:hover,
#hamburger-overlay.theme-transparent-on-light .cta a:hover,
#hamburger-overlay.theme-transparent-on-dark .cta a:hover,
#hamburger-overlay.theme-business-gray .cta a:focus,
#hamburger-overlay.theme-business-gray-dark .cta a:focus,
#hamburger-overlay.theme-transparent-on-light .cta a:focus,
#hamburger-overlay.theme-transparent-on-dark .cta a:focus,
#hamburger-overlay.theme-business-gray .cta a:active,
#hamburger-overlay.theme-business-gray-dark .cta a:active,
#hamburger-overlay.theme-transparent-on-light .cta a:active,
#hamburger-overlay.theme-transparent-on-dark .cta a:active {
color: #FFFFFF;
background-color: #1966CC;
}
.valign-absolute {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
}
.valign-absolute.with-subnav {
-webkit-transform: inherit;
transform: inherit;
top: 18px;
}
#subnav.raleway.business .container ul li {
text-transform: none;
display: inline-block;
margin-right: 48px;
}
.nav-logo {
height: 36px;
width: 206.8px;
float: left;
background-repeat: no-repeat;
z-index: 10;
}
#header-raleway.theme-core-blue .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo-white.svg?402e7509a501');
}
#header-raleway.theme-core-blue .cta {
margin-top: 14px;
}
#header-raleway.theme-core-blue .cta .get-started-page {
color: #3181FF;
background-color: #FFFFFF;
text-transform: none;
transition: all ease 200ms;
padding: 8px 0;
width: 150px;
text-align: center;
}
#header-raleway.theme-core-blue .cta .get-started-page:hover {
background-color: rgba(255, 255, 255, 0.6);
}
.theme-business-gray .nav-logo,
.theme-business-white-minimal .nav-logo,
.theme-business-white-no-links .nav-logo,
.theme-transparent-on-light .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray .nav-logo,
.theme-business-white-minimal .nav-logo,
.theme-business-white-no-links .nav-logo,
.theme-transparent-on-light .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-retina.svg?402e7509a501');
}
}
.theme-business-gray .nav-logo-core,
.theme-business-white-minimal .nav-logo-core,
.theme-business-white-no-links .nav-logo-core,
.theme-transparent-on-light .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo.svg?402e7509a501');
width: 150px;
}
.theme-business-gray .nav-logo-next,
.theme-business-white-minimal .nav-logo-next,
.theme-business-white-no-links .nav-logo-next,
.theme-transparent-on-light .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray .nav-logo-next,
.theme-business-white-minimal .nav-logo-next,
.theme-business-white-no-links .nav-logo-next,
.theme-transparent-on-light .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-retina.svg?402e7509a501');
}
}
.theme-business-gray-dark .nav-logo,
.theme-transparent-on-dark .nav-logo,
.theme-design-teal .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-white.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray-dark .nav-logo,
.theme-transparent-on-dark .nav-logo,
.theme-design-teal .nav-logo {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-business-logo-retina-white.svg?402e7509a501');
}
}
.theme-business-gray-dark .nav-logo-core,
.theme-transparent-on-dark .nav-logo-core,
.theme-design-teal .nav-logo-core {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-logo-white.svg?402e7509a501');
width: 150px;
}
.theme-business-gray-dark .nav-logo-next,
.theme-transparent-on-dark .nav-logo-next,
.theme-design-teal .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-white.svg?402e7509a501');
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
.theme-business-gray-dark .nav-logo-next,
.theme-transparent-on-dark .nav-logo-next,
.theme-design-teal .nav-logo-next {
background-image: url('https://assets.prezicdn.net/assets-versioned/boxfishcontainerservice-versioned/650-45f3dc3276f2637cae27e22e8ff1625f55d453c0/common/img/logo/prezi-next-logo-retina-white.svg?402e7509a501');
}
}
.visible-hamburger-1060 {
display: none !important;
}
@media (max-width: 1060px) {
.visible-hamburger-1060 {
display: block !important;
}
}
@media (max-width: 1060px) {
.hidden-hamburger-1060 {
display: none !important;
}
}
.visible-hamburger-1024 {
display: none !important;
}
@media (max-width: 1024px) {
.visible-hamburger-1024 {
display: block !important;
}
}
@media (max-width: 1024px) {
.hidden-hamburger-1024 {
display: none !important;
}
}
body.overlay-open {
position: inherit;
}
body.overlay-open .theme-transparent-on-dark {
background-color: #152235;
}
body.overlay-open .theme-transparent-on-light {
background-color: #F3F5F9;
}
/* Video Header Navbar */
.video-purple-500 {
color: #FFFFFF;
border-color: #a409b8 !important;
background-color: #a409b8;
transition: 200ms all ease;
}
.video-purple-500:hover {
color: #FFFFFF;
border-color: #e628e1 !important;
background-color: #e628e1;
}
.video-purple-500:focus {
color: #FFFFFF;
}
.video-header {
/* Highlight */
}
.video-header .pe-auto {
pointer-events: auto;
}
.video-header .pe-none {
pointer-events: none;
}
.video-header ::-moz-selection {
color: #FFFFFF;
background: #fd6afa;
}
.video-header ::selection {
color: #FFFFFF;
background: #fd6afa;
}
.video-header .noselect {
-webkit-touch-callout: none;
/* iOS Safari */
-webkit-user-select: none;
/* Safari */
/* Konqueror HTML */
-moz-user-select: none;
/* Firefox */
-ms-user-select: none;
/* Internet Explorer/Edge */
user-select: none;
/* Non-prefixed version, currently supported by Chrome and Opera */
}
.video-header .shape-overflow {
overflow-x: hidden;
}
.video-header .shape-wrapper {
position: relative;
}
.video-header .navbar {
position: relative;
min-height: 48px;
margin-bottom: 0;
border: none;
border-radius: 0;
z-index: 1000;
background-color: #a409b8;
}
@media (min-width: 992px) {
.video-header .navbar {
border-radius: 0;
height: 72px;
}
}
@media (max-width: 991px) {
.video-header .navbar #header-raleway {
border-radius: 0;
height: 48px;
}
}
.video-header .navbar-video {
background-color: #62008f;
border-color: #62008f;
}
.video-header .navbar-brand {
height: auto;
line-height: normal;
padding: 12px 15px;
}
@media (min-width: 992px) {
.video-header .navbar-brand {
padding: 18px 15px;
}
}
@media (min-width: 1320px) {
.video-header .navbar-brand {
padding: 18px 30px;
}
}
.video-header .navbar-video .navbar-toggle {
cursor: pointer;
position: relative;
float: right;
color: #FFFFFF;
border-color: #a409b8;
background-color: #a409b8;
transition: 200ms all ease;
font-size: 12px;
line-height: 12px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
padding: 7px 12px;
border: 2px solid #a409b8;
border-radius: 15px;
margin: 9px 15px;
text-decoration: none;
}
@media (min-width: 992px) {
.video-header .navbar-video .navbar-toggle {
font-size: 14px;
line-height: 16px;
padding: 12px 24px;
border-radius: 30px;
}
}
.video-header .navbar-video .navbar-toggle:active {
color: #FFFFFF;
border-color: #a409b8;
background-color: #a409b8;
}
.video-header .navbar-video .navbar-toggle:hover {
color: #FFFFFF;
border-color: #e628e1;
background-color: #e628e1;
}
.video-header .navbar-video .navbar-close {
margin: 12px 15px;
}
.video-header .navbar-video .navbar-nav > li > a {
color: #FFFFFF;
transition: 200ms all ease;
}
.video-header .navbar-nav > li > a {
padding-top: 15px;
padding-bottom: 15px;
font-size: 16px;
line-height: 24px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
letter-spacing: 0.5px;
}
@media (min-width: 768px) {
.video-header .navbar-nav > li > a {
font-size: 13px;
line-height: 18px;
}
}
@media (min-width: 992px) {
.video-header .navbar-nav > li > a {
padding-top: 27px;
padding-bottom: 27px;
}
}
.video-header .navbar-video .navbar-nav > li > a:hover,
.video-header .navbar-video .navbar-nav > li > a:focus {
opacity: 0.6;
background-color: transparent;
}
.video-header .navbar-collapse .navbar-header {
background-color: #62008f;
}
.video-header .navbar-collapse .navbar-header .navbar-toggle {
background-color: transparent;
border: none;
padding: 0;
}
.video-header .navbar-collapse {
position: fixed;
top: 0px;
z-index: 100;
width: 100%;
background-color: rgba(98, 0, 143, 0.96);
padding-left: 0px;
padding-right: 0px;
text-align: center;
overflow-x: visible;
border-top: none;
box-shadow: none;
max-height: none;
-webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
.video-header .navbar-collapse {
padding-right: 15px;
padding-left: 15px;
position: relative;
width: 80%;
margin-left: auto;
height: auto;
background-color: transparent;
}
}
.video-header .vid-logo {
height: 24px;
width: auto;
}
@media (min-width: 992px) {
.video-header .vid-logo {
height: 36px;
width: auto;
}
}
.video-header .v-nav-cta {
font-size: 16px;
line-height: 16px;
text-align: center;
font-family: "RalewayBold", Helvetica, sans-serif;
padding: 10px 24px;
margin: 9px 15px;
border: 2px solid;
border-radius: 30px;
display: inline-flex;
justify-content: center;
align-items: center;
text-decoration: none;
}
@media (min-width: 768px) {
.video-header .v-nav-cta {
font-size: 12px;
line-height: 12px;
padding: 7px 12px;
margin-right: -15px;
border-radius: 15px;
}
}
@media (min-width: 992px) {
.video-header .v-nav-cta {
font-size: 14px;
line-height: 16px;
padding: 12px 24px;
margin: 14px -15px 14px 15px;
border-radius: 30px;
}
}
@media (min-width: 1320px) {
.video-header .v-nav-cta {
margin: 14px 0 14px 15px;
}
}
@media (max-width: 767px) {
.video-header .mobile-margin {
margin-top: 40px;
margin-bottom: 40px;
height: 100vh;
overflow: hidden;
}
}
.video-header .icon-white {
-webkit-filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(231deg) brightness(112%) contrast(101%);
filter: invert(100%) sepia(0%) saturate(7443%) hue-rotate(231deg) brightness(112%) contrast(101%);
}
.video-header .explore-page {
padding-left: 0;
}
.video-header .dropdown-items .link-element {
margin-top: 5px;
} | 0.314051 | 0.029704 |
.PolicyDataPage {width: 100%; background-image: url(../../../assets/images/preview-background.svg); background-position: center; background-repeat: no-repeat; background-size: contain;}
.PolicyDataPage > div.lineGray {width: 100%; margin: 50px 0; height: 110px; background-color: #F7F7F7; display: flex; align-items: center;}
.PolicyDataPage > div.lineGray > h2 {font-size: 21px; font-weight: 700; color: #747474;}
.PolicyDataPage > div.lineGray > h2:first-child {margin: 0 25% 0 5% ;}
.PolicyDataPage > form button {width: 11%; border: none; min-width: 121px; height: 45px; font-size: 18px; display: block; margin: 50px auto ;box-shadow: 3px 3px 16px #00000029; background-color: #85C63F; border-radius: 4px; color: white;}
.PolicyDataPage > form button:hover {background-color: #7CBA38;}
.PolicyDataPage > form button:focus {border: none;}
.PolicyDataPage div.form {width: 85%; margin: 100px 5% 0; display: flex; justify-content: center;}
.PolicyDataPage div.form label.content-input {position: relative; display: block;}
.PolicyDataPage div.form label.content-input input{appearance: none; outline: none; position: absolute; right: 0; -webkit-appearance: none; -moz-appearance: none; visibility: hidden;}
.PolicyDataPage div.form label.content-input input + i {background: transparent;position: absolute; border-radius: 1px; width: 20px; height: 20px; left: 0;top: 0; box-shadow: 0px 2px 2px #00000029; border: 1px solid #707070;}
.PolicyDataPage div.form label.content-input input[type=checkbox]:checked + i {border: 1px solid #039948;background: #7CBA38; background-image: url(../../../assets/icons/check.svg); background-position: center; height: 21px; width: 21px; background-size: 80%; background-repeat: no-repeat;}
.PolicyDataPage h3 {font-size: 30px; font-weight: 700; color: #7CBA38; margin-left: 5%;}
.PolicyDataPage h4 {font-size: 23px; cursor: pointer; font-weight: 700; color: #7CBA38; margin-left: 5%;}
.PolicyDataPage P.paragraph {font-size: 18px; color: #747474; margin: 35px 50px 15px 5%;}
.mg-top-55-i {margin-top:55px !important; }
.PolicyDataPage > form > div.form label.style-font {margin-top: -4px;}
.style-font {font-size: 25px; line-height: 30px; color: #747474; font-weight: 700; margin-left: 32px;}
.errorRequiredAuth { color: #FF0000; display: flex; justify-content: center; align-items: center;font-size: 20px; margin-top: 5px;}
@media only screen and (max-width:1200px)
{
.Box {height: initial !important;}
}
@media only screen and (max-width:474px)
{
.PolicyDataPage > div.lineGray > h2:first-child {margin: 0 11% 0 5% ;}
.PolicyDataPage div.form {width: 85%; margin: 50px 5% 0; display: block;}
} | src/app/containers/policy-treatment-data/policy-treatment-data.page.css | .PolicyDataPage {width: 100%; background-image: url(../../../assets/images/preview-background.svg); background-position: center; background-repeat: no-repeat; background-size: contain;}
.PolicyDataPage > div.lineGray {width: 100%; margin: 50px 0; height: 110px; background-color: #F7F7F7; display: flex; align-items: center;}
.PolicyDataPage > div.lineGray > h2 {font-size: 21px; font-weight: 700; color: #747474;}
.PolicyDataPage > div.lineGray > h2:first-child {margin: 0 25% 0 5% ;}
.PolicyDataPage > form button {width: 11%; border: none; min-width: 121px; height: 45px; font-size: 18px; display: block; margin: 50px auto ;box-shadow: 3px 3px 16px #00000029; background-color: #85C63F; border-radius: 4px; color: white;}
.PolicyDataPage > form button:hover {background-color: #7CBA38;}
.PolicyDataPage > form button:focus {border: none;}
.PolicyDataPage div.form {width: 85%; margin: 100px 5% 0; display: flex; justify-content: center;}
.PolicyDataPage div.form label.content-input {position: relative; display: block;}
.PolicyDataPage div.form label.content-input input{appearance: none; outline: none; position: absolute; right: 0; -webkit-appearance: none; -moz-appearance: none; visibility: hidden;}
.PolicyDataPage div.form label.content-input input + i {background: transparent;position: absolute; border-radius: 1px; width: 20px; height: 20px; left: 0;top: 0; box-shadow: 0px 2px 2px #00000029; border: 1px solid #707070;}
.PolicyDataPage div.form label.content-input input[type=checkbox]:checked + i {border: 1px solid #039948;background: #7CBA38; background-image: url(../../../assets/icons/check.svg); background-position: center; height: 21px; width: 21px; background-size: 80%; background-repeat: no-repeat;}
.PolicyDataPage h3 {font-size: 30px; font-weight: 700; color: #7CBA38; margin-left: 5%;}
.PolicyDataPage h4 {font-size: 23px; cursor: pointer; font-weight: 700; color: #7CBA38; margin-left: 5%;}
.PolicyDataPage P.paragraph {font-size: 18px; color: #747474; margin: 35px 50px 15px 5%;}
.mg-top-55-i {margin-top:55px !important; }
.PolicyDataPage > form > div.form label.style-font {margin-top: -4px;}
.style-font {font-size: 25px; line-height: 30px; color: #747474; font-weight: 700; margin-left: 32px;}
.errorRequiredAuth { color: #FF0000; display: flex; justify-content: center; align-items: center;font-size: 20px; margin-top: 5px;}
@media only screen and (max-width:1200px)
{
.Box {height: initial !important;}
}
@media only screen and (max-width:474px)
{
.PolicyDataPage > div.lineGray > h2:first-child {margin: 0 11% 0 5% ;}
.PolicyDataPage div.form {width: 85%; margin: 50px 5% 0; display: block;}
} | 0.374104 | 0.133641 |
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Regular.woff2") format('woff2'), url("../fonts/Ubuntu-Regular.woff") format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Medium.woff2") format('woff2'), url("../fonts/Ubuntu-Medium.woff") format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-MediumItalic.woff2") format('woff2'), url("../fonts/Ubuntu-MediumItalic.woff") format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Bold.woff2") format('woff2'), url("../fonts/Ubuntu-Bold.woff") format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-extralight.woff2") format('woff2'), url("../fonts/nunito-extralight.woff") format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-lightitalic.woff2") format('woff2'), url("../fonts/nunito-lightitalic.woff") format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-light.woff2") format('woff2'), url("../fonts/nunito-light.woff") format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-regular.woff2") format('woff2'), url("../fonts/nunito-regular.woff") format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-italic.woff2") format('woff2'), url("../fonts/nunito-italic.woff") format('woff');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-semibold.woff2") format('woff2'), url("../fonts/nunito-semibold.woff") format('woff');
font-weight: 600;
font-style: bold;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-bold.woff2") format('woff2'), url("../fonts/nunito-bold.woff") format('woff');
font-weight: 700;
font-style: bold;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-extrabold.woff2") format('woff2'), url("../fonts/nunito-extrabold.woff") format('woff');
font-weight: 800;
font-style: bold;
}
@font-face {
font-family: 'RussoOne';
src: url("../fonts/RussoOne-Regular.woff2") format('woff2'), url("../fonts/RussoOne-Regular.woff") format('woff');
font-weight: 500;
font-style: bold;
}
* {
box-sizing: border-box;
}
*:before,
*:after {
box-sizing: border-box;
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-size: 10px;
}
@media only screen and (min-width: 321px) {
html {
font-size: 6.5px;
}
}
@media only screen and (min-width: 481px) {
html {
font-size: 7px;
}
}
@media only screen and (min-width: 769px) {
html {
font-size: 8px;
}
}
@media only screen and (min-width: 992px) {
html {
font-size: 9px;
}
}
@media only screen and (min-width: 1200px) {
html {
font-size: 10px;
}
}
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;
outline: 0;
background: transparent;
vertical-align: baseline;
}
body {
font-family: 'Ubuntu', sans-serif;
font-size: 1.6rem;
font-weight: 400;
line-height: 1.2;
color: #fff5e4;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
background-color: #05192d;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
ul,
ol {
list-style: none;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
}
h1,
.h1 {
font-size: 3.2rem;
}
h2,
.h2 {
font-size: 2.5rem;
}
h3,
.h3 {
font-size: 1.9rem;
}
h4,
.h4 {
font-size: 1.6rem;
}
h5,
.h5 {
font-size: 1.4rem;
}
h6,
.h6 {
font-size: 1.2rem;
}
p {
margin-bottom: 1.6rem;
font-size: 1.6rem;
}
p:last-child {
margin-bottom: 0;
}
b,
strong {
color: #ffbf53;
}
a {
outline: none;
text-decoration: none;
color: #fff5e4;
transition: all 0.2s ease;
}
a:hover {
color: #fff5e4;
}
img {
max-width: 100%;
height: auto;
border: none;
}
button,
input,
select,
textarea {
margin: 0;
font: inherit;
color: inherit;
}
button,
input[type="reset"],
input[type="submit"] {
cursor: pointer;
}
button[disabled],
input[disabled] {
cursor: default;
}
textarea {
overflow: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*# sourceMappingURL=global-2.css.map */ | assets/css/global-2.css | @font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Regular.woff2") format('woff2'), url("../fonts/Ubuntu-Regular.woff") format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Medium.woff2") format('woff2'), url("../fonts/Ubuntu-Medium.woff") format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-MediumItalic.woff2") format('woff2'), url("../fonts/Ubuntu-MediumItalic.woff") format('woff');
font-weight: 500;
font-style: italic;
}
@font-face {
font-family: 'Ubuntu';
src: url("../fonts/Ubuntu-Bold.woff2") format('woff2'), url("../fonts/Ubuntu-Bold.woff") format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-extralight.woff2") format('woff2'), url("../fonts/nunito-extralight.woff") format('woff');
font-weight: 200;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-lightitalic.woff2") format('woff2'), url("../fonts/nunito-lightitalic.woff") format('woff');
font-weight: 300;
font-style: italic;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-light.woff2") format('woff2'), url("../fonts/nunito-light.woff") format('woff');
font-weight: 300;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-regular.woff2") format('woff2'), url("../fonts/nunito-regular.woff") format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-italic.woff2") format('woff2'), url("../fonts/nunito-italic.woff") format('woff');
font-weight: 400;
font-style: italic;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-semibold.woff2") format('woff2'), url("../fonts/nunito-semibold.woff") format('woff');
font-weight: 600;
font-style: bold;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-bold.woff2") format('woff2'), url("../fonts/nunito-bold.woff") format('woff');
font-weight: 700;
font-style: bold;
}
@font-face {
font-family: 'Nunito';
src: url("../fonts/nunito-extrabold.woff2") format('woff2'), url("../fonts/nunito-extrabold.woff") format('woff');
font-weight: 800;
font-style: bold;
}
@font-face {
font-family: 'RussoOne';
src: url("../fonts/RussoOne-Regular.woff2") format('woff2'), url("../fonts/RussoOne-Regular.woff") format('woff');
font-weight: 500;
font-style: bold;
}
* {
box-sizing: border-box;
}
*:before,
*:after {
box-sizing: border-box;
}
html {
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
font-size: 10px;
}
@media only screen and (min-width: 321px) {
html {
font-size: 6.5px;
}
}
@media only screen and (min-width: 481px) {
html {
font-size: 7px;
}
}
@media only screen and (min-width: 769px) {
html {
font-size: 8px;
}
}
@media only screen and (min-width: 992px) {
html {
font-size: 9px;
}
}
@media only screen and (min-width: 1200px) {
html {
font-size: 10px;
}
}
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;
outline: 0;
background: transparent;
vertical-align: baseline;
}
body {
font-family: 'Ubuntu', sans-serif;
font-size: 1.6rem;
font-weight: 400;
line-height: 1.2;
color: #fff5e4;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overflow-x: hidden;
background-color: #05192d;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block;
}
ul,
ol {
list-style: none;
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
font-family: 'Ubuntu', sans-serif;
font-weight: 700;
}
h1,
.h1 {
font-size: 3.2rem;
}
h2,
.h2 {
font-size: 2.5rem;
}
h3,
.h3 {
font-size: 1.9rem;
}
h4,
.h4 {
font-size: 1.6rem;
}
h5,
.h5 {
font-size: 1.4rem;
}
h6,
.h6 {
font-size: 1.2rem;
}
p {
margin-bottom: 1.6rem;
font-size: 1.6rem;
}
p:last-child {
margin-bottom: 0;
}
b,
strong {
color: #ffbf53;
}
a {
outline: none;
text-decoration: none;
color: #fff5e4;
transition: all 0.2s ease;
}
a:hover {
color: #fff5e4;
}
img {
max-width: 100%;
height: auto;
border: none;
}
button,
input,
select,
textarea {
margin: 0;
font: inherit;
color: inherit;
}
button,
input[type="reset"],
input[type="submit"] {
cursor: pointer;
}
button[disabled],
input[disabled] {
cursor: default;
}
textarea {
overflow: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*# sourceMappingURL=global-2.css.map */ | 0.283682 | 0.045991 |
.listslider-container {
overflow: hidden;
}
.listslider-arrow {
position: absolute;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s linear, visibility 0.5s linear, left 0.1s linear, right 0.1s linear, text-shadow 0.1s linear;
top: 0;
line-height: initial;
font-size: 20px;
min-width: 50px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
height: 100%;
display: flex;
align-items: center;
}
.listslider-arrow.active{
opacity: 1;
visibility: visible;
}
.listslider-arrow.listslider-right{
padding-right: 8px;
right: 0px;
justify-content: flex-end;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.listslider-arrow.listslider-left{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
left: 0px;
padding-left: 8px;
}
.listslider-arrow.listslider-right.active:hover span,
.listslider-arrow.listslider-left.active:hover span{
transition: all ease-in-out 100ms;
}
.listslider-arrow.listslider-right.active:hover span{
transform: translateX(5px);
text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.3);
}
.listslider-arrow.listslider-left.active:hover span{
transform: translateX(-5px);
text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.3);
}
.listslider-wrapper {
padding: .7rem 0;
margin: 0 auto;
}
.listslider{
}
ul.listslider{
white-space: nowrap;
clear: both;
padding-left: 0;
display: flex;
}
ul.listslider li {
list-style: none;
padding: 0 3px;
}
ul.listslider li a {
display: block;
padding: 1px 12px;
border: 1px solid #cfcfd0;
border-radius: 22px;
color: #484848;
background-color: white;
font-size: .85rem;
font-weight: 500;
}
.list-slider {
border-top: 1px solid rgb(234, 234, 234);
border-bottom: 1px solid rgb(210, 210, 210);
}
ul.listslider li a:hover {
background-color: #fffffff2;
border-color: #4d5bed;
color: #4d5bed;
}
.listslider-arrow:hover {
color: #4d5bed;
} | app/assets/css/vendor/jquery-listslider.css | .listslider-container {
overflow: hidden;
}
.listslider-arrow {
position: absolute;
cursor: pointer;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s linear, visibility 0.5s linear, left 0.1s linear, right 0.1s linear, text-shadow 0.1s linear;
top: 0;
line-height: initial;
font-size: 20px;
min-width: 50px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
height: 100%;
display: flex;
align-items: center;
}
.listslider-arrow.active{
opacity: 1;
visibility: visible;
}
.listslider-arrow.listslider-right{
padding-right: 8px;
right: 0px;
justify-content: flex-end;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}
.listslider-arrow.listslider-left{
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,0+100 */
background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* IE10+ */
background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
left: 0px;
padding-left: 8px;
}
.listslider-arrow.listslider-right.active:hover span,
.listslider-arrow.listslider-left.active:hover span{
transition: all ease-in-out 100ms;
}
.listslider-arrow.listslider-right.active:hover span{
transform: translateX(5px);
text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.3);
}
.listslider-arrow.listslider-left.active:hover span{
transform: translateX(-5px);
text-shadow: 0px 0px 11px rgba(0, 0, 0, 0.3);
}
.listslider-wrapper {
padding: .7rem 0;
margin: 0 auto;
}
.listslider{
}
ul.listslider{
white-space: nowrap;
clear: both;
padding-left: 0;
display: flex;
}
ul.listslider li {
list-style: none;
padding: 0 3px;
}
ul.listslider li a {
display: block;
padding: 1px 12px;
border: 1px solid #cfcfd0;
border-radius: 22px;
color: #484848;
background-color: white;
font-size: .85rem;
font-weight: 500;
}
.list-slider {
border-top: 1px solid rgb(234, 234, 234);
border-bottom: 1px solid rgb(210, 210, 210);
}
ul.listslider li a:hover {
background-color: #fffffff2;
border-color: #4d5bed;
color: #4d5bed;
}
.listslider-arrow:hover {
color: #4d5bed;
} | 0.435421 | 0.10004 |
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;
}
body {
/* width: 1300px;
height: 2880px; */
}
*, *::before {
box-sizing: border-box;
}
div.wrapper {
width: 940px;
margin: 0 auto;
}
container {}
header.header {
height: 120px;
background-color: #515151;
}
.logo {
position: relative;
top: 46px;
left: 180px;
z-index: 10;
}
h1 ::before {
position: absolute;
left: 11px;
}
nav.menu
/* nav.menu {
width: 498px;
height: 12px;
font-size: 16px;
font-weight: bold;
line-height: 1.12;
letter-spacing: 1.6px;
text-align: left;
color: #ffffff;
} */
/* .menu > li {
top: 55px;
left: 622px;
} */
div.slider1 {
width: 1300px;
height: 408px;
background-color: #b5b5b5;
}
article {
width: 1300px;
height: 2880px;
}
div.slider2 {
width: 940px;
height: 408px;
background-color: #959595;
}
div.inquire button {
width: 300px;
height: 72px;
border-radius: 4px;
background-color: #4d4b4a;
}
input.yourname {
width: 460px;
height: 48px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
padding: 2328px 0 0 180px;
}
input.youremail {
width: 460px;
height: 48px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
padding: 2328px 0 0 660px;
}
input.yourmessage {
width: 940px;
height: 240px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
}
div.map {
width: 1300px;
height: 360px;
background-color: #f8d2c5;
}
footer {
width: 1300px;
height: 72px;
background-color: #f1f1f1;
} | january/2 week/0120-0121/0120/0120.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;
}
body {
/* width: 1300px;
height: 2880px; */
}
*, *::before {
box-sizing: border-box;
}
div.wrapper {
width: 940px;
margin: 0 auto;
}
container {}
header.header {
height: 120px;
background-color: #515151;
}
.logo {
position: relative;
top: 46px;
left: 180px;
z-index: 10;
}
h1 ::before {
position: absolute;
left: 11px;
}
nav.menu
/* nav.menu {
width: 498px;
height: 12px;
font-size: 16px;
font-weight: bold;
line-height: 1.12;
letter-spacing: 1.6px;
text-align: left;
color: #ffffff;
} */
/* .menu > li {
top: 55px;
left: 622px;
} */
div.slider1 {
width: 1300px;
height: 408px;
background-color: #b5b5b5;
}
article {
width: 1300px;
height: 2880px;
}
div.slider2 {
width: 940px;
height: 408px;
background-color: #959595;
}
div.inquire button {
width: 300px;
height: 72px;
border-radius: 4px;
background-color: #4d4b4a;
}
input.yourname {
width: 460px;
height: 48px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
padding: 2328px 0 0 180px;
}
input.youremail {
width: 460px;
height: 48px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
padding: 2328px 0 0 660px;
}
input.yourmessage {
width: 940px;
height: 240px;
border-radius: 4px;
background-color: #ffffff;
border: solid 1px #dadee8;
}
div.map {
width: 1300px;
height: 360px;
background-color: #f8d2c5;
}
footer {
width: 1300px;
height: 72px;
background-color: #f1f1f1;
} | 0.410047 | 0.114666 |
@media screen and (max-width: 350px) {
img.responsive-image.preview-box
{
width: 85%;
margin-left: -30px;
}
.all-order-card {
margin-top: -45px !important;
}
}
.tab-content {
display: block !important;
}
.list-group .active {
background: #FF4D03 !important;
}
.caption {
text-align: center;
}
.product {
height: 100%;
border: 1px solid #ddd;
margin-bottom: 20px;
}
.product-content {
margin-top: 7px;
}
.single-product.mt-2 {
margin-top: 20px;
}
span.outstcok {
background: yellow;
color: #000;
}
.product-side-category {
margin-left: 8px;
margin-top: 7px;
}
.toasted.toasted-primary.success {
width: 400px;
height: 55px;
font-size: 18px;
}
.toasted.toasted-primary.error {
width: 400px;
height: 55px;
font-size: 18px;
font-weight: bolder;
}
.image img {
max-width: 200px;
max-height: 200px;
}
table img.img-thumbnail {
width: 50px;
height: 50px;
}
.product-content .product-thumb {
border: 2px solid #DDD !important;
margin-bottom: 12px;
}
.quantityUpdat {
font-size: 20px;
cursor: pointer;
}
.cart-empy {
text-align: center;
padding: 0;
margin: 0;
border: 1px solid #eeeeee;
}
.cart-empy p {
margin-top: 0px;
font-size: 20px;
}
.cart-empy img {
margin-bottom: 0px;
margin-top: 0;
}
.custom-box {
width: 100%;
height: auto;
background: #fff;
padding: 25px 40px;
margin: auto;
border-radius: 10px;
box-shadow: 3px 3px 3px #ddd;
}
.custom-box .title {
text-align: center;
text-transform: uppercase;
border-bottom: 2px solid #FF4D03;
}
.is-invalid {
border: 1px solid red;
}
.invalid-feedback {
color: red;
}
.cart-total {
background: #fff;
width: 100%;
padding: 5px;
font-size: 20px;
}
span.badge-danger {
background: red;
}
span.badge-success {
background: #FF4D03;
}
span.badge-warning {
background: #f39c12;
color: #000 !important;
}
span.badge-primary {
background: #3c8dbc;
}
.related_products .sub-title {
text-align: center;
border-bottom: 2px solid #ddd;
margin-bottom: 45px;
}
.search-content {
position: absolute;
z-index: 1000;
top: 55%;
width: 520px;
max-height: 300px;
overflow-y: scroll;
}
.search-content li:hover {
background: #FF4D03;
color: #fff;
}
.search-content li .search-router-link:hover {
color: #fff;
}
.search-content li .search-router-link {
color: #000;
}
@media only screen and (max-width: 600px) {
.search-content {
text-align: left;
}
}
.product-image-viewe {
width: 85% ;
margin-bottom: 60px !important;
}
img.responsive-image.preview-box {
width: 85%;
margin-bottom: 25px !important;
}
/* starte the custome nav css*/
header.main-menu {
position: relative;
left: 0;
top: 0;
}
nav.menu {
display: flex;
width: 100%;
}
ul.nav-list {
display: flex;
width: 100%;
height: 40px;
width: 100%;
background-color: #FF4D03;
}
ul.nav-list li {
line-height: 2.5rem;
position: relative;
text-align: center;
top: 9px;
left: 9rem;
}
ul.nav-list li .nav-item {
color: #fff;
padding: 0 12px;
}
.menu-icons {
color: #FF4D03;
font-size: 4rem;
position: absolute;
top: -40px;
z-index: 1500;
right: 2rem;
transform: translateY(50%);
display: none;
}
.sub-menu {
background-color: #fff;
color: #fff;
top: 29px;
left: 12px;
width: 170px;
z-index: 100000000;
position: absolute;
border-top: 3px solid #FF4D03;
font-size: 12px;
text-align: left;
display: none;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.sub-menu .sub-menu {
top: 0px;
left: 162px;
border-top: none;
border-top: 2px solid #FF4D03
}
.sub-menu::before {
content: "";
position: absolute;
top: -16px;
left: 0;
border: 7px solid transparent;
border-bottom-color: #fff;
}
.sub-menu .sub-menu::before {
top: -4px;
left: -14px;
border: 7px solid transparent;
border-right-color: #fff;
}
.nav-list li:hover>.sub-menu {
display: block;
}
ul.sub-menu li {
text-align: left;
padding: 5px 0 0;
border-bottom: 1px solid #ddd;
background: #fff;
margin-left: 5px;
left: 0px;
}
.nav-router {
color: #000;
}
/* responsive menu */
@media only screen and (max-width: 850px) {
.nav-list {
width: 100% !important;
height: 100vh !important;
width: 100% !important;
background-color: #FF4D03 !important;
flex-direction: column !important;
display: none !important;
}
.nav-list li {
font-size: 16px;
left: 0px !important;
border-bottom: 1px solid #fff;
color: #000000;
}
.nav-list li .nav-router {
text-align: left !important;
color: #000000;
}
.nav-list li:hover>.sub-menu {
display: none;
}
.menu-icons {
display: block;
top: -203px;
}
body {
overflow-x: hidden;
}
}
.product-header {
position: relative;
padding: 0px;
margin: 0px 0px 20px 0px;
line-height: normal;
font-size: 20px;
color: #000000;
border-bottom: 2px solid #ddd;
padding-bottom: 3px;
}
nav#top li a {
color: #fff !important;
}
#header .htop {
background-color: #FF4D03;
}
.left-top {
background-color: #FF4D03!important;
}
#header .button-search {
width: 69px !important;
color: #fff;
background: #FF4D03;
}
/*
start left sideb bar css */
ul.side-nav {
width: 267px;
height: 450px;
list-style: none;
background: #c2eaaa;
box-shadow: 3px 4px 7px 1px #ddd;
border-radius: 4px
}
ul.side-nav li {
line-height: 4rem;
border-bottom: 1px solid #f6f6f6;
position: relative;
left: -23px;
vertical-align: middle;
cursor: pointer;
transition: 3ms;
}
ul.side-nav .nav-main-item {
color: #000;
font-size: 14px;
margin-left: 14px;
transition: 3ms;
}
.side-nav li:hover {
background-color: #fff;
}
.nav-main-item:hover {
color: #FF4D03;
}
ul.left-sub-menu {
position: fixed;
box-shadow: 3px 4px 7px 1px #ddd;
background: #c2eaaa;
width: 195px;
z-index: 100;
list-style: none;
top: 120px;
max-height: 420px;
display: none;
left: 350px;
overflow-y: scroll;
overflow-x: hidden;
height: 420px;
}
ul.left-sub-menu .last-sider-bar {
border: 1px solid #ddd;
border-left: none;
border-top: none;
left: 52rem;
position: fixed;
background: #c2eaaa;
list-style: none;
top: 130px;
max-height: 420px;
display: none;
overflow-y: scroll;
overflow-x: hidden;
height: 420px;
width: 195px;
}
ul.left-sub-menu .last-sider-bar li {
border: none;
left: -15px;
}
ul.side-nav li:hover>.left-sub-menu {
display: block;
}
.left-sub-menu li:hover>.last-sider-bar {
display: block;
}
.show-sub {
display: none;
float: right;
margin-top: 17px
}
/* start responsieve side menu css */
@media only screen and (min-width: 950px) {
.width-20 {
width: 20% !important;
}
}
@media only screen and (max-width: 950px) {
ul.side-nav {
left: 0;
width: 100%;
position: absolute;
z-index: 100;
display: none;
top: -200px;
}
ul.left-sub-menu {
display: none;
left: 0;
width: 100%;
position: absolute;
left: 7px;
top: 44px;
border: 1px solid #eee;
}
.left-top {
display: none !important;
}
#header #logo a img {
display: inline-block;
position: absolute;
top: -84px;
left: 8rem;
background: #fff;
padding: 0px;
height: 53px;
}
#header #top-links>ul>li>a {
padding: 10px 10px;
}
i.fa-align-justify {
font-size: 35px;
position: absolute;
left: 28px;
top: 12px;
color: #fff;
}
.show-sub {
display: block;
}
ul.side-nav li:hover>.left-sub-menu {
display: none;
position: absolute;
}
.left-sub-menu li:hover>.last-sider-bar {
display: none;
}
.chat-icon {
left: 80% !important;
border: none !important;
}
.user-content{
display: flex;
}
.user-side-bar{
display: flex;
flex-direction: column;
width: 200px;
}
.d-sm-none{
display: none;
}
.prodict-card-body img {
width: 150px !important;
height: 150px !important;
padding: 18px 20px !important;
}
}
.menu-show {
display: block;
}
.category_icon_image {
max-width: 20px;
max-height: 20px;
}
.pull-right {
background: #FF4D03 !important;
}
.chat-icon {
float: right !important;
position: fixed;
text-align: right;
left: 93%;
z-index: 10000;
top: 283px;
vertical-align: middle;
width: 75px;
height: 120px;
text-align: center;
background: transparent;
padding: 30px 0px;
border: 2px solid #FF4D03
}
.product_carousel.flash_sale h3 {
font-weight: bold;
text-transform: uppercase;
color: #FF4D03;
}
.flash_sale{
border: 5px solid #000;
margin-bottom: 40px;
margin-top: 40px;
text-align: center;
padding: 0px;
box-shadow: 3px 3px 6px #ddd;
background-color: #fff;
}
.wrapper-wide{
background-color: #F7F8FA;
}
.container{
padding-left: 0;
padding-right: 0;
}
.product-card {
width: 100%;
height: 290px;
background: #fff;
border: 1px solid #ddd;
text-align: center;
margin-bottom: 10px;
box-shadow: 3px 3px 3px #ddd;
}
.product-card:hover>.product-card-footer{
display: block;
margin-top: -45px;
animation: fly 1s ease 1;
}
@keyframes fly {
0% {
transform: translateY(0%);
}
50% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}
.prodict-card-body img {
padding: 10px;
width: 200px;
height: 200px;
transition: .3s;
}
.prodict-card-body img:hover {
transform: scale(1.5);
}
.product-detail h4 {
font-size: 12px;
padding: 5px;
}
.product-card-footer {
display: none;
background: #ff4d03;
padding: 5px;
transition: .5s;
}
.detls_prodcut{
color:#fff ;
background:transparent;
}
.best-selling .product-card {
width: 220px;
}
.poster img{
max-width: 165px;
max-height: 165px;
border: 1px solid #eee;
border-radius: 5px;
}
.product-link{
color: #000;
transition: .3s;
}
.product-link:hover {
color: #ff4d03;
}
.category-heading{
display: inline;
}
.category-heading {
display: inline;
}
.s-category{
display: inline;
float: right;
}
.sub-category-name:hover {
color: #FF4D03;
}
.c-v-all {
background: #000;
color: #fff;
padding: 5px 18px;
width: 22px;
height: 38px;
display: inline;
border-radius: 4px;
transition: .5s;
}
.c-v-all:hover {
border-radius:0px;
color: #fff;
background: #FF4D03;
}
.c-product {
margin-top: 10px;
}
.c-product-header {
margin-bottom: 8px;
padding: 6px 0px;
border-bottom: 1px solid #ddd;
}
.single-product-box {
background: #fff;
padding: 15px 25px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 5px;
height: auto;
}
.product-description{
background: #fff;
padding: 15px 25px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 5px;
height: auto;
margin-top: 20px;
}
.realted-producs{
margin-top: 20px;
}
.realted-producs h3{
margin-left: 15px;
}
.bg-white{
background: #fff;
}
.shadow{
box-shadow: 3px 3px 3px #ddd;
}
.c-box{
padding: 20px 25px;
}
.cart-dropdown {
position: absolute;
width: 350px;
right: 0;
height: 400px;
z-index: 999;
}
.cart {
position: fixed;
z-index: 999999999999999999;
right: 0;
background: #fff;
bottom: 0;
height: 100%;
width: 0px;
transition:.5s;
}
.colapse-cart{
width: 400px;
}
.cart-header {
padding: 15px 15px;
background: #000;
text-transform: uppercase;
font-weight: bold;
color: #FF4D03;
}
.cart-body {
padding: 15px 15px;
max-height: 500px;
overflow-y: scroll;
overflow-x: hidden;
}
.placebtn{
text-transform: uppercase;
color: #FF4D03;
font-size: 18px;
}
.placebtn:hover{
color: #FF4D03;
}
.cart-footer{
position:absolute;
left: 0;
bottom: 0;
width: 100%;
background-color: #000000;
}
.cart-fiiter{
padding: 15px 15px ;
}
#exitcart {
cursor: pointer;
}
.cart-open {
position: fixed;
right: 0;
z-index: 999;
top: 50%;
width: 80px;
background: #FF4D03;
text-align: center;
height: 120px;
cursor: pointer;
}
.cart-open i {
font-size: 25px;
}
.cart-item-total {
color: #fff;
}
.user-side-bar {
padding: 10px 10px;
margin-bottom: 30px;
}
.profile.clearfix {
text-align: center;
}
.order-histrory {
padding: 10px 20px;
margin-left: 25px;
}
.overlaw-offer {
opacity: 0;
position: absolute;
top: 49%;
left: 49%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
background: #FF4D03;
transition: .5s;
width: 165px;
height: 165px;
}
.overlaw-offer:hover{
width: 100px;
opacity: .7;
}
.overlaw-offer-height:hover{
height: 80px;
width: 165px;
}
.sub-category-name {
border-bottom: 1px solid #ff4d03;
margin-right: 8px;
background: #fff;
padding: 5px 4px;
font-size: 13px;
font-weight: bold;
}
.product-details-tabe {
background: #fff;
margin-top: 25px;
padding: px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 10px;
}
ul.details-tab-menu-list {
width: 100%;
display: flex;
text-transform: uppercase;
background: #ddd;
border-radius: 2px;
}
.details-tab-menu-item {
padding: 10px;
color: #000;
font-weight: bolder;
cursor: pointer;
}
.tab-menu-item-active {
border-bottom: 4px solid #ff4d03;
}
.product-tab-content {
padding: 15px 15px;
min-height: 250px;
}
.product-details{
display: none;
}
.how-to-buy{
display: none;
}
.block{
display: block;
}
li.h-b-li {
list-style-type: square;
padding: 2px;
}
.product-thumb .image:hover {
transform: scaleX(-1);
}
.poster .row{
background: #fff;
padding: 12px 12px;
box-shadow: 0 0 10px 5px #ddd;
border-radius: 10px
} | public/frontend/css/customize-1.css | @media screen and (max-width: 350px) {
img.responsive-image.preview-box
{
width: 85%;
margin-left: -30px;
}
.all-order-card {
margin-top: -45px !important;
}
}
.tab-content {
display: block !important;
}
.list-group .active {
background: #FF4D03 !important;
}
.caption {
text-align: center;
}
.product {
height: 100%;
border: 1px solid #ddd;
margin-bottom: 20px;
}
.product-content {
margin-top: 7px;
}
.single-product.mt-2 {
margin-top: 20px;
}
span.outstcok {
background: yellow;
color: #000;
}
.product-side-category {
margin-left: 8px;
margin-top: 7px;
}
.toasted.toasted-primary.success {
width: 400px;
height: 55px;
font-size: 18px;
}
.toasted.toasted-primary.error {
width: 400px;
height: 55px;
font-size: 18px;
font-weight: bolder;
}
.image img {
max-width: 200px;
max-height: 200px;
}
table img.img-thumbnail {
width: 50px;
height: 50px;
}
.product-content .product-thumb {
border: 2px solid #DDD !important;
margin-bottom: 12px;
}
.quantityUpdat {
font-size: 20px;
cursor: pointer;
}
.cart-empy {
text-align: center;
padding: 0;
margin: 0;
border: 1px solid #eeeeee;
}
.cart-empy p {
margin-top: 0px;
font-size: 20px;
}
.cart-empy img {
margin-bottom: 0px;
margin-top: 0;
}
.custom-box {
width: 100%;
height: auto;
background: #fff;
padding: 25px 40px;
margin: auto;
border-radius: 10px;
box-shadow: 3px 3px 3px #ddd;
}
.custom-box .title {
text-align: center;
text-transform: uppercase;
border-bottom: 2px solid #FF4D03;
}
.is-invalid {
border: 1px solid red;
}
.invalid-feedback {
color: red;
}
.cart-total {
background: #fff;
width: 100%;
padding: 5px;
font-size: 20px;
}
span.badge-danger {
background: red;
}
span.badge-success {
background: #FF4D03;
}
span.badge-warning {
background: #f39c12;
color: #000 !important;
}
span.badge-primary {
background: #3c8dbc;
}
.related_products .sub-title {
text-align: center;
border-bottom: 2px solid #ddd;
margin-bottom: 45px;
}
.search-content {
position: absolute;
z-index: 1000;
top: 55%;
width: 520px;
max-height: 300px;
overflow-y: scroll;
}
.search-content li:hover {
background: #FF4D03;
color: #fff;
}
.search-content li .search-router-link:hover {
color: #fff;
}
.search-content li .search-router-link {
color: #000;
}
@media only screen and (max-width: 600px) {
.search-content {
text-align: left;
}
}
.product-image-viewe {
width: 85% ;
margin-bottom: 60px !important;
}
img.responsive-image.preview-box {
width: 85%;
margin-bottom: 25px !important;
}
/* starte the custome nav css*/
header.main-menu {
position: relative;
left: 0;
top: 0;
}
nav.menu {
display: flex;
width: 100%;
}
ul.nav-list {
display: flex;
width: 100%;
height: 40px;
width: 100%;
background-color: #FF4D03;
}
ul.nav-list li {
line-height: 2.5rem;
position: relative;
text-align: center;
top: 9px;
left: 9rem;
}
ul.nav-list li .nav-item {
color: #fff;
padding: 0 12px;
}
.menu-icons {
color: #FF4D03;
font-size: 4rem;
position: absolute;
top: -40px;
z-index: 1500;
right: 2rem;
transform: translateY(50%);
display: none;
}
.sub-menu {
background-color: #fff;
color: #fff;
top: 29px;
left: 12px;
width: 170px;
z-index: 100000000;
position: absolute;
border-top: 3px solid #FF4D03;
font-size: 12px;
text-align: left;
display: none;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.sub-menu .sub-menu {
top: 0px;
left: 162px;
border-top: none;
border-top: 2px solid #FF4D03
}
.sub-menu::before {
content: "";
position: absolute;
top: -16px;
left: 0;
border: 7px solid transparent;
border-bottom-color: #fff;
}
.sub-menu .sub-menu::before {
top: -4px;
left: -14px;
border: 7px solid transparent;
border-right-color: #fff;
}
.nav-list li:hover>.sub-menu {
display: block;
}
ul.sub-menu li {
text-align: left;
padding: 5px 0 0;
border-bottom: 1px solid #ddd;
background: #fff;
margin-left: 5px;
left: 0px;
}
.nav-router {
color: #000;
}
/* responsive menu */
@media only screen and (max-width: 850px) {
.nav-list {
width: 100% !important;
height: 100vh !important;
width: 100% !important;
background-color: #FF4D03 !important;
flex-direction: column !important;
display: none !important;
}
.nav-list li {
font-size: 16px;
left: 0px !important;
border-bottom: 1px solid #fff;
color: #000000;
}
.nav-list li .nav-router {
text-align: left !important;
color: #000000;
}
.nav-list li:hover>.sub-menu {
display: none;
}
.menu-icons {
display: block;
top: -203px;
}
body {
overflow-x: hidden;
}
}
.product-header {
position: relative;
padding: 0px;
margin: 0px 0px 20px 0px;
line-height: normal;
font-size: 20px;
color: #000000;
border-bottom: 2px solid #ddd;
padding-bottom: 3px;
}
nav#top li a {
color: #fff !important;
}
#header .htop {
background-color: #FF4D03;
}
.left-top {
background-color: #FF4D03!important;
}
#header .button-search {
width: 69px !important;
color: #fff;
background: #FF4D03;
}
/*
start left sideb bar css */
ul.side-nav {
width: 267px;
height: 450px;
list-style: none;
background: #c2eaaa;
box-shadow: 3px 4px 7px 1px #ddd;
border-radius: 4px
}
ul.side-nav li {
line-height: 4rem;
border-bottom: 1px solid #f6f6f6;
position: relative;
left: -23px;
vertical-align: middle;
cursor: pointer;
transition: 3ms;
}
ul.side-nav .nav-main-item {
color: #000;
font-size: 14px;
margin-left: 14px;
transition: 3ms;
}
.side-nav li:hover {
background-color: #fff;
}
.nav-main-item:hover {
color: #FF4D03;
}
ul.left-sub-menu {
position: fixed;
box-shadow: 3px 4px 7px 1px #ddd;
background: #c2eaaa;
width: 195px;
z-index: 100;
list-style: none;
top: 120px;
max-height: 420px;
display: none;
left: 350px;
overflow-y: scroll;
overflow-x: hidden;
height: 420px;
}
ul.left-sub-menu .last-sider-bar {
border: 1px solid #ddd;
border-left: none;
border-top: none;
left: 52rem;
position: fixed;
background: #c2eaaa;
list-style: none;
top: 130px;
max-height: 420px;
display: none;
overflow-y: scroll;
overflow-x: hidden;
height: 420px;
width: 195px;
}
ul.left-sub-menu .last-sider-bar li {
border: none;
left: -15px;
}
ul.side-nav li:hover>.left-sub-menu {
display: block;
}
.left-sub-menu li:hover>.last-sider-bar {
display: block;
}
.show-sub {
display: none;
float: right;
margin-top: 17px
}
/* start responsieve side menu css */
@media only screen and (min-width: 950px) {
.width-20 {
width: 20% !important;
}
}
@media only screen and (max-width: 950px) {
ul.side-nav {
left: 0;
width: 100%;
position: absolute;
z-index: 100;
display: none;
top: -200px;
}
ul.left-sub-menu {
display: none;
left: 0;
width: 100%;
position: absolute;
left: 7px;
top: 44px;
border: 1px solid #eee;
}
.left-top {
display: none !important;
}
#header #logo a img {
display: inline-block;
position: absolute;
top: -84px;
left: 8rem;
background: #fff;
padding: 0px;
height: 53px;
}
#header #top-links>ul>li>a {
padding: 10px 10px;
}
i.fa-align-justify {
font-size: 35px;
position: absolute;
left: 28px;
top: 12px;
color: #fff;
}
.show-sub {
display: block;
}
ul.side-nav li:hover>.left-sub-menu {
display: none;
position: absolute;
}
.left-sub-menu li:hover>.last-sider-bar {
display: none;
}
.chat-icon {
left: 80% !important;
border: none !important;
}
.user-content{
display: flex;
}
.user-side-bar{
display: flex;
flex-direction: column;
width: 200px;
}
.d-sm-none{
display: none;
}
.prodict-card-body img {
width: 150px !important;
height: 150px !important;
padding: 18px 20px !important;
}
}
.menu-show {
display: block;
}
.category_icon_image {
max-width: 20px;
max-height: 20px;
}
.pull-right {
background: #FF4D03 !important;
}
.chat-icon {
float: right !important;
position: fixed;
text-align: right;
left: 93%;
z-index: 10000;
top: 283px;
vertical-align: middle;
width: 75px;
height: 120px;
text-align: center;
background: transparent;
padding: 30px 0px;
border: 2px solid #FF4D03
}
.product_carousel.flash_sale h3 {
font-weight: bold;
text-transform: uppercase;
color: #FF4D03;
}
.flash_sale{
border: 5px solid #000;
margin-bottom: 40px;
margin-top: 40px;
text-align: center;
padding: 0px;
box-shadow: 3px 3px 6px #ddd;
background-color: #fff;
}
.wrapper-wide{
background-color: #F7F8FA;
}
.container{
padding-left: 0;
padding-right: 0;
}
.product-card {
width: 100%;
height: 290px;
background: #fff;
border: 1px solid #ddd;
text-align: center;
margin-bottom: 10px;
box-shadow: 3px 3px 3px #ddd;
}
.product-card:hover>.product-card-footer{
display: block;
margin-top: -45px;
animation: fly 1s ease 1;
}
@keyframes fly {
0% {
transform: translateY(0%);
}
50% {
transform: translateY(100%);
}
100% {
transform: translateY(0);
}
}
.prodict-card-body img {
padding: 10px;
width: 200px;
height: 200px;
transition: .3s;
}
.prodict-card-body img:hover {
transform: scale(1.5);
}
.product-detail h4 {
font-size: 12px;
padding: 5px;
}
.product-card-footer {
display: none;
background: #ff4d03;
padding: 5px;
transition: .5s;
}
.detls_prodcut{
color:#fff ;
background:transparent;
}
.best-selling .product-card {
width: 220px;
}
.poster img{
max-width: 165px;
max-height: 165px;
border: 1px solid #eee;
border-radius: 5px;
}
.product-link{
color: #000;
transition: .3s;
}
.product-link:hover {
color: #ff4d03;
}
.category-heading{
display: inline;
}
.category-heading {
display: inline;
}
.s-category{
display: inline;
float: right;
}
.sub-category-name:hover {
color: #FF4D03;
}
.c-v-all {
background: #000;
color: #fff;
padding: 5px 18px;
width: 22px;
height: 38px;
display: inline;
border-radius: 4px;
transition: .5s;
}
.c-v-all:hover {
border-radius:0px;
color: #fff;
background: #FF4D03;
}
.c-product {
margin-top: 10px;
}
.c-product-header {
margin-bottom: 8px;
padding: 6px 0px;
border-bottom: 1px solid #ddd;
}
.single-product-box {
background: #fff;
padding: 15px 25px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 5px;
height: auto;
}
.product-description{
background: #fff;
padding: 15px 25px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 5px;
height: auto;
margin-top: 20px;
}
.realted-producs{
margin-top: 20px;
}
.realted-producs h3{
margin-left: 15px;
}
.bg-white{
background: #fff;
}
.shadow{
box-shadow: 3px 3px 3px #ddd;
}
.c-box{
padding: 20px 25px;
}
.cart-dropdown {
position: absolute;
width: 350px;
right: 0;
height: 400px;
z-index: 999;
}
.cart {
position: fixed;
z-index: 999999999999999999;
right: 0;
background: #fff;
bottom: 0;
height: 100%;
width: 0px;
transition:.5s;
}
.colapse-cart{
width: 400px;
}
.cart-header {
padding: 15px 15px;
background: #000;
text-transform: uppercase;
font-weight: bold;
color: #FF4D03;
}
.cart-body {
padding: 15px 15px;
max-height: 500px;
overflow-y: scroll;
overflow-x: hidden;
}
.placebtn{
text-transform: uppercase;
color: #FF4D03;
font-size: 18px;
}
.placebtn:hover{
color: #FF4D03;
}
.cart-footer{
position:absolute;
left: 0;
bottom: 0;
width: 100%;
background-color: #000000;
}
.cart-fiiter{
padding: 15px 15px ;
}
#exitcart {
cursor: pointer;
}
.cart-open {
position: fixed;
right: 0;
z-index: 999;
top: 50%;
width: 80px;
background: #FF4D03;
text-align: center;
height: 120px;
cursor: pointer;
}
.cart-open i {
font-size: 25px;
}
.cart-item-total {
color: #fff;
}
.user-side-bar {
padding: 10px 10px;
margin-bottom: 30px;
}
.profile.clearfix {
text-align: center;
}
.order-histrory {
padding: 10px 20px;
margin-left: 25px;
}
.overlaw-offer {
opacity: 0;
position: absolute;
top: 49%;
left: 49%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
text-align: center;
background: #FF4D03;
transition: .5s;
width: 165px;
height: 165px;
}
.overlaw-offer:hover{
width: 100px;
opacity: .7;
}
.overlaw-offer-height:hover{
height: 80px;
width: 165px;
}
.sub-category-name {
border-bottom: 1px solid #ff4d03;
margin-right: 8px;
background: #fff;
padding: 5px 4px;
font-size: 13px;
font-weight: bold;
}
.product-details-tabe {
background: #fff;
margin-top: 25px;
padding: px;
box-shadow: 3px 3px 3px #ddd;
border-radius: 10px;
}
ul.details-tab-menu-list {
width: 100%;
display: flex;
text-transform: uppercase;
background: #ddd;
border-radius: 2px;
}
.details-tab-menu-item {
padding: 10px;
color: #000;
font-weight: bolder;
cursor: pointer;
}
.tab-menu-item-active {
border-bottom: 4px solid #ff4d03;
}
.product-tab-content {
padding: 15px 15px;
min-height: 250px;
}
.product-details{
display: none;
}
.how-to-buy{
display: none;
}
.block{
display: block;
}
li.h-b-li {
list-style-type: square;
padding: 2px;
}
.product-thumb .image:hover {
transform: scaleX(-1);
}
.poster .row{
background: #fff;
padding: 12px 12px;
box-shadow: 0 0 10px 5px #ddd;
border-radius: 10px
} | 0.302082 | 0.097133 |
.card--container {
height: 30em;
width: 55em;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
-ms-flex-direction:column;
flex-direction:column;
position:relative;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
border-radius:16px;
overflow:hidden;
-webkit-box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
margin: 2rem 2rem;
}
.card--image {
height: 22em;
width: 55em;
padding: 1em 2em;
position: absolute;
top: 0px;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 0;
}
.card--description {
background-color: #FAFAFC;
height: 10em;
width: 55em;
position: absolute;
bottom: 0em;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
padding: 0.5em 1em;
text-align: center;
}
.card--description h2 {
font-size: 2rem;
}
.card--description h4 {
font-weight: 200;
font-size: 1.7rem;
margin-top: .5rem;
}
.card--github
{
width:3em;
height:3em;
background-image: url("../assets/images/GitHub.png");
background-size: cover;
position: absolute;
bottom: 1em;
left: 1em;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.card--container:hover .card--description {
height: 0em;
padding: 0px 1em;
}
.card--container:hover .card--image {
height: 35em;
}
.card--container:hover {
background-color: white;
}
.card--container:hover .card--github:hover {
cursor: pointer;
background-image: url("../assets/images/GitHub-light.png");
}
@media only screen and (max-width: 800px) {
.card--container, .card--description, .card--image {
width: 30em;
}
} | src/Card/Card.css | .card--container {
height: 30em;
width: 55em;
display:-webkit-box;
display:-ms-flexbox;
display:flex;
-webkit-box-orient:vertical;
-webkit-box-direction:normal;
-ms-flex-direction:column;
flex-direction:column;
position:relative;
-webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
border-radius:16px;
overflow:hidden;
-webkit-box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
box-shadow: 15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
margin: 2rem 2rem;
}
.card--image {
height: 22em;
width: 55em;
padding: 1em 2em;
position: absolute;
top: 0px;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 0;
}
.card--description {
background-color: #FAFAFC;
height: 10em;
width: 55em;
position: absolute;
bottom: 0em;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
padding: 0.5em 1em;
text-align: center;
}
.card--description h2 {
font-size: 2rem;
}
.card--description h4 {
font-weight: 200;
font-size: 1.7rem;
margin-top: .5rem;
}
.card--github
{
width:3em;
height:3em;
background-image: url("../assets/images/GitHub.png");
background-size: cover;
position: absolute;
bottom: 1em;
left: 1em;
-webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
-o-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.card--container:hover .card--description {
height: 0em;
padding: 0px 1em;
}
.card--container:hover .card--image {
height: 35em;
}
.card--container:hover {
background-color: white;
}
.card--container:hover .card--github:hover {
cursor: pointer;
background-image: url("../assets/images/GitHub-light.png");
}
@media only screen and (max-width: 800px) {
.card--container, .card--description, .card--image {
width: 30em;
}
} | 0.472197 | 0.094971 |
:root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: xsooth;
}
}
/*---------------------Body--------------------------*/
body {
margin: 0;
font-family: var(--bs-font-sans-serif);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important;
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
/*---------------------Headings-------------------*/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1, .h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1, .h1 {
font-size: 2.5rem;
}
}
h2, .h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2, .h2 {
font-size: 2rem;
}
}
h3, .h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3, .h3 {
font-size: 1.75rem;
}
}
h4, .h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4, .h4 {
font-size: 1.5rem;
}
}
h5, .h5 {
font-size: 1.25rem;
}
h6, .h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
padding: 0rem;
}
/*------------------------------Containers-----------------------------*/
.container,
.container-lg,
.container-md,
.container-xs {
width: 100%;
padding-right: var(--bs-gutter-x, 0.75rem);
padding-left: var(--bs-gutter-x, 0.75rem);
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container-xs, .container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md, .container-xs, .container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 1320px;
}
} | src/css/style.css | :root {
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
}
*,
*::before,
*::after {
box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
:root {
scroll-behavior: xsooth;
}
}
/*---------------------Body--------------------------*/
body {
margin: 0;
font-family: var(--bs-font-sans-serif);
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
[tabindex="-1"]:focus:not(:focus-visible) {
outline: 0 !important;
}
hr {
margin: 1rem 0;
color: inherit;
background-color: currentColor;
border: 0;
opacity: 0.25;
}
hr:not([size]) {
height: 1px;
}
/*---------------------Headings-------------------*/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
margin-top: 0;
margin-bottom: 0.5rem;
font-weight: 500;
line-height: 1.2;
}
h1, .h1 {
font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
h1, .h1 {
font-size: 2.5rem;
}
}
h2, .h2 {
font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
h2, .h2 {
font-size: 2rem;
}
}
h3, .h3 {
font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
h3, .h3 {
font-size: 1.75rem;
}
}
h4, .h4 {
font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
h4, .h4 {
font-size: 1.5rem;
}
}
h5, .h5 {
font-size: 1.25rem;
}
h6, .h6 {
font-size: 1rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
padding: 0rem;
}
/*------------------------------Containers-----------------------------*/
.container,
.container-lg,
.container-md,
.container-xs {
width: 100%;
padding-right: var(--bs-gutter-x, 0.75rem);
padding-left: var(--bs-gutter-x, 0.75rem);
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container-xs, .container {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container-md, .container-xs, .container {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
.container-lg, .container-md, .container-xs, .container {
max-width: 1320px;
}
} | 0.38549 | 0.126057 |
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;
}
/* HTML5 display-role reset for older browsers */
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;
}
body {
margin: 0;
font-family: 'Raleway', sans-serif;
font-size: 17px;
color: #333;
line-height: 1.6em;
letter-spacing: 1px;
}
img {
width: 100%;
}
#showcase {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/header.jpg");
background-size: cover;
background-position: center;
height: 67vh;
text-align: center;
padding: 100px 20px;
color: #fff;
z-index: -1;
}
.showcase-cta {
position: relative;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
padding-top: 80px;
z-index: 2;
}
@media (max-width: 500px) {
.showcase-cta {
padding-top: 90px;
}
}
.showcase-cta h1 {
font-size: 60px;
line-height: 1.2em;
padding-bottom: 30px;
}
@media (max-width: 700px) {
.showcase-cta h1 {
font-size: 50px;
}
}
@media (max-width: 500px) {
.showcase-cta h1 {
font-size: 40px;
}
}
.showcase-cta p {
font-size: 30px;
line-height: 1.6em;
max-width: 80%;
padding-bottom: 10px;
}
@media (max-width: 900px) {
.showcase-cta p {
font-size: 25px;
}
}
@media (max-width: 700px) {
.showcase-cta p {
font-size: 23px;
}
}
@media (max-width: 500px) {
.showcase-cta p {
font-size: 20px;
max-width: 90%;
}
}
.showcase-cta .sign-up {
font-size: 17px;
margin-top: 20px;
}
.showcase-cta .sign-up a {
font-size: 22px;
text-decoration: none;
color: #fff;
border-bottom: 3px solid #11998e;
letter-spacing: 1.5px;
padding: 5px 10px;
margin-left: 5px;
}
.showcase-cta .sign-up a:hover {
color: #11998e;
border-bottom: 3px solid #fff;
}
#about-showcase {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/about-header.jpg");
background-size: cover;
background-position: center;
height: 10vh;
text-align: center;
padding: 100px 20px;
color: #fff;
z-index: -1;
}
#about-showcase .heading-container {
display: flex;
justify-content: center;
text-align: center;
}
#about-showcase .heading-container h1 {
font-size: 32px;
padding-top: 30px;
border-bottom: 3px solid #fff;
padding-bottom: 10px;
}
.btn-container {
display: flex;
justify-content: center;
}
.btn-container .button {
font-size: 26px;
font-weight: 800;
letter-spacing: 1px;
text-decoration: none;
color: #333;
background: #11998e;
/* fallback for old browsers */
background: linear-gradient(to right, #38ef7d, #11998e);
padding: 10px 100px;
border-radius: 10px;
margin-top: 20px;
text-transform: uppercase;
transition: 0.3s;
}
.btn-container .button.button:hover {
color: #fff;
}
.btn-container .small-button {
font-size: 20px;
font-weight: 800;
letter-spacing: 1px;
text-decoration: none;
color: #333;
background: #11998e;
/* fallback for old browsers */
background: linear-gradient(to right, #38ef7d, #11998e);
padding: 10px 30px;
border-radius: 10px;
margin-top: 20px;
text-transform: uppercase;
transition: 0.3s;
}
.btn-container .small-button:hover {
color: #fff;
}
#navbar {
text-transform: uppercase;
position: absolute;
top: 5%;
}
#navbar a {
text-decoration: none;
color: #fff;
padding: 0 10px;
list-style: none;
margin-bottom: 150px;
}
#navbar a:hover {
color: #11998e;
}
#navbar .current {
color: #fff;
border-bottom: 3px solid #fff;
padding-bottom: 5px;
}
#navbar .nav-button {
background: linear-gradient(to right, #38ef7d, #11998e);
color: #333;
padding: 10px 20px;
border-radius: 10px;
font-size: 18px;
letter-spacing: 1px;
font-weight: 700;
transition: 0.3s;
}
#navbar .nav-button:hover {
color: #11998e;
background: #fff;
box-sizing: border-box;
}
.main-footer {
background: #333;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 40px;
margin-top: 30px;
}
.about-team {
display: flex;
flex-direction: row;
flex-flow: row nowrap;
justify-content: space-around;
background-color: #f1f1f1;
padding: 10px 10px;
text-align: center;
font-size: 20px;
}
@media (max-width: 700px) {
.about-team {
flex-flow: row wrap;
}
}
@media (max-width: 500px) {
.about-team {
flex-direction: column;
font-size: 20px;
padding: 20px 0;
}
}
.about-team .team-members {
padding: 10px 0;
margin: 20px 10px;
width: 25%;
}
.about-team img {
width: 35%;
border-radius: 100%;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
margin-top: 20px;
}
@media (max-width: 900px) {
.about-team img {
width: 40%;
}
}
@media (max-width: 700px) {
.about-team img {
margin-top: 20px;
width: 25%;
}
}
.about-team .fab {
font-size: 22px;
}
@media (max-width: 900px) {
.about-team .fab {
font-size: 28px;
}
}
.about-team .role {
font-size: 16px;
}
.mission-statement {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
background: #333;
color: #333;
font-weight: 600;
font-size: 20px;
background: #f1f1f1;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.mission-statement h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.mission-statement p {
width: 60%;
}
@media (max-width: 500px) {
.mission-statement p {
width: 80%;
}
}
.login-cta {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
background: #fff;
color: #333;
font-weight: 600;
font-size: 20px;
text-align: center;
line-height: 2em;
}
.login-cta h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.login-cta p {
width: 60%;
}
@media (max-width: 500px) {
.login-cta p {
width: 80%;
}
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
color: #333;
font-weight: 600;
font-size: 20px;
background: #f1f1f1;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.content h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.content p {
width: 60%;
}
@media (max-width: 500px) {
.content p {
width: 80%;
}
}
.content-alt {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
color: #333;
font-weight: 600;
font-size: 20px;
background: #fff;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.content-alt h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.content-alt p {
width: 60%;
}
@media (max-width: 500px) {
.content-alt p {
width: 80%;
}
} | CSS/index.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;
}
/* HTML5 display-role reset for older browsers */
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;
}
body {
margin: 0;
font-family: 'Raleway', sans-serif;
font-size: 17px;
color: #333;
line-height: 1.6em;
letter-spacing: 1px;
}
img {
width: 100%;
}
#showcase {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/header.jpg");
background-size: cover;
background-position: center;
height: 67vh;
text-align: center;
padding: 100px 20px;
color: #fff;
z-index: -1;
}
.showcase-cta {
position: relative;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
padding-top: 80px;
z-index: 2;
}
@media (max-width: 500px) {
.showcase-cta {
padding-top: 90px;
}
}
.showcase-cta h1 {
font-size: 60px;
line-height: 1.2em;
padding-bottom: 30px;
}
@media (max-width: 700px) {
.showcase-cta h1 {
font-size: 50px;
}
}
@media (max-width: 500px) {
.showcase-cta h1 {
font-size: 40px;
}
}
.showcase-cta p {
font-size: 30px;
line-height: 1.6em;
max-width: 80%;
padding-bottom: 10px;
}
@media (max-width: 900px) {
.showcase-cta p {
font-size: 25px;
}
}
@media (max-width: 700px) {
.showcase-cta p {
font-size: 23px;
}
}
@media (max-width: 500px) {
.showcase-cta p {
font-size: 20px;
max-width: 90%;
}
}
.showcase-cta .sign-up {
font-size: 17px;
margin-top: 20px;
}
.showcase-cta .sign-up a {
font-size: 22px;
text-decoration: none;
color: #fff;
border-bottom: 3px solid #11998e;
letter-spacing: 1.5px;
padding: 5px 10px;
margin-left: 5px;
}
.showcase-cta .sign-up a:hover {
color: #11998e;
border-bottom: 3px solid #fff;
}
#about-showcase {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/about-header.jpg");
background-size: cover;
background-position: center;
height: 10vh;
text-align: center;
padding: 100px 20px;
color: #fff;
z-index: -1;
}
#about-showcase .heading-container {
display: flex;
justify-content: center;
text-align: center;
}
#about-showcase .heading-container h1 {
font-size: 32px;
padding-top: 30px;
border-bottom: 3px solid #fff;
padding-bottom: 10px;
}
.btn-container {
display: flex;
justify-content: center;
}
.btn-container .button {
font-size: 26px;
font-weight: 800;
letter-spacing: 1px;
text-decoration: none;
color: #333;
background: #11998e;
/* fallback for old browsers */
background: linear-gradient(to right, #38ef7d, #11998e);
padding: 10px 100px;
border-radius: 10px;
margin-top: 20px;
text-transform: uppercase;
transition: 0.3s;
}
.btn-container .button.button:hover {
color: #fff;
}
.btn-container .small-button {
font-size: 20px;
font-weight: 800;
letter-spacing: 1px;
text-decoration: none;
color: #333;
background: #11998e;
/* fallback for old browsers */
background: linear-gradient(to right, #38ef7d, #11998e);
padding: 10px 30px;
border-radius: 10px;
margin-top: 20px;
text-transform: uppercase;
transition: 0.3s;
}
.btn-container .small-button:hover {
color: #fff;
}
#navbar {
text-transform: uppercase;
position: absolute;
top: 5%;
}
#navbar a {
text-decoration: none;
color: #fff;
padding: 0 10px;
list-style: none;
margin-bottom: 150px;
}
#navbar a:hover {
color: #11998e;
}
#navbar .current {
color: #fff;
border-bottom: 3px solid #fff;
padding-bottom: 5px;
}
#navbar .nav-button {
background: linear-gradient(to right, #38ef7d, #11998e);
color: #333;
padding: 10px 20px;
border-radius: 10px;
font-size: 18px;
letter-spacing: 1px;
font-weight: 700;
transition: 0.3s;
}
#navbar .nav-button:hover {
color: #11998e;
background: #fff;
box-sizing: border-box;
}
.main-footer {
background: #333;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
padding: 20px 40px;
margin-top: 30px;
}
.about-team {
display: flex;
flex-direction: row;
flex-flow: row nowrap;
justify-content: space-around;
background-color: #f1f1f1;
padding: 10px 10px;
text-align: center;
font-size: 20px;
}
@media (max-width: 700px) {
.about-team {
flex-flow: row wrap;
}
}
@media (max-width: 500px) {
.about-team {
flex-direction: column;
font-size: 20px;
padding: 20px 0;
}
}
.about-team .team-members {
padding: 10px 0;
margin: 20px 10px;
width: 25%;
}
.about-team img {
width: 35%;
border-radius: 100%;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
margin-top: 20px;
}
@media (max-width: 900px) {
.about-team img {
width: 40%;
}
}
@media (max-width: 700px) {
.about-team img {
margin-top: 20px;
width: 25%;
}
}
.about-team .fab {
font-size: 22px;
}
@media (max-width: 900px) {
.about-team .fab {
font-size: 28px;
}
}
.about-team .role {
font-size: 16px;
}
.mission-statement {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
background: #333;
color: #333;
font-weight: 600;
font-size: 20px;
background: #f1f1f1;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.mission-statement h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.mission-statement p {
width: 60%;
}
@media (max-width: 500px) {
.mission-statement p {
width: 80%;
}
}
.login-cta {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
background: #fff;
color: #333;
font-weight: 600;
font-size: 20px;
text-align: center;
line-height: 2em;
}
.login-cta h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.login-cta p {
width: 60%;
}
@media (max-width: 500px) {
.login-cta p {
width: 80%;
}
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
color: #333;
font-weight: 600;
font-size: 20px;
background: #f1f1f1;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.content h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.content p {
width: 60%;
}
@media (max-width: 500px) {
.content p {
width: 80%;
}
}
.content-alt {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 0;
color: #333;
font-weight: 600;
font-size: 20px;
background: #fff;
text-align: left;
line-height: 2em;
padding-bottom: 50px;
}
.content-alt h1 {
font-size: 26px;
font-weight: 700;
color: #11998e;
border-bottom: 3px solid #11998e;
}
.content-alt p {
width: 60%;
}
@media (max-width: 500px) {
.content-alt p {
width: 80%;
}
} | 0.335786 | 0.081739 |
@media (min-width: 1200px)
{
}
/*-----------------------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px)
{
.cms-main-footer .widget{text-align:left;}
.cms-main-footer .media-body p, .cms-main-footer .media-body a {word-break: break-all;}
}
/*-----------------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px)
{
.cms-main-footer .widget{text-align:left;}
.box-left1{height:auto;}
.widget {text-align:center;}
.cruising-area{height:200px;width:100%;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width: 767px)
{
.page-title .block h1{font-family:'Montserrat';margin:15px 0!important;font-size:40px;letter-spacing:5px;line-height:53px;}
.page-title .block h2{font-family:Tenor Sans, sans-serif;margin:15px 0!important;font-size:40px;letter-spacing:5px;line-height:53px;}
.about .about-content p.mt-3:last-child{text-align:center;font-family:'Arizonia';color:#26a9e0;font-size:24px;line-height:35px;font-weight:600;letter-spacing:3px;}
.cms-main-footer .widget{text-align:left;}
.box-left1{height:auto;padding: 1.5rem 1.5rem;}
.toysBoxRight {padding: 10px;}
.key-toys{font-size:12px; line-height:25px;}
.destinations{margin-top:20px;margin-right:15px;}
.page-title{padding:50px 0px;}
.footer-header {text-align:center;}
.widget {align-items:center;}
.lh-35 {text-align:center;}
.lh-36{text-align:center;}
.header-top-socials{padding:1px 0px 0px 0px !important;}
.boats_price_box_item {font-size: 18px;}
.explore{margin-top:10px;}
.testimonial-space{margin-bottom:-50px;}
.button-space{margin-bottom:25px}
.sea_bob img{max-width: 75px;}
.jet_ski img{max-width: 75px;}
.image10 img {max-width: 75px;}
.jet_ski {right:16%;}
.sea_bob{left:52%;}
.paddle-board{left:35%;}
.paddle-board img{max-width: 75px;}
.cursive{font-size:1.5rem;}
.button-top{margin-top:20px;}
.row img.cruising-area{height:300px;width:100%;padding: 0px 5px 0px 5px;}
.pricing-width{width:250px;margin-left:75px;}
.top-header-space{margin-left:0px;}
.navbar-brand img {width: 150px;height: 60px;}
.bachelorette-cursive{font-size:50px;line-height:80px;}
.pricingTable2{margin-top:35px;}
.rows{margin-left: -13px;margin-right: -13px;}
.char-des-int_cont_sec2 .inn_boxes_cont_sec_lt {padding-left: 5px;padding-right:5px;padding-top: 50px;}
.inn_boxes_cont_sec_lt {padding-left: 5px;padding-top: 0px;padding-right:5px;padding-bottom:20px;}
.char-des-int_cont_sec{padding-top:50px;}
.btn-footer{margin-bottom:20px;}
.cms-main-footer .footerlogo {width: 75%;height: auto;display: block;margin: 0 0 10px;}
.cms-main-footer ul.social-list-cms {text-align: center;}
#navbar{ height:61px;}
section.cms-paymentbox .paymentlogobox .yhc-logo{width:90%;height:150px;}
.contact-logo img{width:350px;height:150px;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width: 767px) and (orientation : landscape)
{
.header-top-socials{padding:2px 0px 0px 0px !important;}
.explore{margin-top:10px;}
.cruising-area{height:200px;width:100%;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width:320px)
{
.widget {text-align:center;}
.header-top-socials{padding:2px 0px 0px 0px !important;}
.explore{margin-top:10px;}
.button-space{margin-bottom:25px}
.cruising-area{height:200px;width:100%;}
.sea_bob{left:46%;}
} | public/frontend/css/responsive.css | @media (min-width: 1200px)
{
}
/*-----------------------------------------------------------------------------*/
@media (min-width: 992px) and (max-width: 1199px)
{
.cms-main-footer .widget{text-align:left;}
.cms-main-footer .media-body p, .cms-main-footer .media-body a {word-break: break-all;}
}
/*-----------------------------------------------------------------------------*/
@media (min-width: 768px) and (max-width: 991px)
{
.cms-main-footer .widget{text-align:left;}
.box-left1{height:auto;}
.widget {text-align:center;}
.cruising-area{height:200px;width:100%;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width: 767px)
{
.page-title .block h1{font-family:'Montserrat';margin:15px 0!important;font-size:40px;letter-spacing:5px;line-height:53px;}
.page-title .block h2{font-family:Tenor Sans, sans-serif;margin:15px 0!important;font-size:40px;letter-spacing:5px;line-height:53px;}
.about .about-content p.mt-3:last-child{text-align:center;font-family:'Arizonia';color:#26a9e0;font-size:24px;line-height:35px;font-weight:600;letter-spacing:3px;}
.cms-main-footer .widget{text-align:left;}
.box-left1{height:auto;padding: 1.5rem 1.5rem;}
.toysBoxRight {padding: 10px;}
.key-toys{font-size:12px; line-height:25px;}
.destinations{margin-top:20px;margin-right:15px;}
.page-title{padding:50px 0px;}
.footer-header {text-align:center;}
.widget {align-items:center;}
.lh-35 {text-align:center;}
.lh-36{text-align:center;}
.header-top-socials{padding:1px 0px 0px 0px !important;}
.boats_price_box_item {font-size: 18px;}
.explore{margin-top:10px;}
.testimonial-space{margin-bottom:-50px;}
.button-space{margin-bottom:25px}
.sea_bob img{max-width: 75px;}
.jet_ski img{max-width: 75px;}
.image10 img {max-width: 75px;}
.jet_ski {right:16%;}
.sea_bob{left:52%;}
.paddle-board{left:35%;}
.paddle-board img{max-width: 75px;}
.cursive{font-size:1.5rem;}
.button-top{margin-top:20px;}
.row img.cruising-area{height:300px;width:100%;padding: 0px 5px 0px 5px;}
.pricing-width{width:250px;margin-left:75px;}
.top-header-space{margin-left:0px;}
.navbar-brand img {width: 150px;height: 60px;}
.bachelorette-cursive{font-size:50px;line-height:80px;}
.pricingTable2{margin-top:35px;}
.rows{margin-left: -13px;margin-right: -13px;}
.char-des-int_cont_sec2 .inn_boxes_cont_sec_lt {padding-left: 5px;padding-right:5px;padding-top: 50px;}
.inn_boxes_cont_sec_lt {padding-left: 5px;padding-top: 0px;padding-right:5px;padding-bottom:20px;}
.char-des-int_cont_sec{padding-top:50px;}
.btn-footer{margin-bottom:20px;}
.cms-main-footer .footerlogo {width: 75%;height: auto;display: block;margin: 0 0 10px;}
.cms-main-footer ul.social-list-cms {text-align: center;}
#navbar{ height:61px;}
section.cms-paymentbox .paymentlogobox .yhc-logo{width:90%;height:150px;}
.contact-logo img{width:350px;height:150px;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width: 767px) and (orientation : landscape)
{
.header-top-socials{padding:2px 0px 0px 0px !important;}
.explore{margin-top:10px;}
.cruising-area{height:200px;width:100%;}
}
/*-----------------------------------------------------------------------------*/
@media (max-width:320px)
{
.widget {text-align:center;}
.header-top-socials{padding:2px 0px 0px 0px !important;}
.explore{margin-top:10px;}
.button-space{margin-bottom:25px}
.cruising-area{height:200px;width:100%;}
.sea_bob{left:46%;}
} | 0.202996 | 0.051845 |
.cart-wrapper {
position: fixed; /* Stay in place */
z-index: 4; /* Sit on top */
padding-top: 90px; /* 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 */
}
.cart-conatiner {
position: relative;
height: 100%;
width: 100%;
max-width: 1320px;
margin-right: auto;
margin-left: auto;
}
.cart-content {
position: absolute;
width: 40%;
max-width: 500px;
right: 10px;
height: 100%;
}
.cart-header {
background-color: black;
height: 70px;
color: #fff;
display: flex;
justify-content: space-between;
font-size: 20px;
align-items: center;
padding: 20px;
}
.cart-body {
height: 75%;
background-color: lightgray;
padding-top: 10px;
}
.cart-item-list .cart-item {
background-color: #fff;
display: flex;
flex-wrap: wrap;
padding: 20px;
margin-bottom: 10px;
}
.cart-item-list .cart-item > div:first-child {
width: 15%;
}
.cart-item-list .cart-item > div:last-child {
flex-grow: 1;
padding-left: 20px;
}
.cart-item-list .cart-item div:first-child img {
width: 100%;
}
.cart-item-list .cart-item .cart-price-conatiner {
display: flex;
justify-content: space-between;
align-items: center;
}
.cart-item-list .cart-item .cart-item-title {
font-weight: 600;
padding-bottom: 10px;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
display: flex;
width: 50%;
justify-content: space-between;
align-items: center;
}
.cart-footer {
background-color: #fff;
padding: 20px;
text-align: center;
}
.cart-footer .cart-btn {
margin-top: 10px;
width: 100%;
background-color: darkred;
border-width: 0px;
box-shadow: none;
border-radius: 5px;
color: white;
padding: 20px;
}
.cart-footer .cart-btn .cart-btn-content {
display: flex;
justify-content: space-between;
}
.cart-banner {
background-color: #fff;
margin: 15px;
padding: 10px;
border-radius: 5px;
display: flex;
align-items: center;
}
.cart-banner > div:last-child {
margin-left: 15px;
}
.cart-no-item {
text-align: center;
margin-top: 40%;
}
.cart-shopping-btn {
margin-top: 10px;
width: 100%;
background-color: darkred;
border-width: 0px;
box-shadow: none;
border-radius: 5px;
color: white;
padding: 20px;
}
@media screen and (max-width: 786px) {
.cart-wrapper {
padding-top: 0px; /* Location of the box */
margin-top: 90px;
background-color: rgb(241, 221, 224);
}
.cart-item-list .cart-item > div:first-child {
width: 10%;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
width: 30%;
}
.cart-content {
width: 100%;
max-width: 800px;
right: 0px;
}
.cart-body {
height: 55%;
background-color: rgb(241, 221, 224);
}
.cart-header {
background-color: #fff;
color: #000;
}
}
@media screen and (max-width: 486px) {
.cart-wrapper {
padding-top: 40px; /* Location of the box */
margin-top: 60px;
}
.cart-item-list .cart-item > div:first-child {
width: 15%;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
width: 50%;
}
} | src/components/common/cart/Cart.css | .cart-wrapper {
position: fixed; /* Stay in place */
z-index: 4; /* Sit on top */
padding-top: 90px; /* 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 */
}
.cart-conatiner {
position: relative;
height: 100%;
width: 100%;
max-width: 1320px;
margin-right: auto;
margin-left: auto;
}
.cart-content {
position: absolute;
width: 40%;
max-width: 500px;
right: 10px;
height: 100%;
}
.cart-header {
background-color: black;
height: 70px;
color: #fff;
display: flex;
justify-content: space-between;
font-size: 20px;
align-items: center;
padding: 20px;
}
.cart-body {
height: 75%;
background-color: lightgray;
padding-top: 10px;
}
.cart-item-list .cart-item {
background-color: #fff;
display: flex;
flex-wrap: wrap;
padding: 20px;
margin-bottom: 10px;
}
.cart-item-list .cart-item > div:first-child {
width: 15%;
}
.cart-item-list .cart-item > div:last-child {
flex-grow: 1;
padding-left: 20px;
}
.cart-item-list .cart-item div:first-child img {
width: 100%;
}
.cart-item-list .cart-item .cart-price-conatiner {
display: flex;
justify-content: space-between;
align-items: center;
}
.cart-item-list .cart-item .cart-item-title {
font-weight: 600;
padding-bottom: 10px;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
display: flex;
width: 50%;
justify-content: space-between;
align-items: center;
}
.cart-footer {
background-color: #fff;
padding: 20px;
text-align: center;
}
.cart-footer .cart-btn {
margin-top: 10px;
width: 100%;
background-color: darkred;
border-width: 0px;
box-shadow: none;
border-radius: 5px;
color: white;
padding: 20px;
}
.cart-footer .cart-btn .cart-btn-content {
display: flex;
justify-content: space-between;
}
.cart-banner {
background-color: #fff;
margin: 15px;
padding: 10px;
border-radius: 5px;
display: flex;
align-items: center;
}
.cart-banner > div:last-child {
margin-left: 15px;
}
.cart-no-item {
text-align: center;
margin-top: 40%;
}
.cart-shopping-btn {
margin-top: 10px;
width: 100%;
background-color: darkred;
border-width: 0px;
box-shadow: none;
border-radius: 5px;
color: white;
padding: 20px;
}
@media screen and (max-width: 786px) {
.cart-wrapper {
padding-top: 0px; /* Location of the box */
margin-top: 90px;
background-color: rgb(241, 221, 224);
}
.cart-item-list .cart-item > div:first-child {
width: 10%;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
width: 30%;
}
.cart-content {
width: 100%;
max-width: 800px;
right: 0px;
}
.cart-body {
height: 55%;
background-color: rgb(241, 221, 224);
}
.cart-header {
background-color: #fff;
color: #000;
}
}
@media screen and (max-width: 486px) {
.cart-wrapper {
padding-top: 40px; /* Location of the box */
margin-top: 60px;
}
.cart-item-list .cart-item > div:first-child {
width: 15%;
}
.cart-item-list .cart-item .cart-price-conatiner .cart-item-price-calc {
width: 50%;
}
} | 0.531453 | 0.06885 |
@media only screen and (max-device-width: 480px) {
div#wrapper {
width: 400px;
}
.top-banner {
display: block;
height: 20px !important;
position: fixed;
z-index: 1030;
background-color: #fff !important;
width: 100%;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 18px;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 20px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -22px;
}
}
@media screen and (max-width: 500px) {
.top-banner {
display: block;
height: 20px !important;
position: fixed;
z-index: 1030;
background-color: #fff !important;
width: 100%;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 18px;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 24px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -22px;
}
div.user {
display: block;
max-width: 100%;
text-align: center;
margin: 20% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
}
a.user-link {
color: #d10000;
font-weight: 500;
font-size: 1.5em;
text-align: center;
width: 100%;
}
/************ LANDSCAPE *************/
@media only screen and (min-device-width: 480px) {
div#wrapper {
width: 400px;
}
.top-banner {
display: none;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 0;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 15px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -15px;
}
div.user {
display: none;
max-width: 100%;
text-align: center;
margin: 5% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
}
@media screen and (min-width: 500px) {
div.user {
display: none;
max-width: 100%;
text-align: center;
margin: 5% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
div#wrapper {
width: 400px;
}
.top-banner {
display: none;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 0;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 12px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -150px;
}
} | www/themes/cokebeats/css/media.css | @media only screen and (max-device-width: 480px) {
div#wrapper {
width: 400px;
}
.top-banner {
display: block;
height: 20px !important;
position: fixed;
z-index: 1030;
background-color: #fff !important;
width: 100%;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 18px;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 20px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -22px;
}
}
@media screen and (max-width: 500px) {
.top-banner {
display: block;
height: 20px !important;
position: fixed;
z-index: 1030;
background-color: #fff !important;
width: 100%;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 18px;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 24px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -22px;
}
div.user {
display: block;
max-width: 100%;
text-align: center;
margin: 20% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
}
a.user-link {
color: #d10000;
font-weight: 500;
font-size: 1.5em;
text-align: center;
width: 100%;
}
/************ LANDSCAPE *************/
@media only screen and (min-device-width: 480px) {
div#wrapper {
width: 400px;
}
.top-banner {
display: none;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 0;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 15px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -15px;
}
div.user {
display: none;
max-width: 100%;
text-align: center;
margin: 5% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
}
@media screen and (min-width: 500px) {
div.user {
display: none;
max-width: 100%;
text-align: center;
margin: 5% auto;
}
div.user > img {
border-radius: 50%;
width: 100px;
padding: 10px;
}
div#wrapper {
width: 400px;
}
.top-banner {
display: none;
}
.navbar-fixed-top {
left: 0;
position: fixed !important;
right: 0;
top: 0;
z-index: 1030;
}
.commentbox {
background: rgba(255, 255, 255, 1) !important;
position: fixed;
top: 12px;
}
.swiper-button-next, .swiper-button-prev {
margin-top: -150px;
}
} | 0.245899 | 0.106272 |
@charset "utf-8";
body
{
direction: rtl;
background: url(../image/bg.png);
}
.blue-color
{
color:#0069a3;
}
.intro .container
{
margin: 100px auto;
}
.intro .col-md-12
{
margin: auto;
}
.intro .logo img
{
width: 300px;
}
.intro .menu
{
padding: 0;
margin: 30px auto;
}
.intro .menu li
{
margin: 10px;
}
.intro .menu li .btn
{
width:200px;
}
.intro h1
{
margin-top: 20px;
}
hr
{
background: #0069a3;
}
.back
{
margin-top: 20px;
display: block;
width: 100%;
}
.recognition .container
{
margin: 100px auto;
}
.recognition .logo
{
margin-bottom: 30px;
}
.recognition .logo img
{
width: 100px;
}
.recognition .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.statictics .container
{
margin: 100px auto;
}
.statictics .logo
{
margin-bottom: 30px;
}
.statictics .logo img
{
width: 100px;
}
.statictics .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.directory .container
{
margin: 100px auto;
}
.directory .logo
{
margin-bottom: 30px;
}
.directory .logo img
{
width: 100px;
}
.directory .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.face-item
{
border:1px solid #0069a3;
padding:20px;
background: #eee;
border-radius: 10px;
margin-bottom: 20px;
margin-left:20px;
min-height: 220px;
}
.face-info
{
margin-top:20px;
}
.face-info div
{
width: 100%;
text-align: center;
color:#fff;
background: #0069a3;
margin-bottom: 5px;
border-radius: 5px;
padding: 5px;
}
.face-item img
{
min-height: 100px;
max-height: 100px;
}
.statictics_table tr td:nth-child(1)
{
width:30%;
background: #0069a3;
color:#fff;
}
.statictics_table tr td:nth-child(2)
{
text-align: center;
}
.statictics_table tr td
{
padding: 20px;
}
.statictics h3
{
border-bottom: 1px dashed #0069a3;
display: inline-block;
padding-bottom: 20px;
margin-bottom: 20px;
}
/* Chart */
.my_chart {
margin: 20px auto
}
.my_chart table td {
padding: 0
}
.my_chart h4 {
background: #00559a;
color: #fff;
border-top-right-radius: 3px;
border-top-left-radius: 3px
}
.chart {
border: 1px solid #00559a;
padding: 20px;
background: #fff;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px
}
.chart td:nth-child(4) {
border-right: 1px solid #00559a;
}
.chart td:nth-child(4),
.chart tr:nth-child(8) {
text-align: center
}
.chart tr:nth-child(8) {
border-top:1px solid #0069a3;
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
background: #0069a3;
margin: 0 auto;
text-align: center;
color: #fff
}
@media (min-width:951px) {
.my_chart {
width: 100%
}
.my_chart table {
width: 99%
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 90px
}
.my_chart h4 {
width: 99%
}
}
@media (min-width:750px) and (max-width:950px) {
.my_chart,
.my_chart table,
.squere_content {
width: 100%
}
.my_chart {
margin-bottom: 30px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 80px
}
.my_chart h4 {
width: 100%
}
}
@media (max-width:749px) {
.my_chart,
.my_chart table,
.squere_content {
width: 100%
}
.my_chart {
margin-bottom: 30px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 80px
}
.my_chart h4 {
width: 100%
}
}
@media (max-width:480px) {
.my_chart {
width: 100%;
border: 1px solid #00559a;
border-radius: 5px;
margin-bottom: 30px
}
.my_chart table {
width: 100%;
display: none;
visibility: hidden
}
.my_chart:after {
content: "برای مشاهده نمودار از دستگاه هایی با صفحات نمایشگر بزرگتر استفاده کنید.";
font-size: 12px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 50px
}
.my_chart h4 {
width: 100%
}
} | assets/css/layout.css | @charset "utf-8";
body
{
direction: rtl;
background: url(../image/bg.png);
}
.blue-color
{
color:#0069a3;
}
.intro .container
{
margin: 100px auto;
}
.intro .col-md-12
{
margin: auto;
}
.intro .logo img
{
width: 300px;
}
.intro .menu
{
padding: 0;
margin: 30px auto;
}
.intro .menu li
{
margin: 10px;
}
.intro .menu li .btn
{
width:200px;
}
.intro h1
{
margin-top: 20px;
}
hr
{
background: #0069a3;
}
.back
{
margin-top: 20px;
display: block;
width: 100%;
}
.recognition .container
{
margin: 100px auto;
}
.recognition .logo
{
margin-bottom: 30px;
}
.recognition .logo img
{
width: 100px;
}
.recognition .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.statictics .container
{
margin: 100px auto;
}
.statictics .logo
{
margin-bottom: 30px;
}
.statictics .logo img
{
width: 100px;
}
.statictics .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.directory .container
{
margin: 100px auto;
}
.directory .logo
{
margin-bottom: 30px;
}
.directory .logo img
{
width: 100px;
}
.directory .content
{
min-height: 1000px;
background: #fff;
border:10px solid #0069a3;
padding: 20px;
}
.face-item
{
border:1px solid #0069a3;
padding:20px;
background: #eee;
border-radius: 10px;
margin-bottom: 20px;
margin-left:20px;
min-height: 220px;
}
.face-info
{
margin-top:20px;
}
.face-info div
{
width: 100%;
text-align: center;
color:#fff;
background: #0069a3;
margin-bottom: 5px;
border-radius: 5px;
padding: 5px;
}
.face-item img
{
min-height: 100px;
max-height: 100px;
}
.statictics_table tr td:nth-child(1)
{
width:30%;
background: #0069a3;
color:#fff;
}
.statictics_table tr td:nth-child(2)
{
text-align: center;
}
.statictics_table tr td
{
padding: 20px;
}
.statictics h3
{
border-bottom: 1px dashed #0069a3;
display: inline-block;
padding-bottom: 20px;
margin-bottom: 20px;
}
/* Chart */
.my_chart {
margin: 20px auto
}
.my_chart table td {
padding: 0
}
.my_chart h4 {
background: #00559a;
color: #fff;
border-top-right-radius: 3px;
border-top-left-radius: 3px
}
.chart {
border: 1px solid #00559a;
padding: 20px;
background: #fff;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px
}
.chart td:nth-child(4) {
border-right: 1px solid #00559a;
}
.chart td:nth-child(4),
.chart tr:nth-child(8) {
text-align: center
}
.chart tr:nth-child(8) {
border-top:1px solid #0069a3;
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
background: #0069a3;
margin: 0 auto;
text-align: center;
color: #fff
}
@media (min-width:951px) {
.my_chart {
width: 100%
}
.my_chart table {
width: 99%
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 90px
}
.my_chart h4 {
width: 99%
}
}
@media (min-width:750px) and (max-width:950px) {
.my_chart,
.my_chart table,
.squere_content {
width: 100%
}
.my_chart {
margin-bottom: 30px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 80px
}
.my_chart h4 {
width: 100%
}
}
@media (max-width:749px) {
.my_chart,
.my_chart table,
.squere_content {
width: 100%
}
.my_chart {
margin-bottom: 30px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 80px
}
.my_chart h4 {
width: 100%
}
}
@media (max-width:480px) {
.my_chart {
width: 100%;
border: 1px solid #00559a;
border-radius: 5px;
margin-bottom: 30px
}
.my_chart table {
width: 100%;
display: none;
visibility: hidden
}
.my_chart:after {
content: "برای مشاهده نمودار از دستگاه هایی با صفحات نمایشگر بزرگتر استفاده کنید.";
font-size: 12px
}
.chart .bar1,
.chart .bar2,
.chart .bar3 {
width: 50px
}
.my_chart h4 {
width: 100%
}
} | 0.282097 | 0.087369 |
.clear {
clear: both;
}
.center {
text-align: center;
}
.box_shadow{
box-shadow: 2px 2px 15px 0px #ccc;
}
.btn-infinity {
color: #fff;
background-color: #024272;
border-color: #024272;
}
.btn-infinity:hover, .btn-infinity:focus, {
background-color: #021c2f;
border-color: #021c2f;
color: #fff;
}
.nav-main li.open > a.nav-submenu {
color: #021c2f;
}
.nav-main li.open > a.nav-submenu {
color: #fff;
}
.nav-main ul {
background-color: #ebf2f6;
}
.nav-main ul a {
color: #021c2f;
}
.nav-main ul a:hover, .nav-main ul a:focus {
color: #021c2f;
}
.nav-main a.active, .nav-main a.active:hover {
color: #fff;
background-color: #024272;
}
.dataTable tbody td a {
color: #646464 !important;
}
table tfoot {
display: table-header-group;
}
table a:hover {
text-decoration: underline!important;
}
.popover {
z-index: 99999;
}
/* Filter Overlay */
#filter-overlay {
position: fixed;
top: 0;
bottom: 0;
z-index: 1032;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-webkit-transition: all .28s ease-out;
transition: all .28s ease-out;
}
#filter-overlay {
position: fixed;
top: 0;
}
@media screen and (min-width: 992px) {
.side-scroll #filter-overlay {
overflow-y: hidden;
}
}
#filter-overlay {
background: #fff;
}
.sidebar-l #filter-overlay {
right: 0;
-webkit-transform: translateX(100%) translateY(0) translateZ(0);
transform: translateX(100%) translateY(0) translateZ(0);
}
.sidebar-r #filter-overlay {
left: 0;
-webkit-transform: translateX(-100%) translateY(0) translateZ(0);
}
@media screen and (max-width: 991px) {
#filter-overlay {
width: 100%;
opacity: 0;
}
.filter-overlay-o #filter-overlay {
opacity: 1;
-webkit-transform: translateX(0) translateY(0) translateZ(0);
}
}
@media screen and (min-width: 992px) {
#filter-overlay {
width: 320px;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.sidebar-l #filter-overlay {
-webkit-transform: translateX(110%) translateY(0) translateZ(0);
-ms-transform: translateX(110%) translateY(0);
transform: translateX(110%) translateY(0) translateZ(0);
}
.sidebar-r #filter-overlay {
-webkit-transform: translateX(-110%) translateY(0) translateZ(0);
-ms-transform: translateX(-110%) translateY(0);
transform: translateX(-110%) translateY(0) translateZ(0);
}
}
.filter-overlay-o #filter-overlay {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
-webkit-transform: translateX(0) translateY(0) translateZ(0);
-ms-transform: translateX(0) translateY(0);
transform: translateX(0) translateY(0) translateZ(0);
}
/* lead information */
.qcblock h3 {
display: inline;
}
.qcactions {
float: right;
margin-bottom: 1em;
}
.stage-container {
display: flex;
width: 100%;
justify-content: space-around;
align-items: center;
}
.stage-containers {
display: flex;
width: 100%;
justify-content: space-around;
align-items: center;
}
.stagestrip {
background: #e6e6e6;
width: 100%;
text-align: center;
padding: 6px;
white-space: nowrap;
position: relative;
color: #444;
transform: all 0.3s ease;
}
.stagestrips {
background: #e6e6e6;
width: 100%;
text-align: center;
padding: 6px;
white-space: nowrap;
position: relative;
color: #444;
transform: all 0.3s ease;
}
.stagestrip.active {
background: #1e953f;
color: #fff;
transform: all 0.3s ease;
}
.stagestrips.active {
background: #1e953f;
color: #fff;
transform: all 0.3s ease;
}
.stagestrip.active:after {
background: #1e953f;
}
.stagestrips.active:after {
background: #1e953f;
}
.stagestrip:after {
-moz-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
-webkit-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
content: '';
position: absolute;
top: 50%;
right: -7px;
width: 22px;
height: 22px;
z-index: 1;
border-radius: 0 0 0 25px;
}
.stagestrips:after {
-moz-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
-webkit-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
content: '';
position: absolute;
top: 50%;
right: -7px;
width: 22px;
height: 22px;
z-index: 1;
border-radius: 0 0 0 25px;
}
.notes.well {
padding: 25px 19px 19px;
}
.notes {
height: 220px;
overflow-y: scroll;
}
.leadcomments {
display: block;
position: relative;
}
.commentoptions {
position: absolute;
top: -18px;
right: 0;
}
.commentoptionsdd {
position: absolute!important;
top: 0!important;
}
.filesul {
list-style-type: none;
padding: 0;
}
.filesli {
padding: 0.5em 1em;
border: 1px solid #e0e4e7;
margin-bottom: 5px;
position: relative;
word-wrap: break-word;
}
.success_list {
margin-left: 0;
}
.success_list li {
margin-bottom: 5px;
}
.btnfilesopt {
position: absolute;
top: 5px;
right: 5px;
}
/* employee modal */
.avatarcointainer {
position: absolute;
top: -69px;
right: 32px;
text-align: center;
margin: auto;
}
.avataremp-container {
position: relative;
}
#addavataremp {
-webkit-box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
}
.img-avatar.img-avatar100 {
width: 100px;
height: 100px;
}
.avataremp-container .fa {
position: absolute;
top: 50%;
left: 50%;
color: #fff;
font-size: 30px;
background: rgba(0,0,0,.5);
padding: 35px;
border-radius: 50%;
transform: translate(-50%, -50%);
opacity: 0;
filter: alpha(opacity=0);
transition: .3s all;
}
.avataremp-container:hover .fa {
opacity: 1;
filter: alpha(opacity=1);
cursor: pointer !important;
}
.avataremp-container input {
position: absolute;
top: 0;
right: -9px;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
width: 115px;
height: 104px;
cursor: pointer!important;
}
span.select2.select2-container {
display: block!important;
width: 100%!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
top: 5px !important;
}
.select2-container .select2-selection--single {
height: 36px !important;
border-radius: 0 !important;
border: 1px solid #e6e6e6 !important;
}
.leadowner {
margin-right: 10px;
}
.leadownerinfo, .leadcloserinfo {
position: relative;
padding: 5px;
font-weight: bold;
color: #3d4145;
}
.leadtransferowner {
padding: 15px!important;
width: 250px!important;
}
/*employee information */
.editavatarcontainer {
position: relative;
}
.editavatarcontainer:hover .fa {
opacity: 1;
filter: alpha(opacity=1);
cursor: pointer!important;
}
.editavatarcontainer .fa {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
transition: .3s all;
background: rgba(0,0,0,0.5);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 30px;
opacity: 0;
filter: alpha(opacity=0);
}
.editavatarcontainer input {
position: absolute;
top: 0;
right: 0px;
margin: 0;
padding: 0;
font-size: 20px;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer!important;
width: 100%;
height: 100%;
}
/* dropzone */
.dropzone .dz-message {
margin: 0 !important;
}
.dropzone {
min-height: 0 !important;
padding: 5px !important;
}
.dropzone .form-group {
margin: 0;
}
.dropzone_success {
background-color: #46c37b !important;
}
.dropzone_success .dz-message {
color: #fff !important;
}
/* Form */
.col-sm-8 .col-xs-12 {
z-index: 9999;
}
ul.form-steps {
padding:0;
margin: 0;
}
.form-steps li {
float: left;
width: 20%;
list-style: none;
text-align: center;
padding: 20px;
background: #f1f1f1;
}
.form-steps li.active a {
color: #fff;
}
.form-steps li.active {
float: left;
list-style: none;
text-align: center;
padding: 20px;
background: #16a085;
}
#c1, #c2, #c3, #c4 {
text-align: center;
}
#c1 label, #c2 label, #c3 label, #c4 label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#c1 label > input, #c2 label > input, #c3 label > input, #c4 label > input {
visibility: hidden;
}
#c1 label > input + img, #c2 label > input + img, #c3 label > input + img, #c4 label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#c2 .col-lg-2 {
min-height: 265px;
}
#house {
text-align: center;
}
#house label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#house label > input {
visibility: hidden;
}
#house label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#bungalow {
text-align: center;
}
#bungalow label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#bungalow label > input {
visibility: hidden;
}
#bungalow label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Det {
text-align: center;
}
#Det label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Det label > input {
visibility: hidden;
}
#Det label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Semi {
text-align: center;
}
#Semi label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Semi label > input {
visibility: hidden;
}
#Semi label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#End-terrace {
text-align: center;
}
#End-terrace label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#End-terrace label > input {
visibility: hidden;
}
#End-terrace label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Mid-terrace {
text-align: center;
}
#Mid-terrace label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Mid-terrace label > input {
visibility: hidden;
}
#Mid-terrace label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#flat, #maisonette, #flat_rooms, #maisonette_rooms, #bung_det , #bung_gen, #park {
text-align: center;
}
#flat label, #maisonette label, #flat_rooms label, #maisonette_rooms label, #bung_det label, #bung_gen label, #park label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#flat label > input, #maisonette label > input, #flat_rooms label > input, #maisonette_rooms label > input, #bung_det label > input, #bung_gen label > input, #park label > input {
visibility: hidden;
}
#flat label > input + img, #maisonette label > input + img, #flat_rooms label > input + img, #maisonette_rooms label > input + img, #bung_det label > input + img, #bung_gen label > input + img, #park label > input + img {
cursor: pointer;
padding: 20px;
display: block;
width: 100%;
}
#filter_container .col-lg-3 {
margin-bottom: 150px;
}
#fl1 label > img, #fl2 label > img, #fl3 label > img, #fl4 label > img, #fl5 label > img {
}
#fl1 label > span, #fl2 label > span, #fl3 label > span, #fl4 label > span, #fl5 label > span {
display: block;
margin-top: 10px;
}
#fl1, #fl2, #fl3, #fl4, #fl5 {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
text-align: center;
margin: 10px;
height: 100%;
} | public/css/style.css | .clear {
clear: both;
}
.center {
text-align: center;
}
.box_shadow{
box-shadow: 2px 2px 15px 0px #ccc;
}
.btn-infinity {
color: #fff;
background-color: #024272;
border-color: #024272;
}
.btn-infinity:hover, .btn-infinity:focus, {
background-color: #021c2f;
border-color: #021c2f;
color: #fff;
}
.nav-main li.open > a.nav-submenu {
color: #021c2f;
}
.nav-main li.open > a.nav-submenu {
color: #fff;
}
.nav-main ul {
background-color: #ebf2f6;
}
.nav-main ul a {
color: #021c2f;
}
.nav-main ul a:hover, .nav-main ul a:focus {
color: #021c2f;
}
.nav-main a.active, .nav-main a.active:hover {
color: #fff;
background-color: #024272;
}
.dataTable tbody td a {
color: #646464 !important;
}
table tfoot {
display: table-header-group;
}
table a:hover {
text-decoration: underline!important;
}
.popover {
z-index: 99999;
}
/* Filter Overlay */
#filter-overlay {
position: fixed;
top: 0;
bottom: 0;
z-index: 1032;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-webkit-transition: all .28s ease-out;
transition: all .28s ease-out;
}
#filter-overlay {
position: fixed;
top: 0;
}
@media screen and (min-width: 992px) {
.side-scroll #filter-overlay {
overflow-y: hidden;
}
}
#filter-overlay {
background: #fff;
}
.sidebar-l #filter-overlay {
right: 0;
-webkit-transform: translateX(100%) translateY(0) translateZ(0);
transform: translateX(100%) translateY(0) translateZ(0);
}
.sidebar-r #filter-overlay {
left: 0;
-webkit-transform: translateX(-100%) translateY(0) translateZ(0);
}
@media screen and (max-width: 991px) {
#filter-overlay {
width: 100%;
opacity: 0;
}
.filter-overlay-o #filter-overlay {
opacity: 1;
-webkit-transform: translateX(0) translateY(0) translateZ(0);
}
}
@media screen and (min-width: 992px) {
#filter-overlay {
width: 320px;
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.sidebar-l #filter-overlay {
-webkit-transform: translateX(110%) translateY(0) translateZ(0);
-ms-transform: translateX(110%) translateY(0);
transform: translateX(110%) translateY(0) translateZ(0);
}
.sidebar-r #filter-overlay {
-webkit-transform: translateX(-110%) translateY(0) translateZ(0);
-ms-transform: translateX(-110%) translateY(0);
transform: translateX(-110%) translateY(0) translateZ(0);
}
}
.filter-overlay-o #filter-overlay {
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
-webkit-transform: translateX(0) translateY(0) translateZ(0);
-ms-transform: translateX(0) translateY(0);
transform: translateX(0) translateY(0) translateZ(0);
}
/* lead information */
.qcblock h3 {
display: inline;
}
.qcactions {
float: right;
margin-bottom: 1em;
}
.stage-container {
display: flex;
width: 100%;
justify-content: space-around;
align-items: center;
}
.stage-containers {
display: flex;
width: 100%;
justify-content: space-around;
align-items: center;
}
.stagestrip {
background: #e6e6e6;
width: 100%;
text-align: center;
padding: 6px;
white-space: nowrap;
position: relative;
color: #444;
transform: all 0.3s ease;
}
.stagestrips {
background: #e6e6e6;
width: 100%;
text-align: center;
padding: 6px;
white-space: nowrap;
position: relative;
color: #444;
transform: all 0.3s ease;
}
.stagestrip.active {
background: #1e953f;
color: #fff;
transform: all 0.3s ease;
}
.stagestrips.active {
background: #1e953f;
color: #fff;
transform: all 0.3s ease;
}
.stagestrip.active:after {
background: #1e953f;
}
.stagestrips.active:after {
background: #1e953f;
}
.stagestrip:after {
-moz-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
-webkit-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
content: '';
position: absolute;
top: 50%;
right: -7px;
width: 22px;
height: 22px;
z-index: 1;
border-radius: 0 0 0 25px;
}
.stagestrips:after {
-moz-transform: translateY(-50%) rotate(45deg);
-ms-transform: translateY(-50%) rotate(45deg);
-webkit-transform: translateY(-50%) rotate(45deg);
transform: translateY(-50%) rotate(45deg);
-webkit-box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
box-shadow: 1px -1px 0 1px #fff, 1px -1px 0 1px #fff;
content: '';
position: absolute;
top: 50%;
right: -7px;
width: 22px;
height: 22px;
z-index: 1;
border-radius: 0 0 0 25px;
}
.notes.well {
padding: 25px 19px 19px;
}
.notes {
height: 220px;
overflow-y: scroll;
}
.leadcomments {
display: block;
position: relative;
}
.commentoptions {
position: absolute;
top: -18px;
right: 0;
}
.commentoptionsdd {
position: absolute!important;
top: 0!important;
}
.filesul {
list-style-type: none;
padding: 0;
}
.filesli {
padding: 0.5em 1em;
border: 1px solid #e0e4e7;
margin-bottom: 5px;
position: relative;
word-wrap: break-word;
}
.success_list {
margin-left: 0;
}
.success_list li {
margin-bottom: 5px;
}
.btnfilesopt {
position: absolute;
top: 5px;
right: 5px;
}
/* employee modal */
.avatarcointainer {
position: absolute;
top: -69px;
right: 32px;
text-align: center;
margin: auto;
}
.avataremp-container {
position: relative;
}
#addavataremp {
-webkit-box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
box-shadow: 0px 2px 13px -5px rgba(0,0,0,0.75);
}
.img-avatar.img-avatar100 {
width: 100px;
height: 100px;
}
.avataremp-container .fa {
position: absolute;
top: 50%;
left: 50%;
color: #fff;
font-size: 30px;
background: rgba(0,0,0,.5);
padding: 35px;
border-radius: 50%;
transform: translate(-50%, -50%);
opacity: 0;
filter: alpha(opacity=0);
transition: .3s all;
}
.avataremp-container:hover .fa {
opacity: 1;
filter: alpha(opacity=1);
cursor: pointer !important;
}
.avataremp-container input {
position: absolute;
top: 0;
right: -9px;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
width: 115px;
height: 104px;
cursor: pointer!important;
}
span.select2.select2-container {
display: block!important;
width: 100%!important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
top: 5px !important;
}
.select2-container .select2-selection--single {
height: 36px !important;
border-radius: 0 !important;
border: 1px solid #e6e6e6 !important;
}
.leadowner {
margin-right: 10px;
}
.leadownerinfo, .leadcloserinfo {
position: relative;
padding: 5px;
font-weight: bold;
color: #3d4145;
}
.leadtransferowner {
padding: 15px!important;
width: 250px!important;
}
/*employee information */
.editavatarcontainer {
position: relative;
}
.editavatarcontainer:hover .fa {
opacity: 1;
filter: alpha(opacity=1);
cursor: pointer!important;
}
.editavatarcontainer .fa {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
transition: .3s all;
background: rgba(0,0,0,0.5);
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 30px;
opacity: 0;
filter: alpha(opacity=0);
}
.editavatarcontainer input {
position: absolute;
top: 0;
right: 0px;
margin: 0;
padding: 0;
font-size: 20px;
opacity: 0;
filter: alpha(opacity=0);
cursor: pointer!important;
width: 100%;
height: 100%;
}
/* dropzone */
.dropzone .dz-message {
margin: 0 !important;
}
.dropzone {
min-height: 0 !important;
padding: 5px !important;
}
.dropzone .form-group {
margin: 0;
}
.dropzone_success {
background-color: #46c37b !important;
}
.dropzone_success .dz-message {
color: #fff !important;
}
/* Form */
.col-sm-8 .col-xs-12 {
z-index: 9999;
}
ul.form-steps {
padding:0;
margin: 0;
}
.form-steps li {
float: left;
width: 20%;
list-style: none;
text-align: center;
padding: 20px;
background: #f1f1f1;
}
.form-steps li.active a {
color: #fff;
}
.form-steps li.active {
float: left;
list-style: none;
text-align: center;
padding: 20px;
background: #16a085;
}
#c1, #c2, #c3, #c4 {
text-align: center;
}
#c1 label, #c2 label, #c3 label, #c4 label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#c1 label > input, #c2 label > input, #c3 label > input, #c4 label > input {
visibility: hidden;
}
#c1 label > input + img, #c2 label > input + img, #c3 label > input + img, #c4 label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#c2 .col-lg-2 {
min-height: 265px;
}
#house {
text-align: center;
}
#house label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#house label > input {
visibility: hidden;
}
#house label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#bungalow {
text-align: center;
}
#bungalow label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#bungalow label > input {
visibility: hidden;
}
#bungalow label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Det {
text-align: center;
}
#Det label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Det label > input {
visibility: hidden;
}
#Det label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Semi {
text-align: center;
}
#Semi label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Semi label > input {
visibility: hidden;
}
#Semi label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#End-terrace {
text-align: center;
}
#End-terrace label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#End-terrace label > input {
visibility: hidden;
}
#End-terrace label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#Mid-terrace {
text-align: center;
}
#Mid-terrace label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#Mid-terrace label > input {
visibility: hidden;
}
#Mid-terrace label > input + img {
cursor: pointer;
padding: 20px;
display: block;
}
#flat, #maisonette, #flat_rooms, #maisonette_rooms, #bung_det , #bung_gen, #park {
text-align: center;
}
#flat label, #maisonette label, #flat_rooms label, #maisonette_rooms label, #bung_det label, #bung_gen label, #park label {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
}
#flat label > input, #maisonette label > input, #flat_rooms label > input, #maisonette_rooms label > input, #bung_det label > input, #bung_gen label > input, #park label > input {
visibility: hidden;
}
#flat label > input + img, #maisonette label > input + img, #flat_rooms label > input + img, #maisonette_rooms label > input + img, #bung_det label > input + img, #bung_gen label > input + img, #park label > input + img {
cursor: pointer;
padding: 20px;
display: block;
width: 100%;
}
#filter_container .col-lg-3 {
margin-bottom: 150px;
}
#fl1 label > img, #fl2 label > img, #fl3 label > img, #fl4 label > img, #fl5 label > img {
}
#fl1 label > span, #fl2 label > span, #fl3 label > span, #fl4 label > span, #fl5 label > span {
display: block;
margin-top: 10px;
}
#fl1, #fl2, #fl3, #fl4, #fl5 {
padding: 20px;
background-color: rgba(0, 0, 0, 0.03);
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05);
border-radius: 4px;
text-align: center;
margin: 10px;
height: 100%;
} | 0.310381 | 0.130009 |
*{
margin: 0;
padding: 0;
}
body{
font-family: sans-serif;
}
.navbar{
z-index: 999;
}
.navbar-nav li{
padding-left:20px;
padding-right:20px;
}
.navbar-nav li a{
color: #fff !important;
font-weight: 600;
text-transform: uppercase;
text-decoration: overline;
float: right;
text-align: left;
}
.fa-bars{
color: #fff;
font-size: 30px !important;
}
.navbar-toggler{
outline: none !important;
}
/*------------------------BANNER-------------------*/
.section{
position: relative;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.section h1{
text-align: center;
font-size: 4rem;
font-family: "Cookie";
background: rgba(0, 0, 0, 0.2);
font-weight: bold;
letter-spacing: 10px;
padding: 20px;
margin: 15px;
z-index: 1;
color: #fff !important;
text-transform: uppercase;
}
.section nav{
position: absolute;
top: 0;
left: 0;
width: 100%;
font-family: "Cookie";
font-size: 18px;
}
.video-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
}
/*----------------------VIR------------------*/
#vir{
margin-top: 50px;
margin-bottom: 50px;
}
.wraper{
box-shadow: 0 0 10px;
height: auto;
width: auto;
background: linear-gradient(to left, #FF0099, #493240);
color: #fff;
border-radius: 5%;
}
.img_wraper img{
border-radius: 2%;
}
.vir_title{
font-weight: 900;
padding: 80px;
padding-bottom: 10px;
}
.vir_text_1{
padding: 80px;
}
/*----------------------SERVICES------------------*/
#services{
padding: 80px 0;
background: #f8f9fa;
}
.service-img{
width: 300px;
height: 200px;
margin-top: 50px;
margin-bottom: 50px;
}
.services{
padding: 20px;
}
.services h4{
padding: 5px;
margin-top: 25px;
text-transform: uppercase;
}
.title::before{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 5px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(63px);
}
.title::after{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 10px;
width: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
display: block;
transform: translateY(8px);
}
/*----------------------ABOUT US------------------*/
#about_us{
background: white;
padding-bottom: 50px;
padding-top: 50px;
}
.about-title{
font-size: 40px;
font-weight: 600;
margin-top: 10%;
}
#about_us ul li{
margin: 10px 0;
}
#about_us ul{
margin-left: 20px;
}
.img-fluid{
margin-top: 70px;
}
/*----------------------GALLERY------------------*/
#gallery_bg{
background-image: url('../pictures/pl_3.jpg');
background-position: center;
background-attachment:fixed;
background-repeat: no-repeat;
background-size: cover;
width:100%;
height: 400px;
margin-bottom: 50px;
margin-top: 50px;
}
#gallery{
margin-top: 50px;
padding-bottom: 50px;
padding-left: 50px;
}
.img-responsive{
height: 200px;
width: 250px;
transition: transform 0.5s;
padding-top: 10px;
}
.img-responsive:hover{
transform: translateY(-10px);
}
/*----------------------SOCIAL MEDIA------------------*/
#social_media{
padding-bottom: 50px;
margin-bottom: 40px;
margin-top: 100px;
}
#social_media p{
font-size: 36px;
font-weight: 600;
margin-bottom: 30px;
}
.social-icons img{
width: 80px;
transition: 0.5s;
}
.social-icons a:hover img{
transform: translateY(-10px);
}
/*----------------------FOOTER------------------*/
#footer{
background-image: linear-gradient(to right, #FF0099, #493240);
color: #fff;
margin-bottom: -50px;
}
.wave{
width: 100%;
}
.footer-box{
padding: 20px;
padding-bottom: -50px;
}
.footer-box .form-control{
box-shadow: none !important;
border: none;
border-radius: 0;
margin-top: 25px;
max-width: 250px;
}
.footer-box .btn-primary{
box-shadow: none !important;
border: none;
border-radius: 0;
margin-top: 30px;
background-image: linear-gradient(to right, #493240, #FF0099);
}
hr{
background-color: #fff;
}
.crafted{
margin-bottom: 0;
padding-bottom: 20px;
text-align: center;
}
/*-----------MEDIA-----------------*/
@media screen and (max-width: 566px){
.section h1{
font-size: 1.5rem;
}
.title::before{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 5px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(50px);
}
.title::after{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 10px;
width: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
display: block;
transform: translateY(8px);
}
} | public/css/vir.css | *{
margin: 0;
padding: 0;
}
body{
font-family: sans-serif;
}
.navbar{
z-index: 999;
}
.navbar-nav li{
padding-left:20px;
padding-right:20px;
}
.navbar-nav li a{
color: #fff !important;
font-weight: 600;
text-transform: uppercase;
text-decoration: overline;
float: right;
text-align: left;
}
.fa-bars{
color: #fff;
font-size: 30px !important;
}
.navbar-toggler{
outline: none !important;
}
/*------------------------BANNER-------------------*/
.section{
position: relative;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}
.section h1{
text-align: center;
font-size: 4rem;
font-family: "Cookie";
background: rgba(0, 0, 0, 0.2);
font-weight: bold;
letter-spacing: 10px;
padding: 20px;
margin: 15px;
z-index: 1;
color: #fff !important;
text-transform: uppercase;
}
.section nav{
position: absolute;
top: 0;
left: 0;
width: 100%;
font-family: "Cookie";
font-size: 18px;
}
.video-container{
position: absolute;
top: 0;
left: 0;
width: 100%;
}
/*----------------------VIR------------------*/
#vir{
margin-top: 50px;
margin-bottom: 50px;
}
.wraper{
box-shadow: 0 0 10px;
height: auto;
width: auto;
background: linear-gradient(to left, #FF0099, #493240);
color: #fff;
border-radius: 5%;
}
.img_wraper img{
border-radius: 2%;
}
.vir_title{
font-weight: 900;
padding: 80px;
padding-bottom: 10px;
}
.vir_text_1{
padding: 80px;
}
/*----------------------SERVICES------------------*/
#services{
padding: 80px 0;
background: #f8f9fa;
}
.service-img{
width: 300px;
height: 200px;
margin-top: 50px;
margin-bottom: 50px;
}
.services{
padding: 20px;
}
.services h4{
padding: 5px;
margin-top: 25px;
text-transform: uppercase;
}
.title::before{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 5px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(63px);
}
.title::after{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 10px;
width: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
display: block;
transform: translateY(8px);
}
/*----------------------ABOUT US------------------*/
#about_us{
background: white;
padding-bottom: 50px;
padding-top: 50px;
}
.about-title{
font-size: 40px;
font-weight: 600;
margin-top: 10%;
}
#about_us ul li{
margin: 10px 0;
}
#about_us ul{
margin-left: 20px;
}
.img-fluid{
margin-top: 70px;
}
/*----------------------GALLERY------------------*/
#gallery_bg{
background-image: url('../pictures/pl_3.jpg');
background-position: center;
background-attachment:fixed;
background-repeat: no-repeat;
background-size: cover;
width:100%;
height: 400px;
margin-bottom: 50px;
margin-top: 50px;
}
#gallery{
margin-top: 50px;
padding-bottom: 50px;
padding-left: 50px;
}
.img-responsive{
height: 200px;
width: 250px;
transition: transform 0.5s;
padding-top: 10px;
}
.img-responsive:hover{
transform: translateY(-10px);
}
/*----------------------SOCIAL MEDIA------------------*/
#social_media{
padding-bottom: 50px;
margin-bottom: 40px;
margin-top: 100px;
}
#social_media p{
font-size: 36px;
font-weight: 600;
margin-bottom: 30px;
}
.social-icons img{
width: 80px;
transition: 0.5s;
}
.social-icons a:hover img{
transform: translateY(-10px);
}
/*----------------------FOOTER------------------*/
#footer{
background-image: linear-gradient(to right, #FF0099, #493240);
color: #fff;
margin-bottom: -50px;
}
.wave{
width: 100%;
}
.footer-box{
padding: 20px;
padding-bottom: -50px;
}
.footer-box .form-control{
box-shadow: none !important;
border: none;
border-radius: 0;
margin-top: 25px;
max-width: 250px;
}
.footer-box .btn-primary{
box-shadow: none !important;
border: none;
border-radius: 0;
margin-top: 30px;
background-image: linear-gradient(to right, #493240, #FF0099);
}
hr{
background-color: #fff;
}
.crafted{
margin-bottom: 0;
padding-bottom: 20px;
text-align: center;
}
/*-----------MEDIA-----------------*/
@media screen and (max-width: 566px){
.section h1{
font-size: 1.5rem;
}
.title::before{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 5px;
width: 200px;
margin-left: auto;
margin-right: auto;
display: block;
transform: translateY(50px);
}
.title::after{
content: '';
background: linear-gradient(to right, #FF0099, #493240);
height: 10px;
width: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 40px;
display: block;
transform: translateY(8px);
}
} | 0.439747 | 0.070945 |
body {
overflow: hidden;
background-color: DarkSeaGreen;
background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-size: 50px 50px;
}
/* line 25, ../sass/style.scss */
.icon {
position: absolute;
width: 180px;
height: 180px;
background: url(https://cdn1.iconfinder.com/data/icons/logotypes/32/circle-twitter-256.png) no-repeat;
background-size: 180px 180px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 3;
-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
/* border-radius: 50% has issues on some mobile browsers */
}
/* line 54, ../sass/style.scss */
.pulse1 {
position: absolute;
width: 200px;
height: 200px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 1;
opacity: 0;
border: 3px solid rgba(255, 255, 255, 0.1);
-webkit-animation: pulsejg1 4s linear infinite;
-moz-animation: pulsejg1 4s linear infinite;
animation: pulsejg1 4s linear infinite;
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
-webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 78, ../sass/style.scss */
.pulse2 {
position: absolute;
width: 200px;
height: 200px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
opacity: 0;
border: 1px solid rgba(255, 255, 255, 0);
-webkit-animation: pulsejg2 4s linear infinite;
-moz-animation: pulsejg2 4s linear infinite;
animation: pulsejg2 4s linear infinite;
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
-webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
-moz-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@-webkit-keyframes pulsejg1 {
0% {
-webkit-transform: scale(0.6);
opacity: 0;
}
50% {
-webkit-transform: scale(0.6);
opacity: 0;
}
60% {
-webkit-transform: scale(0.9);
opacity: .2;
}
70% {
-webkit-transform: scale(1.1);
opacity: .35;
}
80% {
-webkit-transform: scale(1.25);
opacity: .2;
}
100% {
-webkit-transform: scale(1.4);
opacity: 0;
}
}
@-moz-keyframes pulsejg1 {
0% {
-moz-transform: scale(0.6);
opacity: 0;
}
50% {
-moz-transform: scale(0.6);
opacity: 0;
}
60% {
-moz-transform: scale(0.9);
opacity: .2;
}
70% {
-moz-transform: scale(1.1);
opacity: .35;
}
80% {
-moz-transform: scale(1.25);
opacity: .2;
}
100% {
-moz-transform: scale(1.4);
opacity: 0;
}
}
@keyframes pulsejg1 {
0% {
transform: scale(0.6);
opacity: 0;
}
50% {
transform: scale(0.6);
opacity: 0;
}
60% {
transform: scale(0.9);
opacity: .1;
}
70% {
transform: scale(1.1);
opacity: .25;
}
80% {
transform: scale(1.25);
opacity: .1;
}
100% {
transform: scale(1.4);
opacity: 0;
}
}
@-webkit-keyframes pulsejg2 {
0% {
-webkit-transform: scale(0.6);
opacity: 0;
}
40% {
-webkit-transform: scale(0.8);
opacity: .05;
}
50% {
-webkit-transform: scale(1);
opacity: .1;
}
60% {
-webkit-transform: scale(1.1);
opacity: .3;
}
80% {
-webkit-transform: scale(1.2);
opacity: .1;
}
100% {
-webkit-transform: scale(1.3);
opacity: 0;
}
}
@-moz-keyframes pulsejg2 {
0% {
-moz-transform: scale(0.6);
opacity: 0;
}
40% {
-moz-transform: scale(0.8);
opacity: .05;
}
50% {
-moz-transform: scale(1);
opacity: .1;
}
60% {
-moz-transform: scale(1.1);
opacity: .3;
}
80% {
-moz-transform: scale(1.2);
opacity: .1;
}
100% {
-moz-transform: scale(1.3);
opacity: 0;
}
}
@keyframes pulsejg2 {
0% {
transform: scale(0.6);
opacity: 0;
}
40% {
transform: scale(0.8);
opacity: .05;
}
50% {
transform: scale(1);
opacity: .1;
}
60% {
transform: scale(1.1);
opacity: .3;
}
80% {
transform: scale(1.2);
opacity: .1;
}
100% {
transform: scale(1.3);
opacity: 0;
}
} | image-master/image35/stylesheets/style.css | body {
overflow: hidden;
background-color: DarkSeaGreen;
background-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-image: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 50%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 90%, transparent 75%, transparent);
background-size: 50px 50px;
}
/* line 25, ../sass/style.scss */
.icon {
position: absolute;
width: 180px;
height: 180px;
background: url(https://cdn1.iconfinder.com/data/icons/logotypes/32/circle-twitter-256.png) no-repeat;
background-size: 180px 180px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 3;
-webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
-moz-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 25px 2px rgba(0, 0, 0, 0.4), inset 0 0 0 15px rgba(255, 255, 155, 0.4);
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
/* border-radius: 50% has issues on some mobile browsers */
}
/* line 54, ../sass/style.scss */
.pulse1 {
position: absolute;
width: 200px;
height: 200px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 1;
opacity: 0;
border: 3px solid rgba(255, 255, 255, 0.1);
-webkit-animation: pulsejg1 4s linear infinite;
-moz-animation: pulsejg1 4s linear infinite;
animation: pulsejg1 4s linear infinite;
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
-webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
-moz-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, 0.6);
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
/* line 78, ../sass/style.scss */
.pulse2 {
position: absolute;
width: 200px;
height: 200px;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 2;
opacity: 0;
border: 1px solid rgba(255, 255, 255, 0);
-webkit-animation: pulsejg2 4s linear infinite;
-moz-animation: pulsejg2 4s linear infinite;
animation: pulsejg2 4s linear infinite;
-webkit-border-radius: 999px;
-moz-border-radius: 999px;
border-radius: 999px;
-webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
-moz-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, 0.8);
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
@-webkit-keyframes pulsejg1 {
0% {
-webkit-transform: scale(0.6);
opacity: 0;
}
50% {
-webkit-transform: scale(0.6);
opacity: 0;
}
60% {
-webkit-transform: scale(0.9);
opacity: .2;
}
70% {
-webkit-transform: scale(1.1);
opacity: .35;
}
80% {
-webkit-transform: scale(1.25);
opacity: .2;
}
100% {
-webkit-transform: scale(1.4);
opacity: 0;
}
}
@-moz-keyframes pulsejg1 {
0% {
-moz-transform: scale(0.6);
opacity: 0;
}
50% {
-moz-transform: scale(0.6);
opacity: 0;
}
60% {
-moz-transform: scale(0.9);
opacity: .2;
}
70% {
-moz-transform: scale(1.1);
opacity: .35;
}
80% {
-moz-transform: scale(1.25);
opacity: .2;
}
100% {
-moz-transform: scale(1.4);
opacity: 0;
}
}
@keyframes pulsejg1 {
0% {
transform: scale(0.6);
opacity: 0;
}
50% {
transform: scale(0.6);
opacity: 0;
}
60% {
transform: scale(0.9);
opacity: .1;
}
70% {
transform: scale(1.1);
opacity: .25;
}
80% {
transform: scale(1.25);
opacity: .1;
}
100% {
transform: scale(1.4);
opacity: 0;
}
}
@-webkit-keyframes pulsejg2 {
0% {
-webkit-transform: scale(0.6);
opacity: 0;
}
40% {
-webkit-transform: scale(0.8);
opacity: .05;
}
50% {
-webkit-transform: scale(1);
opacity: .1;
}
60% {
-webkit-transform: scale(1.1);
opacity: .3;
}
80% {
-webkit-transform: scale(1.2);
opacity: .1;
}
100% {
-webkit-transform: scale(1.3);
opacity: 0;
}
}
@-moz-keyframes pulsejg2 {
0% {
-moz-transform: scale(0.6);
opacity: 0;
}
40% {
-moz-transform: scale(0.8);
opacity: .05;
}
50% {
-moz-transform: scale(1);
opacity: .1;
}
60% {
-moz-transform: scale(1.1);
opacity: .3;
}
80% {
-moz-transform: scale(1.2);
opacity: .1;
}
100% {
-moz-transform: scale(1.3);
opacity: 0;
}
}
@keyframes pulsejg2 {
0% {
transform: scale(0.6);
opacity: 0;
}
40% {
transform: scale(0.8);
opacity: .05;
}
50% {
transform: scale(1);
opacity: .1;
}
60% {
transform: scale(1.1);
opacity: .3;
}
80% {
transform: scale(1.2);
opacity: .1;
}
100% {
transform: scale(1.3);
opacity: 0;
}
} | 0.501221 | 0.090093 |
body{
font-size:15px;
}
.campo{
height: 260px;
display:block;
width:100%;
}
.corpo{
width:200px;
height:200px;
border-radius: 100px;
background-color:#162057;
border-color: black;
border: 3px solid;
position:absolute;
top:250px;
}
#c1{
left:100px;
}
#c2{
left:400px;
}
.line {
position:relative;
top:90px;
height:20px;
display:block;
background-image: url('../img/arrowbg.png');
opacity: 1;
background-position: left;
}
.arrowright{
background-position: right;
}
#fieldline {
position:absolute;
display: block;
top:450px;
height:3px;
left:-40px;
width:110%;
background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0), rgba(0,0,0,0)); /* Standard syntax */
}
/*CONTROL STYLE*/
h4{
font-size:1.5em;
text-align:center;
margin-top: -10px;
background-color: white;
width:150px;
}
.controls {
padding-left: 10px;
padding-right: 10px;
padding-top: -40px;
margin-top:15px;
border: 2px solid;
border-color: black;
border-radius: 10px;
height:180px;
}
.corpo1 {
border-color: #29b6f6;
}
.corpo2{
border-color: #fb8c00;
}
h3 {
font-size:5em;
text-align: center;
}
h3 span.index{
top:7px;
font-style: italic;
font-size:0.7em;
position:relative;
}
h3 span.pos{
font-style: italic;
font-size:0.9em;
font-weight: 300;
}
.cartesio {
background-image: url(../img/decartes.png);
background-repeat: no-repeat;
background-position: bottom right;
background-size: 30%;
}
.newton, .newton1, .newton2 {
background-image: url(../img/newton.png);
background-repeat: no-repeat;
background-position: bottom right;
background-size: 30%;
}
/* ombre */
.corpo, .controls {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
/*SOLUZIONI*/
.soluzione {
width:100%;
height:400px;
display:block;
background-repeat:no-repeat;
background-position: center center;
background-size: contain;
}
.soluzione0{
background-image: url('../img/caso0.png');
}
.soluzione1{
background-image: url('../img/caso1.png');
}
.soluzione2{
background-image: url('../img/caso2.png');
}
.soluzione3{
background-image: url('../img/caso3.png');
}
.soluzione4{
background-image: url('../img/caso4.png');
}
.soluzione5{
background-image: url('../img/caso5.png');
}
.soluzione6{
background-image: url('../img/caso6.png');
}
.soluzione7{
background-image: url('../img/caso7.png');
}
.soluzione8{
background-image: url('../img/caso8.png');
}
.soluzione9{
background-image: url('../img/caso9.png');
}
.soluzione10{
background-image: url('../img/caso10.png');
}
.soluzione11{
background-image: url('../img/caso11.png');
}
.soluzione12{
background-image: url('../img/caso12.png');
} | css/cartesio.css | body{
font-size:15px;
}
.campo{
height: 260px;
display:block;
width:100%;
}
.corpo{
width:200px;
height:200px;
border-radius: 100px;
background-color:#162057;
border-color: black;
border: 3px solid;
position:absolute;
top:250px;
}
#c1{
left:100px;
}
#c2{
left:400px;
}
.line {
position:relative;
top:90px;
height:20px;
display:block;
background-image: url('../img/arrowbg.png');
opacity: 1;
background-position: left;
}
.arrowright{
background-position: right;
}
#fieldline {
position:absolute;
display: block;
top:450px;
height:3px;
left:-40px;
width:110%;
background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0.5), rgba(0,0,0,0), rgba(0,0,0,0)); /* Standard syntax */
}
/*CONTROL STYLE*/
h4{
font-size:1.5em;
text-align:center;
margin-top: -10px;
background-color: white;
width:150px;
}
.controls {
padding-left: 10px;
padding-right: 10px;
padding-top: -40px;
margin-top:15px;
border: 2px solid;
border-color: black;
border-radius: 10px;
height:180px;
}
.corpo1 {
border-color: #29b6f6;
}
.corpo2{
border-color: #fb8c00;
}
h3 {
font-size:5em;
text-align: center;
}
h3 span.index{
top:7px;
font-style: italic;
font-size:0.7em;
position:relative;
}
h3 span.pos{
font-style: italic;
font-size:0.9em;
font-weight: 300;
}
.cartesio {
background-image: url(../img/decartes.png);
background-repeat: no-repeat;
background-position: bottom right;
background-size: 30%;
}
.newton, .newton1, .newton2 {
background-image: url(../img/newton.png);
background-repeat: no-repeat;
background-position: bottom right;
background-size: 30%;
}
/* ombre */
.corpo, .controls {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
/*SOLUZIONI*/
.soluzione {
width:100%;
height:400px;
display:block;
background-repeat:no-repeat;
background-position: center center;
background-size: contain;
}
.soluzione0{
background-image: url('../img/caso0.png');
}
.soluzione1{
background-image: url('../img/caso1.png');
}
.soluzione2{
background-image: url('../img/caso2.png');
}
.soluzione3{
background-image: url('../img/caso3.png');
}
.soluzione4{
background-image: url('../img/caso4.png');
}
.soluzione5{
background-image: url('../img/caso5.png');
}
.soluzione6{
background-image: url('../img/caso6.png');
}
.soluzione7{
background-image: url('../img/caso7.png');
}
.soluzione8{
background-image: url('../img/caso8.png');
}
.soluzione9{
background-image: url('../img/caso9.png');
}
.soluzione10{
background-image: url('../img/caso10.png');
}
.soluzione11{
background-image: url('../img/caso11.png');
}
.soluzione12{
background-image: url('../img/caso12.png');
} | 0.315947 | 0.07521 |
@charset "utf-8";
@IMPORT url("3rd/animate.css");
@IMPORT url("3rd/widgets.css");
html {
font-size: 14px;
position: relative;
height: 100%;
width: 100%
}
body {
padding: 0;
margin: 0;
color: #666;
font: 14px/150% "Lucida Grande", Lucida Sans Unicode, Hiragino Sans GB, WenQuanYi Micro Hei, Verdana, Aril, sans-serif;
-webkit-text-size-adjust: none;
-webkit-font-smoothing: antialiased
}
ul {
margin: 0;
padding: 0
}
li {
list-style: none
}
a {
blr: expression(this.onFocus=this.blur());
cursor: pointer;
text-decoration: none
}
a, button, input {
outline: none !important
}
a {
text-decoration: none !important
}
embed {
display: none
}
.iframe-wrap {
position: absolute;
left: -10000px;
top: -10000px
}
body {
background-image: url("../images/bg.jpg");
background-size: 100% 100%;
background-color: #1c1c1c;
background-repeat: no-repeat
}
.box-n5 {
background-image: url("../images/logo-zimuzu.jpg")
}
.box-n5:before {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-image: url("../images/logo-zimuzu-hover.jpg")
}
.box-n1 {
background-image: url("../images/phonebg.jpg")
}
.box-n2 {
background-image: url("../images/iosbg.jpg")
}
.box-n9 {
background-image: url("../images/macbg.jpg")
}
.bg-re-l1 {
background-color: #fad1d1 !important
}
.bg-re-l2 {
background-color: #f5a3a3 !important
}
.bg-re-l3 {
background-color: #f07575 !important
}
.bg-re-l4 {
background-color: #eb4747 !important
}
.bg-re-l5 {
background-color: #e61919 !important
}
.bg-re-l6 {
background-color: #b81414 !important
}
.bg-re-l7 {
background-color: #8a0f0f !important
}
.bg-re-l8 {
background-color: #5c0a0a !important
}
.bg-re-l9 {
background-color: #2e0505 !important
}
.bg-re-m1 {
background-color: #f2d9d9 !important
}
.bg-re-m2 {
background-color: #e6b3b3 !important
}
.bg-re-m3 {
background-color: #d98c8c !important
}
.bg-re-m4 {
background-color: #cc6666 !important
}
.bg-re-m5 {
background-color: #bf4040 !important
}
.bg-re-m6 {
background-color: #993333 !important
}
.bg-re-m7 {
background-color: #732626 !important
}
.bg-re-m8 {
background-color: #4d1919 !important
}
.bg-re-m9 {
background-color: #260d0d !important
}
.bg-re-d1 {
background-color: #ebe0e0 !important
}
.bg-re-d2 {
background-color: #d6c2c2 !important
}
.bg-re-d3 {
background-color: #c2a3a3 !important
}
.bg-re-d4 {
background-color: #ad8585 !important
}
.bg-re-d5 {
background-color: #996666 !important
}
.bg-re-d6 {
background-color: #7a5252 !important
}
.bg-re-d7 {
background-color: #5c3d3d !important
}
.bg-re-d8 {
background-color: #3d2929 !important
}
.bg-re-d9 {
background-color: #1f1414 !important
}
.bg-re-l1 {
background-color: #fad1d1 !important
}
.bg-re-l2 {
background-color: #f5a3a3 !important
}
.bg-re-l3 {
background-color: #f07575 !important
}
.bg-re-l4 {
background-color: #eb4747 !important
}
.bg-re-l5 {
background-color: #e61919 !important
}
.bg-re-l6 {
background-color: #b81414 !important
}
.bg-re-l7 {
background-color: #8a0f0f !important
}
.bg-re-l8 {
background-color: #5c0a0a !important
}
.bg-re-l9 {
background-color: #2e0505 !important
}
.bg-re-m1 {
background-color: #f2d9d9 !important
}
.bg-re-m2 {
background-color: #e6b3b3 !important
}
.bg-re-m3 {
background-color: #d98c8c !important
}
.bg-re-m4 {
background-color: #cc6666 !important
}
.bg-re-m5 {
background-color: #bf4040 !important
}
.bg-re-m6 {
background-color: #993333 !important
}
.bg-re-m7 {
background-color: #732626 !important
}
.bg-re-m8 {
background-color: #4d1919 !important
}
.bg-re-m9 {
background-color: #260d0d !important
}
.bg-re-d1 {
background-color: #ebe0e0 !important
}
.bg-re-d2 {
background-color: #d6c2c2 !important
}
.bg-re-d3 {
background-color: #c2a3a3 !important
}
.bg-re-d4 {
background-color: #ad8585 !important
}
.bg-re-d5 {
background-color: #996666 !important
}
.bg-re-d6 {
background-color: #7a5252 !important
}
.bg-re-d7 {
background-color: #5c3d3d !important
}
.bg-re-d8 {
background-color: #3d2929 !important
}
.bg-re-d9 {
background-color: #1f1414 !important
}
.bg-ro-l1 {
background-color: #fadbd1 !important
}
.bg-ro-l2 {
background-color: #f5b8a3 !important
}
.bg-ro-l3 {
background-color: #f09475 !important
}
.bg-ro-l4 {
background-color: #eb7047 !important
}
.bg-ro-l5 {
background-color: #e64d19 !important
}
.bg-ro-l6 {
background-color: #b83d14 !important
}
.bg-ro-l7 {
background-color: #8a2e0f !important
}
.bg-ro-l8 {
background-color: #5c1f0a !important
}
.bg-ro-l9 {
background-color: #2e0f05 !important
}
.bg-ro-m1 {
background-color: #f2dfd9 !important
}
.bg-ro-m2 {
background-color: #e6bfb3 !important
}
.bg-ro-m3 {
background-color: #d99f8c !important
}
.bg-ro-m4 {
background-color: #cc7f66 !important
}
.bg-ro-m5 {
background-color: #bf6040 !important
}
.bg-ro-m6 {
background-color: #994d33 !important
}
.bg-ro-m7 {
background-color: #733926 !important
}
.bg-ro-m8 {
background-color: #4d2619 !important
}
.bg-ro-m9 {
background-color: #26130d !important
}
.bg-ro-d1 {
background-color: #ebe3e0 !important
}
.bg-ro-d2 {
background-color: #d6c7c2 !important
}
.bg-ro-d3 {
background-color: #c2aba3 !important
}
.bg-ro-d4 {
background-color: #ad8f85 !important
}
.bg-ro-d5 {
background-color: #997366 !important
}
.bg-ro-d6 {
background-color: #7a5c52 !important
}
.bg-ro-d7 {
background-color: #5c453d !important
}
.bg-ro-d8 {
background-color: #3d2e29 !important
}
.bg-ro-d9 {
background-color: #1f1714 !important
}
.bg-or-l1 {
background-color: #fae6d1 !important
}
.bg-or-l2 {
background-color: #f5cca3 !important
}
.bg-or-l3 {
background-color: #f0b375 !important
}
.bg-or-l4 {
background-color: #eb9947 !important
}
.bg-or-l5 {
background-color: #e68019 !important
}
.bg-or-l6 {
background-color: #b86614 !important
}
.bg-or-l7 {
background-color: #8a4d0f !important
}
.bg-or-l8 {
background-color: #5c330a !important
}
.bg-or-l9 {
background-color: #2e1905 !important
}
.bg-or-m1 {
background-color: #f2e6d9 !important
}
.bg-or-m2 {
background-color: #e6ccb3 !important
}
.bg-or-m3 {
background-color: #d9b38c !important
}
.bg-or-m4 {
background-color: #cc9966 !important
}
.bg-or-m5 {
background-color: #bf8040 !important
}
.bg-or-m6 {
background-color: #996633 !important
}
.bg-or-m7 {
background-color: #734d26 !important
}
.bg-or-m8 {
background-color: #4d3319 !important
}
.bg-or-m9 {
background-color: #26190d !important
}
.bg-or-d1 {
background-color: #ebe6e0 !important
}
.bg-or-d2 {
background-color: #d6ccc2 !important
}
.bg-or-d3 {
background-color: #c2b3a3 !important
}
.bg-or-d4 {
background-color: #ad9985 !important
}
.bg-or-d5 {
background-color: #998066 !important
}
.bg-or-d6 {
background-color: #7a6652 !important
}
.bg-or-d7 {
background-color: #5c4d3d !important
}
.bg-or-d8 {
background-color: #3d3329 !important
}
.bg-or-d9 {
background-color: #1f1914 !important
}
.bg-oy-l1 {
background-color: #faf0d1 !important
}
.bg-oy-l2 {
background-color: #f5e0a3 !important
}
.bg-oy-l3 {
background-color: #f0d175 !important
}
.bg-oy-l4 {
background-color: #ebc247 !important
}
.bg-oy-l5 {
background-color: #e6b319 !important
}
.bg-oy-l6 {
background-color: #b88f14 !important
}
.bg-oy-l7 {
background-color: #8a6b0f !important
}
.bg-oy-l8 {
background-color: #5c470a !important
}
.bg-oy-l9 {
background-color: #2e2405 !important
}
.bg-oy-m1 {
background-color: #f2ecd9 !important
}
.bg-oy-m2 {
background-color: #e6d9b3 !important
}
.bg-oy-m3 {
background-color: #d9c68c !important
}
.bg-oy-m4 {
background-color: #ccb366 !important
}
.bg-oy-m5 {
background-color: #bf9f40 !important
}
.bg-oy-m6 {
background-color: #998033 !important
}
.bg-oy-m7 {
background-color: #736026 !important
}
.bg-oy-m8 {
background-color: #4d4019 !important
}
.bg-oy-m9 {
background-color: #26200d !important
}
.bg-oy-d1 {
background-color: #ebe8e0 !important
}
.bg-oy-d2 {
background-color: #d6d1c2 !important
}
.bg-oy-d3 {
background-color: #c2baa3 !important
}
.bg-oy-d4 {
background-color: #ada385 !important
}
.bg-oy-d5 {
background-color: #998c66 !important
}
.bg-oy-d6 {
background-color: #7a7052 !important
}
.bg-oy-d7 {
background-color: #5c543d !important
}
.bg-oy-d8 {
background-color: #3d3829 !important
}
.bg-oy-d9 {
background-color: #1f1c14 !important
}
.bg-ye-l1 {
background-color: #fafad1 !important
}
.bg-ye-l2 {
background-color: #f5f5a3 !important
}
.bg-ye-l3 {
background-color: #f0f075 !important
}
.bg-ye-l4 {
background-color: #ebeb47 !important
}
.bg-ye-l5 {
background-color: #e5e619 !important
}
.bg-ye-l6 {
background-color: #b8b814 !important
}
.bg-ye-l7 {
background-color: #8a8a0f !important
}
.bg-ye-l8 {
background-color: #5c5c0a !important
}
.bg-ye-l9 {
background-color: #2e2e05 !important
}
.bg-ye-m1 {
background-color: #f2f2d9 !important
}
.bg-ye-m2 {
background-color: #e5e6b3 !important
}
.bg-ye-m3 {
background-color: #d9d98c !important
}
.bg-ye-m4 {
background-color: #cccc66 !important
}
.bg-ye-m5 {
background-color: #bfbf40 !important
}
.bg-ye-m6 {
background-color: #999933 !important
}
.bg-ye-m7 {
background-color: #737326 !important
}
.bg-ye-m8 {
background-color: #4d4d19 !important
}
.bg-ye-m9 {
background-color: #26260d !important
}
.bg-ye-d1 {
background-color: #ebebe0 !important
}
.bg-ye-d2 {
background-color: #d6d6c2 !important
}
.bg-ye-d3 {
background-color: #c2c2a3 !important
}
.bg-ye-d4 {
background-color: #adad85 !important
}
.bg-ye-d5 {
background-color: #999966 !important
}
.bg-ye-d6 {
background-color: #7a7a52 !important
}
.bg-ye-d7 {
background-color: #5c5c3d !important
}
.bg-ye-d8 {
background-color: #3d3d29 !important
}
.bg-ye-d9 {
background-color: #1f1f14 !important
}
.bg-yc-l1 {
background-color: #f0fad1 !important
}
.bg-yc-l2 {
background-color: #e0f5a3 !important
}
.bg-yc-l3 {
background-color: #d1f075 !important
}
.bg-yc-l4 {
background-color: #c2eb47 !important
}
.bg-yc-l5 {
background-color: #b3e619 !important
}
.bg-yc-l6 {
background-color: #8fb814 !important
}
.bg-yc-l7 {
background-color: #6b8a0f !important
}
.bg-yc-l8 {
background-color: #475c0a !important
}
.bg-yc-l9 {
background-color: #242e05 !important
}
.bg-yc-m1 {
background-color: #ecf2d9 !important
}
.bg-yc-m2 {
background-color: #d9e6b3 !important
}
.bg-yc-m3 {
background-color: #c6d98c !important
}
.bg-yc-m4 {
background-color: #b3cc66 !important
}
.bg-yc-m5 {
background-color: #9fbf40 !important
}
.bg-yc-m6 {
background-color: #809933 !important
}
.bg-yc-m7 {
background-color: #607326 !important
}
.bg-yc-m8 {
background-color: #404d19 !important
}
.bg-yc-m9 {
background-color: #20260d !important
}
.bg-yc-d1 {
background-color: #e8ebe0 !important
}
.bg-yc-d2 {
background-color: #d1d6c2 !important
}
.bg-yc-d3 {
background-color: #bac2a3 !important
}
.bg-yc-d4 {
background-color: #a3ad85 !important
}
.bg-yc-d5 {
background-color: #8c9966 !important
}
.bg-yc-d6 {
background-color: #707a52 !important
}
.bg-yc-d7 {
background-color: #545c3d !important
}
.bg-yc-d8 {
background-color: #383d29 !important
}
.bg-yc-d9 {
background-color: #1c1f14 !important
}
.bg-ch-l1 {
background-color: #e6fad1 !important
}
.bg-ch-l2 {
background-color: #ccf5a3 !important
}
.bg-ch-l3 {
background-color: #b3f075 !important
}
.bg-ch-l4 {
background-color: #99eb47 !important
}
.bg-ch-l5 {
background-color: #80e619 !important
}
.bg-ch-l6 {
background-color: #66b814 !important
}
.bg-ch-l7 {
background-color: #4d8a0f !important
}
.bg-ch-l8 {
background-color: #335c0a !important
}
.bg-ch-l9 {
background-color: #1a2e05 !important
}
.bg-ch-m1 {
background-color: #e6f2d9 !important
}
.bg-ch-m2 {
background-color: #cce6b3 !important
}
.bg-ch-m3 {
background-color: #b3d98c !important
}
.bg-ch-m4 {
background-color: #99cc66 !important
}
.bg-ch-m5 {
background-color: #80bf40 !important
}
.bg-ch-m6 {
background-color: #669933 !important
}
.bg-ch-m7 {
background-color: #4d7326 !important
}
.bg-ch-m8 {
background-color: #334d19 !important
}
.bg-ch-m9 {
background-color: #1a260d !important
}
.bg-ch-d1 {
background-color: #e6ebe0 !important
}
.bg-ch-d2 {
background-color: #ccd6c2 !important
}
.bg-ch-d3 {
background-color: #b3c2a3 !important
}
.bg-ch-d4 {
background-color: #99ad85 !important
}
.bg-ch-d5 {
background-color: #809966 !important
}
.bg-ch-d6 {
background-color: #667a52 !important
}
.bg-ch-d7 {
background-color: #4d5c3d !important
}
.bg-ch-d8 {
background-color: #333d29 !important
}
.bg-ch-d9 {
background-color: #191f14 !important
}
.bg-cg-l1 {
background-color: #dbfad1 !important
}
.bg-cg-l2 {
background-color: #b8f5a3 !important
}
.bg-cg-l3 {
background-color: #94f075 !important
}
.bg-cg-l4 {
background-color: #70eb47 !important
}
.bg-cg-l5 {
background-color: #4ce619 !important
}
.bg-cg-l6 {
background-color: #3db814 !important
}
.bg-cg-l7 {
background-color: #2e8a0f !important
}
.bg-cg-l8 {
background-color: #1f5c0a !important
}
.bg-cg-l9 {
background-color: #0f2e05 !important
}
.bg-cg-m1 {
background-color: #dff2d9 !important
}
.bg-cg-m2 {
background-color: #bfe6b3 !important
}
.bg-cg-m3 {
background-color: #9fd98c !important
}
.bg-cg-m4 {
background-color: #7fcc66 !important
}
.bg-cg-m5 {
background-color: #60bf40 !important
}
.bg-cg-m6 {
background-color: #4c9933 !important
}
.bg-cg-m7 {
background-color: #397326 !important
}
.bg-cg-m8 {
background-color: #264d19 !important
}
.bg-cg-m9 {
background-color: #13260d !important
}
.bg-cg-d1 {
background-color: #e3ebe0 !important
}
.bg-cg-d2 {
background-color: #c7d6c2 !important
}
.bg-cg-d3 {
background-color: #abc2a3 !important
}
.bg-cg-d4 {
background-color: #8fad85 !important
}
.bg-cg-d5 {
background-color: #739966 !important
}
.bg-cg-d6 {
background-color: #5c7a52 !important
}
.bg-cg-d7 {
background-color: #455c3d !important
}
.bg-cg-d8 {
background-color: #2e3d29 !important
}
.bg-cg-d9 {
background-color: #171f14 !important
}
.bg-gr-l1 {
background-color: #d1fad1 !important
}
.bg-gr-l2 {
background-color: #a3f5a3 !important
}
.bg-gr-l3 {
background-color: #75f075 !important
}
.bg-gr-l4 {
background-color: #47eb47 !important
}
.bg-gr-l5 {
background-color: #19e619 !important
}
.bg-gr-l6 {
background-color: #14b814 !important
}
.bg-gr-l7 {
background-color: #0f8a0f !important
}
.bg-gr-l8 {
background-color: #0a5c0a !important
}
.bg-gr-l9 {
background-color: #052e05 !important
}
.bg-gr-m1 {
background-color: #d9f2d9 !important
}
.bg-gr-m2 {
background-color: #b3e6b3 !important
}
.bg-gr-m3 {
background-color: #8cd98c !important
}
.bg-gr-m4 {
background-color: #66cc66 !important
}
.bg-gr-m5 {
background-color: #40bf40 !important
}
.bg-gr-m6 {
background-color: #339933 !important
}
.bg-gr-m7 {
background-color: #267326 !important
}
.bg-gr-m8 {
background-color: #194d19 !important
}
.bg-gr-m9 {
background-color: #0d260d !important
}
.bg-gr-d1 {
background-color: #e0ebe0 !important
}
.bg-gr-d2 {
background-color: #c2d6c2 !important
}
.bg-gr-d3 {
background-color: #a3c2a3 !important
}
.bg-gr-d4 {
background-color: #85ad85 !important
}
.bg-gr-d5 {
background-color: #669966 !important
}
.bg-gr-d6 {
background-color: #527a52 !important
}
.bg-gr-d7 {
background-color: #3d5c3d !important
}
.bg-gr-d8 {
background-color: #293d29 !important
}
.bg-gr-d9 {
background-color: #141f14 !important
}
.bg-ga-l1 {
background-color: #d1fadb !important
}
.bg-ga-l2 {
background-color: #a3f5b8 !important
}
.bg-ga-l3 {
background-color: #75f094 !important
}
.bg-ga-l4 {
background-color: #47eb70 !important
}
.bg-ga-l5 {
background-color: #19e64d !important
}
.bg-ga-l6 {
background-color: #14b83d !important
}
.bg-ga-l7 {
background-color: #0f8a2e !important
}
.bg-ga-l8 {
background-color: #0a5c1f !important
}
.bg-ga-l9 {
background-color: #052e0f !important
}
.bg-ga-m1 {
background-color: #d9f2df !important
}
.bg-ga-m2 {
background-color: #b3e6bf !important
}
.bg-ga-m3 {
background-color: #8cd99f !important
}
.bg-ga-m4 {
background-color: #66cc80 !important
}
.bg-ga-m5 {
background-color: #40bf60 !important
}
.bg-ga-m6 {
background-color: #33994d !important
}
.bg-ga-m7 {
background-color: #267339 !important
}
.bg-ga-m8 {
background-color: #194d26 !important
}
.bg-ga-m9 {
background-color: #0d2613 !important
}
.bg-ga-d1 {
background-color: #e0ebe3 !important
}
.bg-ga-d2 {
background-color: #c2d6c7 !important
}
.bg-ga-d3 {
background-color: #a3c2ab !important
}
.bg-ga-d4 {
background-color: #85ad8f !important
}
.bg-ga-d5 {
background-color: #669973 !important
}
.bg-ga-d6 {
background-color: #527a5c !important
}
.bg-ga-d7 {
background-color: #3d5c45 !important
}
.bg-ga-d8 {
background-color: #293d2e !important
}
.bg-ga-d9 {
background-color: #141f17 !important
}
.bg-aq-l1 {
background-color: #d1fae6 !important
}
.bg-aq-l2 {
background-color: #a3f5cc !important
}
.bg-aq-l3 {
background-color: #75f0b3 !important
}
.bg-aq-l4 {
background-color: #47eb99 !important
}
.bg-aq-l5 {
background-color: #19e680 !important
}
.bg-aq-l6 {
background-color: #14b866 !important
}
.bg-aq-l7 {
background-color: #0f8a4d !important
}
.bg-aq-l8 {
background-color: #0a5c33 !important
}
.bg-aq-l9 {
background-color: #052e1a !important
}
.bg-aq-m1 {
background-color: #d9f2e6 !important
}
.bg-aq-m2 {
background-color: #b3e6cc !important
}
.bg-aq-m3 {
background-color: #8cd9b3 !important
}
.bg-aq-m4 {
background-color: #66cc99 !important
}
.bg-aq-m5 {
background-color: #40bf80 !important
}
.bg-aq-m6 {
background-color: #339966 !important
}
.bg-aq-m7 {
background-color: #26734d !important
}
.bg-aq-m8 {
background-color: #194d33 !important
}
.bg-aq-m9 {
background-color: #0d261a !important
}
.bg-aq-d1 {
background-color: #e0ebe6 !important
}
.bg-aq-d2 {
background-color: #c2d6cc !important
}
.bg-aq-d3 {
background-color: #a3c2b3 !important
}
.bg-aq-d4 {
background-color: #85ad99 !important
}
.bg-aq-d5 {
background-color: #669980 !important
}
.bg-aq-d6 {
background-color: #527a66 !important
}
.bg-aq-d7 {
background-color: #3d5c4d !important
}
.bg-aq-d8 {
background-color: #293d33 !important
}
.bg-aq-d9 {
background-color: #141f19 !important
}
.bg-ac-l1 {
background-color: #d1faf0 !important
}
.bg-ac-l2 {
background-color: #a3f5e0 !important
}
.bg-ac-l3 {
background-color: #75f0d1 !important
}
.bg-ac-l4 {
background-color: #47ebc2 !important
}
.bg-ac-l5 {
background-color: #19e6b3 !important
}
.bg-ac-l6 {
background-color: #14b88f !important
}
.bg-ac-l7 {
background-color: #0f8a6b !important
}
.bg-ac-l8 {
background-color: #0a5c47 !important
}
.bg-ac-l9 {
background-color: #052e24 !important
}
.bg-ac-m1 {
background-color: #d9f2ec !important
}
.bg-ac-m2 {
background-color: #b3e6d9 !important
}
.bg-ac-m3 {
background-color: #8cd9c6 !important
}
.bg-ac-m4 {
background-color: #66ccb3 !important
}
.bg-ac-m5 {
background-color: #40bf9f !important
}
.bg-ac-m6 {
background-color: #339980 !important
}
.bg-ac-m7 {
background-color: #267360 !important
}
.bg-ac-m8 {
background-color: #194d40 !important
}
.bg-ac-m9 {
background-color: #0d2620 !important
}
.bg-ac-d1 {
background-color: #e0ebe8 !important
}
.bg-ac-d2 {
background-color: #c2d6d1 !important
}
.bg-ac-d3 {
background-color: #a3c2ba !important
}
.bg-ac-d4 {
background-color: #85ada3 !important
}
.bg-ac-d5 {
background-color: #66998c !important
}
.bg-ac-d6 {
background-color: #527a70 !important
}
.bg-ac-d7 {
background-color: #3d5c54 !important
}
.bg-ac-d8 {
background-color: #293d38 !important
}
.bg-ac-d9 {
background-color: #141f1c !important
}
.bg-cy-l1 {
background-color: #d1fafa !important
}
.bg-cy-l2 {
background-color: #a3f5f5 !important
}
.bg-cy-l3 {
background-color: #75f0f0 !important
}
.bg-cy-l4 {
background-color: #47ebeb !important
}
.bg-cy-l5 {
background-color: #19e5e6 !important
}
.bg-cy-l6 {
background-color: #14b8b8 !important
}
.bg-cy-l7 {
background-color: #0f8a8a !important
}
.bg-cy-l8 {
background-color: #0a5c5c !important
}
.bg-cy-l9 {
background-color: #052e2e !important
}
.bg-cy-m1 {
background-color: #d9f2f2 !important
}
.bg-cy-m2 {
background-color: #b3e5e6 !important
}
.bg-cy-m3 {
background-color: #8cd9d9 !important
}
.bg-cy-m4 {
background-color: #66cccc !important
}
.bg-cy-m5 {
background-color: #40bfbf !important
}
.bg-cy-m6 {
background-color: #339999 !important
}
.bg-cy-m7 {
background-color: #267373 !important
}
.bg-cy-m8 {
background-color: #194d4d !important
}
.bg-cy-m9 {
background-color: #0d2626 !important
}
.bg-cy-d1 {
background-color: #e0ebeb !important
}
.bg-cy-d2 {
background-color: #c2d6d6 !important
}
.bg-cy-d3 {
background-color: #a3c2c2 !important
}
.bg-cy-d4 {
background-color: #85adad !important
}
.bg-cy-d5 {
background-color: #669999 !important
}
.bg-cy-d6 {
background-color: #527a7a !important
}
.bg-cy-d7 {
background-color: #3d5c5c !important
}
.bg-cy-d8 {
background-color: #293d3d !important
}
.bg-cy-d9 {
background-color: #141f1f !important
}
.bg-cb-l1 {
background-color: #d1f0fa !important
}
.bg-cb-l2 {
background-color: #a3e0f5 !important
}
.bg-cb-l3 {
background-color: #75d1f0 !important
}
.bg-cb-l4 {
background-color: #47c2eb !important
}
.bg-cb-l5 {
background-color: #19b3e6 !important
}
.bg-cb-l6 {
background-color: #148fb8 !important
}
.bg-cb-l7 {
background-color: #0f6b8a !important
}
.bg-cb-l8 {
background-color: #0a475c !important
}
.bg-cb-l9 {
background-color: #05242e !important
}
.bg-cb-m1 {
background-color: #d9ecf2 !important
}
.bg-cb-m2 {
background-color: #b3d9e6 !important
}
.bg-cb-m3 {
background-color: #8cc6d9 !important
}
.bg-cb-m4 {
background-color: #66b3cc !important
}
.bg-cb-m5 {
background-color: #409fbf !important
}
.bg-cb-m6 {
background-color: #338099 !important
}
.bg-cb-m7 {
background-color: #266073 !important
}
.bg-cb-m8 {
background-color: #19404d !important
}
.bg-cb-m9 {
background-color: #0d2026 !important
}
.bg-cb-d1 {
background-color: #e0e8eb !important
}
.bg-cb-d2 {
background-color: #c2d1d6 !important
}
.bg-cb-d3 {
background-color: #a3bac2 !important
}
.bg-cb-d4 {
background-color: #85a3ad !important
}
.bg-cb-d5 {
background-color: #668c99 !important
}
.bg-cb-d6 {
background-color: #52707a !important
}
.bg-cb-d7 {
background-color: #3d545c !important
}
.bg-cb-d8 {
background-color: #29383d !important
}
.bg-cb-d9 {
background-color: #141c1f !important
}
.bg-bl-l1 {
background-color: #d1e5fa !important
}
.bg-bl-l2 {
background-color: #a3ccf5 !important
}
.bg-bl-l3 {
background-color: #75b2f0 !important
}
.bg-bl-l4 {
background-color: #4799eb !important
}
.bg-bl-l5 {
background-color: #197fe6 !important
}
.bg-bl-l6 {
background-color: #1466b8 !important
}
.bg-bl-l7 {
background-color: #0f4c8a !important
}
.bg-bl-l8 {
background-color: #0a335c !important
}
.bg-bl-l9 {
background-color: #05192e !important
}
.bg-bl-m1 {
background-color: #d9e6f2 !important
}
.bg-bl-m2 {
background-color: #b3cce6 !important
}
.bg-bl-m3 {
background-color: #8cb2d9 !important
}
.bg-bl-m4 {
background-color: #6699cc !important
}
.bg-bl-m5 {
background-color: #407fbf !important
}
.bg-bl-m6 {
background-color: #336699 !important
}
.bg-bl-m7 {
background-color: #264c73 !important
}
.bg-bl-m8 {
background-color: #19334d !important
}
.bg-bl-m9 {
background-color: #0d1926 !important
}
.bg-bl-d1 {
background-color: #e0e6eb !important
}
.bg-bl-d2 {
background-color: #c2ccd6 !important
}
.bg-bl-d3 {
background-color: #a3b3c2 !important
}
.bg-bl-d4 {
background-color: #8599ad !important
}
.bg-bl-d5 {
background-color: #667f99 !important
}
.bg-bl-d6 {
background-color: #52667a !important
}
.bg-bl-d7 {
background-color: #3d4c5c !important
}
.bg-bl-d8 {
background-color: #29333d !important
}
.bg-bl-d9 {
background-color: #14191f !important
}
.bg-bi-l1 {
background-color: #d1dbfa !important
}
.bg-bi-l2 {
background-color: #a3b8f5 !important
}
.bg-bi-l3 {
background-color: #7594f0 !important
}
.bg-bi-l4 {
background-color: #4770eb !important
}
.bg-bi-l5 {
background-color: #194ce6 !important
}
.bg-bi-l6 {
background-color: #143db8 !important
}
.bg-bi-l7 {
background-color: #0f2e8a !important
}
.bg-bi-l8 {
background-color: #0a1f5c !important
}
.bg-bi-l9 {
background-color: #050f2e !important
}
.bg-bi-m1 {
background-color: #d9dff2 !important
}
.bg-bi-m2 {
background-color: #b3bfe6 !important
}
.bg-bi-m3 {
background-color: #8c9fd9 !important
}
.bg-bi-m4 {
background-color: #667fcc !important
}
.bg-bi-m5 {
background-color: #4060bf !important
}
.bg-bi-m6 {
background-color: #334c99 !important
}
.bg-bi-m7 {
background-color: #263973 !important
}
.bg-bi-m8 {
background-color: #19264d !important
}
.bg-bi-m9 {
background-color: #0d1326 !important
}
.bg-bi-d1 {
background-color: #e0e3eb !important
}
.bg-bi-d2 {
background-color: #c2c7d6 !important
}
.bg-bi-d3 {
background-color: #a3abc2 !important
}
.bg-bi-d4 {
background-color: #858fad !important
}
.bg-bi-d5 {
background-color: #667399 !important
}
.bg-bi-d6 {
background-color: #525c7a !important
}
.bg-bi-d7 {
background-color: #3d455c !important
}
.bg-bi-d8 {
background-color: #292e3d !important
}
.bg-bi-d9 {
background-color: #14171f !important
}
.bg-in-l1 {
background-color: #d1d1fa !important
}
.bg-in-l2 {
background-color: #a3a3f5 !important
}
.bg-in-l3 {
background-color: #7575f0 !important
}
.bg-in-l4 {
background-color: #4747eb !important
}
.bg-in-l5 {
background-color: #1919e6 !important
}
.bg-in-l6 {
background-color: #1414b8 !important
}
.bg-in-l7 {
background-color: #0f0f8a !important
}
.bg-in-l8 {
background-color: #0a0a5c !important
}
.bg-in-l9 {
background-color: #05052e !important
}
.bg-in-m1 {
background-color: #d9d9f2 !important
}
.bg-in-m2 {
background-color: #b3b3e6 !important
}
.bg-in-m3 {
background-color: #8c8cd9 !important
}
.bg-in-m4 {
background-color: #6666cc !important
}
.bg-in-m5 {
background-color: #4040bf !important
}
.bg-in-m6 {
background-color: #333399 !important
}
.bg-in-m7 {
background-color: #262673 !important
}
.bg-in-m8 {
background-color: #19194d !important
}
.bg-in-m9 {
background-color: #0d0d26 !important
}
.bg-in-d1 {
background-color: #e0e0eb !important
}
.bg-in-d2 {
background-color: #c2c2d6 !important
}
.bg-in-d3 {
background-color: #a3a3c2 !important
}
.bg-in-d4 {
background-color: #8585ad !important
}
.bg-in-d5 {
background-color: #666699 !important
}
.bg-in-d6 {
background-color: #52527a !important
}
.bg-in-d7 {
background-color: #3d3d5c !important
}
.bg-in-d8 {
background-color: #29293d !important
}
.bg-in-d9 {
background-color: #14141f !important
}
.bg-ip-l1 {
background-color: #dbd1fa !important
}
.bg-ip-l2 {
background-color: #b8a3f5 !important
}
.bg-ip-l3 {
background-color: #9475f0 !important
}
.bg-ip-l4 {
background-color: #7047eb !important
}
.bg-ip-l5 {
background-color: #4d19e6 !important
}
.bg-ip-l6 {
background-color: #3d14b8 !important
}
.bg-ip-l7 {
background-color: #2e0f8a !important
}
.bg-ip-l8 {
background-color: #1f0a5c !important
}
.bg-ip-l9 {
background-color: #0f052e !important
}
.bg-ip-m1 {
background-color: #dfd9f2 !important
}
.bg-ip-m2 {
background-color: #bfb3e6 !important
}
.bg-ip-m3 {
background-color: #9f8cd9 !important
}
.bg-ip-m4 {
background-color: #8066cc !important
}
.bg-ip-m5 {
background-color: #6040bf !important
}
.bg-ip-m6 {
background-color: #4d3399 !important
}
.bg-ip-m7 {
background-color: #392673 !important
}
.bg-ip-m8 {
background-color: #26194d !important
}
.bg-ip-m9 {
background-color: #130d26 !important
}
.bg-ip-d1 {
background-color: #e3e0eb !important
}
.bg-ip-d2 {
background-color: #c7c2d6 !important
}
.bg-ip-d3 {
background-color: #aba3c2 !important
}
.bg-ip-d4 {
background-color: #8f85ad !important
}
.bg-ip-d5 {
background-color: #736699 !important
}
.bg-ip-d6 {
background-color: #5c527a !important
}
.bg-ip-d7 {
background-color: #453d5c !important
}
.bg-ip-d8 {
background-color: #2e293d !important
}
.bg-ip-d9 {
background-color: #17141f !important
}
.bg-pu-l1 {
background-color: #e5d1fa !important
}
.bg-pu-l2 {
background-color: #cca3f5 !important
}
.bg-pu-l3 {
background-color: #b275f0 !important
}
.bg-pu-l4 {
background-color: #9947eb !important
}
.bg-pu-l5 {
background-color: #7f19e6 !important
}
.bg-pu-l6 {
background-color: #6614b8 !important
}
.bg-pu-l7 {
background-color: #4c0f8a !important
}
.bg-pu-l8 {
background-color: #330a5c !important
}
.bg-pu-l9 {
background-color: #19052e !important
}
.bg-pu-m1 {
background-color: #e6d9f2 !important
}
.bg-pu-m2 {
background-color: #ccb3e6 !important
}
.bg-pu-m3 {
background-color: #b28cd9 !important
}
.bg-pu-m4 {
background-color: #9966cc !important
}
.bg-pu-m5 {
background-color: #7f40bf !important
}
.bg-pu-m6 {
background-color: #663399 !important
}
.bg-pu-m7 {
background-color: #4c2673 !important
}
.bg-pu-m8 {
background-color: #33194d !important
}
.bg-pu-m9 {
background-color: #190d26 !important
}
.bg-pu-d1 {
background-color: #e6e0eb !important
}
.bg-pu-d2 {
background-color: #ccc2d6 !important
}
.bg-pu-d3 {
background-color: #b3a3c2 !important
}
.bg-pu-d4 {
background-color: #9985ad !important
}
.bg-pu-d5 {
background-color: #7f6699 !important
}
.bg-pu-d6 {
background-color: #66527a !important
}
.bg-pu-d7 {
background-color: #4c3d5c !important
}
.bg-pu-d8 {
background-color: #33293d !important
}
.bg-pu-d9 {
background-color: #19141f !important
}
.bg-pp-l1 {
background-color: #f0d1fa !important
}
.bg-pp-l2 {
background-color: #e0a3f5 !important
}
.bg-pp-l3 {
background-color: #d175f0 !important
}
.bg-pp-l4 {
background-color: #c247eb !important
}
.bg-pp-l5 {
background-color: #b319e6 !important
}
.bg-pp-l6 {
background-color: #8f14b8 !important
}
.bg-pp-l7 {
background-color: #6b0f8a !important
}
.bg-pp-l8 {
background-color: #470a5c !important
}
.bg-pp-l9 {
background-color: #24052e !important
}
.bg-pp-m1 {
background-color: #ecd9f2 !important
}
.bg-pp-m2 {
background-color: #d9b3e6 !important
}
.bg-pp-m3 {
background-color: #c68cd9 !important
}
.bg-pp-m4 {
background-color: #b366cc !important
}
.bg-pp-m5 {
background-color: #9f40bf !important
}
.bg-pp-m6 {
background-color: #803399 !important
}
.bg-pp-m7 {
background-color: #602673 !important
}
.bg-pp-m8 {
background-color: #40194d !important
}
.bg-pp-m9 {
background-color: #200d26 !important
}
.bg-pp-d1 {
background-color: #e8e0eb !important
}
.bg-pp-d2 {
background-color: #d1c2d6 !important
}
.bg-pp-d3 {
background-color: #baa3c2 !important
}
.bg-pp-d4 {
background-color: #a385ad !important
}
.bg-pp-d5 {
background-color: #8c6699 !important
}
.bg-pp-d6 {
background-color: #70527a !important
}
.bg-pp-d7 {
background-color: #543d5c !important
}
.bg-pp-d8 {
background-color: #38293d !important
}
.bg-pp-d9 {
background-color: #1c141f !important
}
.bg-pi-l1 {
background-color: #fad1fa !important
}
.bg-pi-l2 {
background-color: #f5a3f5 !important
}
.bg-pi-l3 {
background-color: #f075f0 !important
}
.bg-pi-l4 {
background-color: #eb47eb !important
}
.bg-pi-l5 {
background-color: #e619e5 !important
}
.bg-pi-l6 {
background-color: #b814b8 !important
}
.bg-pi-l7 {
background-color: #8a0f8a !important
}
.bg-pi-l8 {
background-color: #5c0a5c !important
}
.bg-pi-l9 {
background-color: #2e052e !important
}
.bg-pi-m1 {
background-color: #f2d9f2 !important
}
.bg-pi-m2 {
background-color: #e6b3e5 !important
}
.bg-pi-m3 {
background-color: #d98cd9 !important
}
.bg-pi-m4 {
background-color: #cc66cc !important
}
.bg-pi-m5 {
background-color: #bf40bf !important
}
.bg-pi-m6 {
background-color: #993399 !important
}
.bg-pi-m7 {
background-color: #732673 !important
}
.bg-pi-m8 {
background-color: #4d194d !important
}
.bg-pi-m9 {
background-color: #260d26 !important
}
.bg-pi-d1 {
background-color: #ebe0eb !important
}
.bg-pi-d2 {
background-color: #d6c2d6 !important
}
.bg-pi-d3 {
background-color: #c2a3c2 !important
}
.bg-pi-d4 {
background-color: #ad85ad !important
}
.bg-pi-d5 {
background-color: #996699 !important
}
.bg-pi-d6 {
background-color: #7a527a !important
}
.bg-pi-d7 {
background-color: #5c3d5c !important
}
.bg-pi-d8 {
background-color: #3d293d !important
}
.bg-pi-d9 {
background-color: #1f141f !important
}
.bg-pv-l1 {
background-color: #fad1f0 !important
}
.bg-pv-l2 {
background-color: #f5a3e0 !important
}
.bg-pv-l3 {
background-color: #f075d1 !important
}
.bg-pv-l4 {
background-color: #eb47c2 !important
}
.bg-pv-l5 {
background-color: #e619b2 !important
}
.bg-pv-l6 {
background-color: #b8148f !important
}
.bg-pv-l7 {
background-color: #8a0f6b !important
}
.bg-pv-l8 {
background-color: #5c0a47 !important
}
.bg-pv-l9 {
background-color: #2e0524 !important
}
.bg-pv-m1 {
background-color: #f2d9ec !important
}
.bg-pv-m2 {
background-color: #e6b3d9 !important
}
.bg-pv-m3 {
background-color: #d98cc6 !important
}
.bg-pv-m4 {
background-color: #cc66b2 !important
}
.bg-pv-m5 {
background-color: #bf409f !important
}
.bg-pv-m6 {
background-color: #99337f !important
}
.bg-pv-m7 {
background-color: #732660 !important
}
.bg-pv-m8 {
background-color: #4d1940 !important
}
.bg-pv-m9 {
background-color: #260d20 !important
}
.bg-pv-d1 {
background-color: #ebe0e8 !important
}
.bg-pv-d2 {
background-color: #d6c2d1 !important
}
.bg-pv-d3 {
background-color: #c2a3ba !important
}
.bg-pv-d4 {
background-color: #ad85a3 !important
}
.bg-pv-d5 {
background-color: #99668c !important
}
.bg-pv-d6 {
background-color: #7a5270 !important
}
.bg-pv-d7 {
background-color: #5c3d54 !important
}
.bg-pv-d8 {
background-color: #3d2938 !important
}
.bg-pv-d9 {
background-color: #1f141c !important
}
.bg-vi-l1 {
background-color: #fad1e6 !important
}
.bg-vi-l2 {
background-color: #f5a3cc !important
}
.bg-vi-l3 {
background-color: #f075b3 !important
}
.bg-vi-l4 {
background-color: #eb4799 !important
}
.bg-vi-l5 {
background-color: #e61980 !important
}
.bg-vi-l6 {
background-color: #b81466 !important
}
.bg-vi-l7 {
background-color: #8a0f4d !important
}
.bg-vi-l8 {
background-color: #5c0a33 !important
}
.bg-vi-l9 {
background-color: #2e051a !important
}
.bg-vi-m1 {
background-color: #f2d9e6 !important
}
.bg-vi-m2 {
background-color: #e6b3cc !important
}
.bg-vi-m3 {
background-color: #d98cb3 !important
}
.bg-vi-m4 {
background-color: #cc6699 !important
}
.bg-vi-m5 {
background-color: #bf4080 !important
}
.bg-vi-m6 {
background-color: #993366 !important
}
.bg-vi-m7 {
background-color: #73264d !important
}
.bg-vi-m8 {
background-color: #4d1933 !important
}
.bg-vi-m9 {
background-color: #260d1a !important
}
.bg-vi-d1 {
background-color: #ebe0e6 !important
}
.bg-vi-d2 {
background-color: #d6c2cc !important
}
.bg-vi-d3 {
background-color: #c2a3b3 !important
}
.bg-vi-d4 {
background-color: #ad8599 !important
}
.bg-vi-d5 {
background-color: #996680 !important
}
.bg-vi-d6 {
background-color: #7a5266 !important
}
.bg-vi-d7 {
background-color: #5c3d4d !important
}
.bg-vi-d8 {
background-color: #3d2933 !important
}
.bg-vi-d9 {
background-color: #1f1419 !important
}
.bg-vr-l1 {
background-color: #fad1db !important
}
.bg-vr-l2 {
background-color: #f5a3b8 !important
}
.bg-vr-l3 {
background-color: #f07594 !important
}
.bg-vr-l4 {
background-color: #eb4770 !important
}
.bg-vr-l5 {
background-color: #e6194c !important
}
.bg-vr-l6 {
background-color: #b8143d !important
}
.bg-vr-l7 {
background-color: #8a0f2e !important
}
.bg-vr-l8 {
background-color: #5c0a1f !important
}
.bg-vr-l9 {
background-color: #2e050f !important
}
.bg-vr-m1 {
background-color: #f2d9df !important
}
.bg-vr-m2 {
background-color: #e6b3bf !important
}
.bg-vr-m3 {
background-color: #d98c9f !important
}
.bg-vr-m4 {
background-color: #cc667f !important
}
.bg-vr-m5 {
background-color: #bf4060 !important
}
.bg-vr-m6 {
background-color: #99334c !important
}
.bg-vr-m7 {
background-color: #732639 !important
}
.bg-vr-m8 {
background-color: #4d1926 !important
}
.bg-vr-m9 {
background-color: #260d13 !important
}
.bg-vr-d1 {
background-color: #ebe0e3 !important
}
.bg-vr-d2 {
background-color: #d6c2c7 !important
}
.bg-vr-d3 {
background-color: #c2a3ab !important
}
.bg-vr-d4 {
background-color: #ad858f !important
}
.bg-vr-d5 {
background-color: #996673 !important
}
.bg-vr-d6 {
background-color: #7a525c !important
}
.bg-vr-d7 {
background-color: #5c3d45 !important
}
.bg-vr-d8 {
background-color: #3d292e !important
}
.bg-vr-d9 {
background-color: #1f1417 !important
}
.bg-gy-l1 {
background-color: #f2f2f2 !important
}
.bg-gy-l2 {
background-color: #e6e6e6 !important
}
.bg-gy-l3 {
background-color: #d9d9d9 !important
}
.bg-gy-l4 {
background-color: #cccccc !important
}
.bg-gy-l5 {
background-color: #bfbfbf !important
}
.bg-gy-l6 {
background-color: #b3b3b3 !important
}
.bg-gy-l7 {
background-color: #a6a6a6 !important
}
.bg-gy-l8 {
background-color: #999999 !important
}
.bg-gy-l9 {
background-color: #8c8c8c !important
}
.bg-gy-m1 {
background-color: #b3b3b3 !important
}
.bg-gy-m2 {
background-color: #a6a6a6 !important
}
.bg-gy-m3 {
background-color: #999999 !important
}
.bg-gy-m4 {
background-color: #8c8c8c !important
}
.bg-gy-m5 {
background-color: #808080 !important
}
.bg-gy-m6 {
background-color: #737373 !important
}
.bg-gy-m7 {
background-color: #666666 !important
}
.bg-gy-m8 {
background-color: #595959 !important
}
.bg-gy-m9 {
background-color: #4d4d4d !important
}
.bg-gy-d1 {
background-color: #808080 !important
}
.bg-gy-d2 {
background-color: #737373 !important
}
.bg-gy-d3 {
background-color: #666666 !important
}
.bg-gy-d4 {
background-color: #595959 !important
}
.bg-gy-d5 {
background-color: #4d4d4d !important
}
.bg-gy-d6 {
background-color: #404040 !important
}
.bg-gy-d7 {
background-color: #333333 !important
}
.bg-gy-d8 {
background-color: #262626 !important
}
.bg-gy-d9 {
background-color: #1a1a1a !important
}
.bg-re {
background-color: #ff0000
}
.bg-ro {
background-color: #ff4000
}
.bg-or {
background-color: #ff8000
}
.bg-oy {
background-color: #ffbf00
}
.bg-ye {
background-color: #ffff00
}
.bg-yc {
background-color: #bfff00
}
.bg-ch {
background-color: #80ff00
}
.bg-cg {
background-color: #40ff00
}
.bg-gr {
background-color: #00ff00
}
.bg-ga {
background-color: #00ff40
}
.bg-aq {
background-color: #00ff80
}
.bg-ac {
background-color: #00ffbf
}
.bg-cy {
background-color: #00ffff
}
.bg-cb {
background-color: #00bfff
}
.bg-bl {
background-color: #007fff
}
.bg-bi {
background-color: #0040ff
}
.bg-in {
background-color: #0000ff
}
.bg-ip {
background-color: #4000ff
}
.bg-pu {
background-color: #7f00ff
}
.bg-pp {
background-color: #bf00ff
}
.bg-pi {
background-color: #ff00ff
}
.bg-pv {
background-color: #ff00bf
}
.bg-vi {
background-color: #ff0080
}
.bg-vr {
background-color: #ff0040
}
.bg-gy {
background-color: #000
}
.bg-wh {
background-color: #fff
}
.bg-bk {
background-color: #000
}
.bg-tr {
background-color: transparent
}
.bg-re-l {
background-color: #e61919
}
.bg-ro-l {
background-color: #e64d19
}
.bg-or-l {
background-color: #e68019
}
.bg-oy-l {
background-color: #e6b319
}
.bg-ye-l {
background-color: #e5e619
}
.bg-yc-l {
background-color: #b3e619
}
.bg-ch-l {
background-color: #80e619
}
.bg-cg-l {
background-color: #4ce619
}
.bg-gr-l {
background-color: #19e619
}
.bg-ga-l {
background-color: #19e64d
}
.bg-aq-l {
background-color: #19e680
}
.bg-ac-l {
background-color: #19e6b3
}
.bg-cy-l {
background-color: #19e5e6
}
.bg-cb-l {
background-color: #19b3e6
}
.bg-bl-l {
background-color: #197fe6
}
.bg-bi-l {
background-color: #194ce6
}
.bg-in-l {
background-color: #1919e6
}
.bg-ip-l {
background-color: #4d19e6
}
.bg-pu-l {
background-color: #7f19e6
}
.bg-pp-l {
background-color: #b319e6
}
.bg-pi-l {
background-color: #e619e5
}
.bg-pv-l {
background-color: #e619b2
}
.bg-vi-l {
background-color: #e61980
}
.bg-vr-l {
background-color: #e6194c
}
.bg-gy-l {
background-color: #bfbfbf
}
.bg-re-m {
background-color: #bf4040
}
.bg-ro-m {
background-color: #bf6040
}
.bg-or-m {
background-color: #bf8040
}
.bg-oy-m {
background-color: #bf9f40
}
.bg-ye-m {
background-color: #bfbf40
}
.bg-yc-m {
background-color: #9fbf40
}
.bg-ch-m {
background-color: #80bf40
}
.bg-cg-m {
background-color: #60bf40
}
.bg-gr-m {
background-color: #40bf40
}
.bg-ga-m {
background-color: #40bf60
}
.bg-aq-m {
background-color: #40bf80
}
.bg-ac-m {
background-color: #40bf9f
}
.bg-cy-m {
background-color: #40bfbf
}
.bg-cb-m {
background-color: #409fbf
}
.bg-bl-m {
background-color: #407fbf
}
.bg-bi-m {
background-color: #4060bf
}
.bg-in-m {
background-color: #4040bf
}
.bg-ip-m {
background-color: #6040bf
}
.bg-pu-m {
background-color: #7f40bf
}
.bg-pp-m {
background-color: #9f40bf
}
.bg-pi-m {
background-color: #bf40bf
}
.bg-pv-m {
background-color: #bf409f
}
.bg-vi-m {
background-color: #bf4080
}
.bg-vr-m {
background-color: #bf4060
}
.bg-gy-m {
background-color: #808080
}
.bg-re-d {
background-color: #996666
}
.bg-ro-d {
background-color: #997366
}
.bg-or-d {
background-color: #998066
}
.bg-oy-d {
background-color: #998c66
}
.bg-ye-d {
background-color: #999966
}
.bg-yc-d {
background-color: #8c9966
}
.bg-ch-d {
background-color: #809966
}
.bg-cg-d {
background-color: #739966
}
.bg-gr-d {
background-color: #669966
}
.bg-ga-d {
background-color: #669973
}
.bg-aq-d {
background-color: #669980
}
.bg-ac-d {
background-color: #66998c
}
.bg-cy-d {
background-color: #669999
}
.bg-cb-d {
background-color: #668c99
}
.bg-bl-d {
background-color: #667f99
}
.bg-bi-d {
background-color: #667399
}
.bg-in-d {
background-color: #666699
}
.bg-ip-d {
background-color: #736699
}
.bg-pu-d {
background-color: #7f6699
}
.bg-pp-d {
background-color: #8c6699
}
.bg-pi-d {
background-color: #996699
}
.bg-pv-d {
background-color: #99668c
}
.bg-vi-d {
background-color: #996680
}
.bg-vr-d {
background-color: #996673
}
.bg-gy-d {
background-color: #4d4d4d
}
.t-re-l1 {
color: #fad1d1 !important
}
.t-re-l2 {
color: #f5a3a3 !important
}
.t-re-l3 {
color: #f07575 !important
}
.t-re-l4 {
color: #eb4747 !important
}
.t-re-l5 {
color: #e61919 !important
}
.t-re-l6 {
color: #b81414 !important
}
.t-re-l7 {
color: #8a0f0f !important
}
.t-re-l8 {
color: #5c0a0a !important
}
.t-re-l9 {
color: #2e0505 !important
}
.t-re-m1 {
color: #f2d9d9 !important
}
.t-re-m2 {
color: #e6b3b3 !important
}
.t-re-m3 {
color: #d98c8c !important
}
.t-re-m4 {
color: #cc6666 !important
}
.t-re-m5 {
color: #bf4040 !important
}
.t-re-m6 {
color: #993333 !important
}
.t-re-m7 {
color: #732626 !important
}
.t-re-m8 {
color: #4d1919 !important
}
.t-re-m9 {
color: #260d0d !important
}
.t-re-d1 {
color: #ebe0e0 !important
}
.t-re-d2 {
color: #d6c2c2 !important
}
.t-re-d3 {
color: #c2a3a3 !important
}
.t-re-d4 {
color: #ad8585 !important
}
.t-re-d5 {
color: #996666 !important
}
.t-re-d6 {
color: #7a5252 !important
}
.t-re-d7 {
color: #5c3d3d !important
}
.t-re-d8 {
color: #3d2929 !important
}
.t-re-d9 {
color: #1f1414 !important
}
.t-re-l1 {
color: #fad1d1 !important
}
.t-re-l2 {
color: #f5a3a3 !important
}
.t-re-l3 {
color: #f07575 !important
}
.t-re-l4 {
color: #eb4747 !important
}
.t-re-l5 {
color: #e61919 !important
}
.t-re-l6 {
color: #b81414 !important
}
.t-re-l7 {
color: #8a0f0f !important
}
.t-re-l8 {
color: #5c0a0a !important
}
.t-re-l9 {
color: #2e0505 !important
}
.t-re-m1 {
color: #f2d9d9 !important
}
.t-re-m2 {
color: #e6b3b3 !important
}
.t-re-m3 {
color: #d98c8c !important
}
.t-re-m4 {
color: #cc6666 !important
}
.t-re-m5 {
color: #bf4040 !important
}
.t-re-m6 {
color: #993333 !important
}
.t-re-m7 {
color: #732626 !important
}
.t-re-m8 {
color: #4d1919 !important
}
.t-re-m9 {
color: #260d0d !important
}
.t-re-d1 {
color: #ebe0e0 !important
}
.t-re-d2 {
color: #d6c2c2 !important
}
.t-re-d3 {
color: #c2a3a3 !important
}
.t-re-d4 {
color: #ad8585 !important
}
.t-re-d5 {
color: #996666 !important
}
.t-re-d6 {
color: #7a5252 !important
}
.t-re-d7 {
color: #5c3d3d !important
}
.t-re-d8 {
color: #3d2929 !important
}
.t-re-d9 {
color: #1f1414 !important
}
.t-ro-l1 {
color: #fadbd1 !important
}
.t-ro-l2 {
color: #f5b8a3 !important
}
.t-ro-l3 {
color: #f09475 !important
}
.t-ro-l4 {
color: #eb7047 !important
}
.t-ro-l5 {
color: #e64d19 !important
}
.t-ro-l6 {
color: #b83d14 !important
}
.t-ro-l7 {
color: #8a2e0f !important
}
.t-ro-l8 {
color: #5c1f0a !important
}
.t-ro-l9 {
color: #2e0f05 !important
}
.t-ro-m1 {
color: #f2dfd9 !important
}
.t-ro-m2 {
color: #e6bfb3 !important
}
.t-ro-m3 {
color: #d99f8c !important
}
.t-ro-m4 {
color: #cc7f66 !important
}
.t-ro-m5 {
color: #bf6040 !important
}
.t-ro-m6 {
color: #994d33 !important
}
.t-ro-m7 {
color: #733926 !important
}
.t-ro-m8 {
color: #4d2619 !important
}
.t-ro-m9 {
color: #26130d !important
}
.t-ro-d1 {
color: #ebe3e0 !important
}
.t-ro-d2 {
color: #d6c7c2 !important
}
.t-ro-d3 {
color: #c2aba3 !important
}
.t-ro-d4 {
color: #ad8f85 !important
}
.t-ro-d5 {
color: #997366 !important
}
.t-ro-d6 {
color: #7a5c52 !important
}
.t-ro-d7 {
color: #5c453d !important
}
.t-ro-d8 {
color: #3d2e29 !important
}
.t-ro-d9 {
color: #1f1714 !important
}
.t-or-l1 {
color: #fae6d1 !important
}
.t-or-l2 {
color: #f5cca3 !important
}
.t-or-l3 {
color: #f0b375 !important
}
.t-or-l4 {
color: #eb9947 !important
}
.t-or-l5 {
color: #e68019 !important
}
.t-or-l6 {
color: #b86614 !important
}
.t-or-l7 {
color: #8a4d0f !important
}
.t-or-l8 {
color: #5c330a !important
}
.t-or-l9 {
color: #2e1905 !important
}
.t-or-m1 {
color: #f2e6d9 !important
}
.t-or-m2 {
color: #e6ccb3 !important
}
.t-or-m3 {
color: #d9b38c !important
}
.t-or-m4 {
color: #cc9966 !important
}
.t-or-m5 {
color: #bf8040 !important
}
.t-or-m6 {
color: #996633 !important
}
.t-or-m7 {
color: #734d26 !important
}
.t-or-m8 {
color: #4d3319 !important
}
.t-or-m9 {
color: #26190d !important
}
.t-or-d1 {
color: #ebe6e0 !important
}
.t-or-d2 {
color: #d6ccc2 !important
}
.t-or-d3 {
color: #c2b3a3 !important
}
.t-or-d4 {
color: #ad9985 !important
}
.t-or-d5 {
color: #998066 !important
}
.t-or-d6 {
color: #7a6652 !important
}
.t-or-d7 {
color: #5c4d3d !important
}
.t-or-d8 {
color: #3d3329 !important
}
.t-or-d9 {
color: #1f1914 !important
}
.t-oy-l1 {
color: #faf0d1 !important
}
.t-oy-l2 {
color: #f5e0a3 !important
}
.t-oy-l3 {
color: #f0d175 !important
}
.t-oy-l4 {
color: #ebc247 !important
}
.t-oy-l5 {
color: #e6b319 !important
}
.t-oy-l6 {
color: #b88f14 !important
}
.t-oy-l7 {
color: #8a6b0f !important
}
.t-oy-l8 {
color: #5c470a !important
}
.t-oy-l9 {
color: #2e2405 !important
}
.t-oy-m1 {
color: #f2ecd9 !important
}
.t-oy-m2 {
color: #e6d9b3 !important
}
.t-oy-m3 {
color: #d9c68c !important
}
.t-oy-m4 {
color: #ccb366 !important
}
.t-oy-m5 {
color: #bf9f40 !important
}
.t-oy-m6 {
color: #998033 !important
}
.t-oy-m7 {
color: #736026 !important
}
.t-oy-m8 {
color: #4d4019 !important
}
.t-oy-m9 {
color: #26200d !important
}
.t-oy-d1 {
color: #ebe8e0 !important
}
.t-oy-d2 {
color: #d6d1c2 !important
}
.t-oy-d3 {
color: #c2baa3 !important
}
.t-oy-d4 {
color: #ada385 !important
}
.t-oy-d5 {
color: #998c66 !important
}
.t-oy-d6 {
color: #7a7052 !important
}
.t-oy-d7 {
color: #5c543d !important
}
.t-oy-d8 {
color: #3d3829 !important
}
.t-oy-d9 {
color: #1f1c14 !important
}
.t-ye-l1 {
color: #fafad1 !important
}
.t-ye-l2 {
color: #f5f5a3 !important
}
.t-ye-l3 {
color: #f0f075 !important
}
.t-ye-l4 {
color: #ebeb47 !important
}
.t-ye-l5 {
color: #e5e619 !important
}
.t-ye-l6 {
color: #b8b814 !important
}
.t-ye-l7 {
color: #8a8a0f !important
}
.t-ye-l8 {
color: #5c5c0a !important
}
.t-ye-l9 {
color: #2e2e05 !important
}
.t-ye-m1 {
color: #f2f2d9 !important
}
.t-ye-m2 {
color: #e5e6b3 !important
}
.t-ye-m3 {
color: #d9d98c !important
}
.t-ye-m4 {
color: #cccc66 !important
}
.t-ye-m5 {
color: #bfbf40 !important
}
.t-ye-m6 {
color: #999933 !important
}
.t-ye-m7 {
color: #737326 !important
}
.t-ye-m8 {
color: #4d4d19 !important
}
.t-ye-m9 {
color: #26260d !important
}
.t-ye-d1 {
color: #ebebe0 !important
}
.t-ye-d2 {
color: #d6d6c2 !important
}
.t-ye-d3 {
color: #c2c2a3 !important
}
.t-ye-d4 {
color: #adad85 !important
}
.t-ye-d5 {
color: #999966 !important
}
.t-ye-d6 {
color: #7a7a52 !important
}
.t-ye-d7 {
color: #5c5c3d !important
}
.t-ye-d8 {
color: #3d3d29 !important
}
.t-ye-d9 {
color: #1f1f14 !important
}
.t-yc-l1 {
color: #f0fad1 !important
}
.t-yc-l2 {
color: #e0f5a3 !important
}
.t-yc-l3 {
color: #d1f075 !important
}
.t-yc-l4 {
color: #c2eb47 !important
}
.t-yc-l5 {
color: #b3e619 !important
}
.t-yc-l6 {
color: #8fb814 !important
}
.t-yc-l7 {
color: #6b8a0f !important
}
.t-yc-l8 {
color: #475c0a !important
}
.t-yc-l9 {
color: #242e05 !important
}
.t-yc-m1 {
color: #ecf2d9 !important
}
.t-yc-m2 {
color: #d9e6b3 !important
}
.t-yc-m3 {
color: #c6d98c !important
}
.t-yc-m4 {
color: #b3cc66 !important
}
.t-yc-m5 {
color: #9fbf40 !important
}
.t-yc-m6 {
color: #809933 !important
}
.t-yc-m7 {
color: #607326 !important
}
.t-yc-m8 {
color: #404d19 !important
}
.t-yc-m9 {
color: #20260d !important
}
.t-yc-d1 {
color: #e8ebe0 !important
}
.t-yc-d2 {
color: #d1d6c2 !important
}
.t-yc-d3 {
color: #bac2a3 !important
}
.t-yc-d4 {
color: #a3ad85 !important
}
.t-yc-d5 {
color: #8c9966 !important
}
.t-yc-d6 {
color: #707a52 !important
}
.t-yc-d7 {
color: #545c3d !important
}
.t-yc-d8 {
color: #383d29 !important
}
.t-yc-d9 {
color: #1c1f14 !important
}
.t-ch-l1 {
color: #e6fad1 !important
}
.t-ch-l2 {
color: #ccf5a3 !important
}
.t-ch-l3 {
color: #b3f075 !important
}
.t-ch-l4 {
color: #99eb47 !important
}
.t-ch-l5 {
color: #80e619 !important
}
.t-ch-l6 {
color: #66b814 !important
}
.t-ch-l7 {
color: #4d8a0f !important
}
.t-ch-l8 {
color: #335c0a !important
}
.t-ch-l9 {
color: #1a2e05 !important
}
.t-ch-m1 {
color: #e6f2d9 !important
}
.t-ch-m2 {
color: #cce6b3 !important
}
.t-ch-m3 {
color: #b3d98c !important
}
.t-ch-m4 {
color: #99cc66 !important
}
.t-ch-m5 {
color: #80bf40 !important
}
.t-ch-m6 {
color: #669933 !important
}
.t-ch-m7 {
color: #4d7326 !important
}
.t-ch-m8 {
color: #334d19 !important
}
.t-ch-m9 {
color: #1a260d !important
}
.t-ch-d1 {
color: #e6ebe0 !important
}
.t-ch-d2 {
color: #ccd6c2 !important
}
.t-ch-d3 {
color: #b3c2a3 !important
}
.t-ch-d4 {
color: #99ad85 !important
}
.t-ch-d5 {
color: #809966 !important
}
.t-ch-d6 {
color: #667a52 !important
}
.t-ch-d7 {
color: #4d5c3d !important
}
.t-ch-d8 {
color: #333d29 !important
}
.t-ch-d9 {
color: #191f14 !important
}
.t-cg-l1 {
color: #dbfad1 !important
}
.t-cg-l2 {
color: #b8f5a3 !important
}
.t-cg-l3 {
color: #94f075 !important
}
.t-cg-l4 {
color: #70eb47 !important
}
.t-cg-l5 {
color: #4ce619 !important
}
.t-cg-l6 {
color: #3db814 !important
}
.t-cg-l7 {
color: #2e8a0f !important
}
.t-cg-l8 {
color: #1f5c0a !important
}
.t-cg-l9 {
color: #0f2e05 !important
}
.t-cg-m1 {
color: #dff2d9 !important
}
.t-cg-m2 {
color: #bfe6b3 !important
}
.t-cg-m3 {
color: #9fd98c !important
}
.t-cg-m4 {
color: #7fcc66 !important
}
.t-cg-m5 {
color: #60bf40 !important
}
.t-cg-m6 {
color: #4c9933 !important
}
.t-cg-m7 {
color: #397326 !important
}
.t-cg-m8 {
color: #264d19 !important
}
.t-cg-m9 {
color: #13260d !important
}
.t-cg-d1 {
color: #e3ebe0 !important
}
.t-cg-d2 {
color: #c7d6c2 !important
}
.t-cg-d3 {
color: #abc2a3 !important
}
.t-cg-d4 {
color: #8fad85 !important
}
.t-cg-d5 {
color: #739966 !important
}
.t-cg-d6 {
color: #5c7a52 !important
}
.t-cg-d7 {
color: #455c3d !important
}
.t-cg-d8 {
color: #2e3d29 !important
}
.t-cg-d9 {
color: #171f14 !important
}
.t-gr-l1 {
color: #d1fad1 !important
}
.t-gr-l2 {
color: #a3f5a3 !important
}
.t-gr-l3 {
color: #75f075 !important
}
.t-gr-l4 {
color: #47eb47 !important
}
.t-gr-l5 {
color: #19e619 !important
}
.t-gr-l6 {
color: #14b814 !important
}
.t-gr-l7 {
color: #0f8a0f !important
}
.t-gr-l8 {
color: #0a5c0a !important
}
.t-gr-l9 {
color: #052e05 !important
}
.t-gr-m1 {
color: #d9f2d9 !important
}
.t-gr-m2 {
color: #b3e6b3 !important
}
.t-gr-m3 {
color: #8cd98c !important
}
.t-gr-m4 {
color: #66cc66 !important
}
.t-gr-m5 {
color: #40bf40 !important
}
.t-gr-m6 {
color: #339933 !important
}
.t-gr-m7 {
color: #267326 !important
}
.t-gr-m8 {
color: #194d19 !important
}
.t-gr-m9 {
color: #0d260d !important
}
.t-gr-d1 {
color: #e0ebe0 !important
}
.t-gr-d2 {
color: #c2d6c2 !important
}
.t-gr-d3 {
color: #a3c2a3 !important
}
.t-gr-d4 {
color: #85ad85 !important
}
.t-gr-d5 {
color: #669966 !important
}
.t-gr-d6 {
color: #527a52 !important
}
.t-gr-d7 {
color: #3d5c3d !important
}
.t-gr-d8 {
color: #293d29 !important
}
.t-gr-d9 {
color: #141f14 !important
}
.t-ga-l1 {
color: #d1fadb !important
}
.t-ga-l2 {
color: #a3f5b8 !important
}
.t-ga-l3 {
color: #75f094 !important
}
.t-ga-l4 {
color: #47eb70 !important
}
.t-ga-l5 {
color: #19e64d !important
}
.t-ga-l6 {
color: #14b83d !important
}
.t-ga-l7 {
color: #0f8a2e !important
}
.t-ga-l8 {
color: #0a5c1f !important
}
.t-ga-l9 {
color: #052e0f !important
}
.t-ga-m1 {
color: #d9f2df !important
}
.t-ga-m2 {
color: #b3e6bf !important
}
.t-ga-m3 {
color: #8cd99f !important
}
.t-ga-m4 {
color: #66cc80 !important
}
.t-ga-m5 {
color: #40bf60 !important
}
.t-ga-m6 {
color: #33994d !important
}
.t-ga-m7 {
color: #267339 !important
}
.t-ga-m8 {
color: #194d26 !important
}
.t-ga-m9 {
color: #0d2613 !important
}
.t-ga-d1 {
color: #e0ebe3 !important
}
.t-ga-d2 {
color: #c2d6c7 !important
}
.t-ga-d3 {
color: #a3c2ab !important
}
.t-ga-d4 {
color: #85ad8f !important
}
.t-ga-d5 {
color: #669973 !important
}
.t-ga-d6 {
color: #527a5c !important
}
.t-ga-d7 {
color: #3d5c45 !important
}
.t-ga-d8 {
color: #293d2e !important
}
.t-ga-d9 {
color: #141f17 !important
}
.t-aq-l1 {
color: #d1fae6 !important
}
.t-aq-l2 {
color: #a3f5cc !important
}
.t-aq-l3 {
color: #75f0b3 !important
}
.t-aq-l4 {
color: #47eb99 !important
}
.t-aq-l5 {
color: #19e680 !important
}
.t-aq-l6 {
color: #14b866 !important
}
.t-aq-l7 {
color: #0f8a4d !important
}
.t-aq-l8 {
color: #0a5c33 !important
}
.t-aq-l9 {
color: #052e1a !important
}
.t-aq-m1 {
color: #d9f2e6 !important
}
.t-aq-m2 {
color: #b3e6cc !important
}
.t-aq-m3 {
color: #8cd9b3 !important
}
.t-aq-m4 {
color: #66cc99 !important
}
.t-aq-m5 {
color: #40bf80 !important
}
.t-aq-m6 {
color: #339966 !important
}
.t-aq-m7 {
color: #26734d !important
}
.t-aq-m8 {
color: #194d33 !important
}
.t-aq-m9 {
color: #0d261a !important
}
.t-aq-d1 {
color: #e0ebe6 !important
}
.t-aq-d2 {
color: #c2d6cc !important
}
.t-aq-d3 {
color: #a3c2b3 !important
}
.t-aq-d4 {
color: #85ad99 !important
}
.t-aq-d5 {
color: #669980 !important
}
.t-aq-d6 {
color: #527a66 !important
}
.t-aq-d7 {
color: #3d5c4d !important
}
.t-aq-d8 {
color: #293d33 !important
}
.t-aq-d9 {
color: #141f19 !important
}
.t-ac-l1 {
color: #d1faf0 !important
}
.t-ac-l2 {
color: #a3f5e0 !important
}
.t-ac-l3 {
color: #75f0d1 !important
}
.t-ac-l4 {
color: #47ebc2 !important
}
.t-ac-l5 {
color: #19e6b3 !important
}
.t-ac-l6 {
color: #14b88f !important
}
.t-ac-l7 {
color: #0f8a6b !important
}
.t-ac-l8 {
color: #0a5c47 !important
}
.t-ac-l9 {
color: #052e24 !important
}
.t-ac-m1 {
color: #d9f2ec !important
}
.t-ac-m2 {
color: #b3e6d9 !important
}
.t-ac-m3 {
color: #8cd9c6 !important
}
.t-ac-m4 {
color: #66ccb3 !important
}
.t-ac-m5 {
color: #40bf9f !important
}
.t-ac-m6 {
color: #339980 !important
}
.t-ac-m7 {
color: #267360 !important
}
.t-ac-m8 {
color: #194d40 !important
}
.t-ac-m9 {
color: #0d2620 !important
}
.t-ac-d1 {
color: #e0ebe8 !important
}
.t-ac-d2 {
color: #c2d6d1 !important
}
.t-ac-d3 {
color: #a3c2ba !important
}
.t-ac-d4 {
color: #85ada3 !important
}
.t-ac-d5 {
color: #66998c !important
}
.t-ac-d6 {
color: #527a70 !important
}
.t-ac-d7 {
color: #3d5c54 !important
}
.t-ac-d8 {
color: #293d38 !important
}
.t-ac-d9 {
color: #141f1c !important
}
.t-cy-l1 {
color: #d1fafa !important
}
.t-cy-l2 {
color: #a3f5f5 !important
}
.t-cy-l3 {
color: #75f0f0 !important
}
.t-cy-l4 {
color: #47ebeb !important
}
.t-cy-l5 {
color: #19e5e6 !important
}
.t-cy-l6 {
color: #14b8b8 !important
}
.t-cy-l7 {
color: #0f8a8a !important
}
.t-cy-l8 {
color: #0a5c5c !important
}
.t-cy-l9 {
color: #052e2e !important
}
.t-cy-m1 {
color: #d9f2f2 !important
}
.t-cy-m2 {
color: #b3e5e6 !important
}
.t-cy-m3 {
color: #8cd9d9 !important
}
.t-cy-m4 {
color: #66cccc !important
}
.t-cy-m5 {
color: #40bfbf !important
}
.t-cy-m6 {
color: #339999 !important
}
.t-cy-m7 {
color: #267373 !important
}
.t-cy-m8 {
color: #194d4d !important
}
.t-cy-m9 {
color: #0d2626 !important
}
.t-cy-d1 {
color: #e0ebeb !important
}
.t-cy-d2 {
color: #c2d6d6 !important
}
.t-cy-d3 {
color: #a3c2c2 !important
}
.t-cy-d4 {
color: #85adad !important
}
.t-cy-d5 {
color: #669999 !important
}
.t-cy-d6 {
color: #527a7a !important
}
.t-cy-d7 {
color: #3d5c5c !important
}
.t-cy-d8 {
color: #293d3d !important
}
.t-cy-d9 {
color: #141f1f !important
}
.t-cb-l1 {
color: #d1f0fa !important
}
.t-cb-l2 {
color: #a3e0f5 !important
}
.t-cb-l3 {
color: #75d1f0 !important
}
.t-cb-l4 {
color: #47c2eb !important
}
.t-cb-l5 {
color: #19b3e6 !important
}
.t-cb-l6 {
color: #148fb8 !important
}
.t-cb-l7 {
color: #0f6b8a !important
}
.t-cb-l8 {
color: #0a475c !important
}
.t-cb-l9 {
color: #05242e !important
}
.t-cb-m1 {
color: #d9ecf2 !important
}
.t-cb-m2 {
color: #b3d9e6 !important
}
.t-cb-m3 {
color: #8cc6d9 !important
}
.t-cb-m4 {
color: #66b3cc !important
}
.t-cb-m5 {
color: #409fbf !important
}
.t-cb-m6 {
color: #338099 !important
}
.t-cb-m7 {
color: #266073 !important
}
.t-cb-m8 {
color: #19404d !important
}
.t-cb-m9 {
color: #0d2026 !important
}
.t-cb-d1 {
color: #e0e8eb !important
}
.t-cb-d2 {
color: #c2d1d6 !important
}
.t-cb-d3 {
color: #a3bac2 !important
}
.t-cb-d4 {
color: #85a3ad !important
}
.t-cb-d5 {
color: #668c99 !important
}
.t-cb-d6 {
color: #52707a !important
}
.t-cb-d7 {
color: #3d545c !important
}
.t-cb-d8 {
color: #29383d !important
}
.t-cb-d9 {
color: #141c1f !important
}
.t-bl-l1 {
color: #d1e5fa !important
}
.t-bl-l2 {
color: #a3ccf5 !important
}
.t-bl-l3 {
color: #75b2f0 !important
}
.t-bl-l4 {
color: #4799eb !important
}
.t-bl-l5 {
color: #197fe6 !important
}
.t-bl-l6 {
color: #1466b8 !important
}
.t-bl-l7 {
color: #0f4c8a !important
}
.t-bl-l8 {
color: #0a335c !important
}
.t-bl-l9 {
color: #05192e !important
}
.t-bl-m1 {
color: #d9e6f2 !important
}
.t-bl-m2 {
color: #b3cce6 !important
}
.t-bl-m3 {
color: #8cb2d9 !important
}
.t-bl-m4 {
color: #6699cc !important
}
.t-bl-m5 {
color: #407fbf !important
}
.t-bl-m6 {
color: #336699 !important
}
.t-bl-m7 {
color: #264c73 !important
}
.t-bl-m8 {
color: #19334d !important
}
.t-bl-m9 {
color: #0d1926 !important
}
.t-bl-d1 {
color: #e0e6eb !important
}
.t-bl-d2 {
color: #c2ccd6 !important
}
.t-bl-d3 {
color: #a3b3c2 !important
}
.t-bl-d4 {
color: #8599ad !important
}
.t-bl-d5 {
color: #667f99 !important
}
.t-bl-d6 {
color: #52667a !important
}
.t-bl-d7 {
color: #3d4c5c !important
}
.t-bl-d8 {
color: #29333d !important
}
.t-bl-d9 {
color: #14191f !important
}
.t-bi-l1 {
color: #d1dbfa !important
}
.t-bi-l2 {
color: #a3b8f5 !important
}
.t-bi-l3 {
color: #7594f0 !important
}
.t-bi-l4 {
color: #4770eb !important
}
.t-bi-l5 {
color: #194ce6 !important
}
.t-bi-l6 {
color: #143db8 !important
}
.t-bi-l7 {
color: #0f2e8a !important
}
.t-bi-l8 {
color: #0a1f5c !important
}
.t-bi-l9 {
color: #050f2e !important
}
.t-bi-m1 {
color: #d9dff2 !important
}
.t-bi-m2 {
color: #b3bfe6 !important
}
.t-bi-m3 {
color: #8c9fd9 !important
}
.t-bi-m4 {
color: #667fcc !important
}
.t-bi-m5 {
color: #4060bf !important
}
.t-bi-m6 {
color: #334c99 !important
}
.t-bi-m7 {
color: #263973 !important
}
.t-bi-m8 {
color: #19264d !important
}
.t-bi-m9 {
color: #0d1326 !important
}
.t-bi-d1 {
color: #e0e3eb !important
}
.t-bi-d2 {
color: #c2c7d6 !important
}
.t-bi-d3 {
color: #a3abc2 !important
}
.t-bi-d4 {
color: #858fad !important
}
.t-bi-d5 {
color: #667399 !important
}
.t-bi-d6 {
color: #525c7a !important
}
.t-bi-d7 {
color: #3d455c !important
}
.t-bi-d8 {
color: #292e3d !important
}
.t-bi-d9 {
color: #14171f !important
}
.t-in-l1 {
color: #d1d1fa !important
}
.t-in-l2 {
color: #a3a3f5 !important
}
.t-in-l3 {
color: #7575f0 !important
}
.t-in-l4 {
color: #4747eb !important
}
.t-in-l5 {
color: #1919e6 !important
}
.t-in-l6 {
color: #1414b8 !important
}
.t-in-l7 {
color: #0f0f8a !important
}
.t-in-l8 {
color: #0a0a5c !important
}
.t-in-l9 {
color: #05052e !important
}
.t-in-m1 {
color: #d9d9f2 !important
}
.t-in-m2 {
color: #b3b3e6 !important
}
.t-in-m3 {
color: #8c8cd9 !important
}
.t-in-m4 {
color: #6666cc !important
}
.t-in-m5 {
color: #4040bf !important
}
.t-in-m6 {
color: #333399 !important
}
.t-in-m7 {
color: #262673 !important
}
.t-in-m8 {
color: #19194d !important
}
.t-in-m9 {
color: #0d0d26 !important
}
.t-in-d1 {
color: #e0e0eb !important
}
.t-in-d2 {
color: #c2c2d6 !important
}
.t-in-d3 {
color: #a3a3c2 !important
}
.t-in-d4 {
color: #8585ad !important
}
.t-in-d5 {
color: #666699 !important
}
.t-in-d6 {
color: #52527a !important
}
.t-in-d7 {
color: #3d3d5c !important
}
.t-in-d8 {
color: #29293d !important
}
.t-in-d9 {
color: #14141f !important
}
.t-ip-l1 {
color: #dbd1fa !important
}
.t-ip-l2 {
color: #b8a3f5 !important
}
.t-ip-l3 {
color: #9475f0 !important
}
.t-ip-l4 {
color: #7047eb !important
}
.t-ip-l5 {
color: #4d19e6 !important
}
.t-ip-l6 {
color: #3d14b8 !important
}
.t-ip-l7 {
color: #2e0f8a !important
}
.t-ip-l8 {
color: #1f0a5c !important
}
.t-ip-l9 {
color: #0f052e !important
}
.t-ip-m1 {
color: #dfd9f2 !important
}
.t-ip-m2 {
color: #bfb3e6 !important
}
.t-ip-m3 {
color: #9f8cd9 !important
}
.t-ip-m4 {
color: #8066cc !important
}
.t-ip-m5 {
color: #6040bf !important
}
.t-ip-m6 {
color: #4d3399 !important
}
.t-ip-m7 {
color: #392673 !important
}
.t-ip-m8 {
color: #26194d !important
}
.t-ip-m9 {
color: #130d26 !important
}
.t-ip-d1 {
color: #e3e0eb !important
}
.t-ip-d2 {
color: #c7c2d6 !important
}
.t-ip-d3 {
color: #aba3c2 !important
}
.t-ip-d4 {
color: #8f85ad !important
}
.t-ip-d5 {
color: #736699 !important
}
.t-ip-d6 {
color: #5c527a !important
}
.t-ip-d7 {
color: #453d5c !important
}
.t-ip-d8 {
color: #2e293d !important
}
.t-ip-d9 {
color: #17141f !important
}
.t-pu-l1 {
color: #e5d1fa !important
}
.t-pu-l2 {
color: #cca3f5 !important
}
.t-pu-l3 {
color: #b275f0 !important
}
.t-pu-l4 {
color: #9947eb !important
}
.t-pu-l5 {
color: #7f19e6 !important
}
.t-pu-l6 {
color: #6614b8 !important
}
.t-pu-l7 {
color: #4c0f8a !important
}
.t-pu-l8 {
color: #330a5c !important
}
.t-pu-l9 {
color: #19052e !important
}
.t-pu-m1 {
color: #e6d9f2 !important
}
.t-pu-m2 {
color: #ccb3e6 !important
}
.t-pu-m3 {
color: #b28cd9 !important
}
.t-pu-m4 {
color: #9966cc !important
}
.t-pu-m5 {
color: #7f40bf !important
}
.t-pu-m6 {
color: #663399 !important
}
.t-pu-m7 {
color: #4c2673 !important
}
.t-pu-m8 {
color: #33194d !important
}
.t-pu-m9 {
color: #190d26 !important
}
.t-pu-d1 {
color: #e6e0eb !important
}
.t-pu-d2 {
color: #ccc2d6 !important
}
.t-pu-d3 {
color: #b3a3c2 !important
}
.t-pu-d4 {
color: #9985ad !important
}
.t-pu-d5 {
color: #7f6699 !important
}
.t-pu-d6 {
color: #66527a !important
}
.t-pu-d7 {
color: #4c3d5c !important
}
.t-pu-d8 {
color: #33293d !important
}
.t-pu-d9 {
color: #19141f !important
}
.t-pp-l1 {
color: #f0d1fa !important
}
.t-pp-l2 {
color: #e0a3f5 !important
}
.t-pp-l3 {
color: #d175f0 !important
}
.t-pp-l4 {
color: #c247eb !important
}
.t-pp-l5 {
color: #b319e6 !important
}
.t-pp-l6 {
color: #8f14b8 !important
}
.t-pp-l7 {
color: #6b0f8a !important
}
.t-pp-l8 {
color: #470a5c !important
}
.t-pp-l9 {
color: #24052e !important
}
.t-pp-m1 {
color: #ecd9f2 !important
}
.t-pp-m2 {
color: #d9b3e6 !important
}
.t-pp-m3 {
color: #c68cd9 !important
}
.t-pp-m4 {
color: #b366cc !important
}
.t-pp-m5 {
color: #9f40bf !important
}
.t-pp-m6 {
color: #803399 !important
}
.t-pp-m7 {
color: #602673 !important
}
.t-pp-m8 {
color: #40194d !important
}
.t-pp-m9 {
color: #200d26 !important
}
.t-pp-d1 {
color: #e8e0eb !important
}
.t-pp-d2 {
color: #d1c2d6 !important
}
.t-pp-d3 {
color: #baa3c2 !important
}
.t-pp-d4 {
color: #a385ad !important
}
.t-pp-d5 {
color: #8c6699 !important
}
.t-pp-d6 {
color: #70527a !important
}
.t-pp-d7 {
color: #543d5c !important
}
.t-pp-d8 {
color: #38293d !important
}
.t-pp-d9 {
color: #1c141f !important
}
.t-pi-l1 {
color: #fad1fa !important
}
.t-pi-l2 {
color: #f5a3f5 !important
}
.t-pi-l3 {
color: #f075f0 !important
}
.t-pi-l4 {
color: #eb47eb !important
}
.t-pi-l5 {
color: #e619e5 !important
}
.t-pi-l6 {
color: #b814b8 !important
}
.t-pi-l7 {
color: #8a0f8a !important
}
.t-pi-l8 {
color: #5c0a5c !important
}
.t-pi-l9 {
color: #2e052e !important
}
.t-pi-m1 {
color: #f2d9f2 !important
}
.t-pi-m2 {
color: #e6b3e5 !important
}
.t-pi-m3 {
color: #d98cd9 !important
}
.t-pi-m4 {
color: #cc66cc !important
}
.t-pi-m5 {
color: #bf40bf !important
}
.t-pi-m6 {
color: #993399 !important
}
.t-pi-m7 {
color: #732673 !important
}
.t-pi-m8 {
color: #4d194d !important
}
.t-pi-m9 {
color: #260d26 !important
}
.t-pi-d1 {
color: #ebe0eb !important
}
.t-pi-d2 {
color: #d6c2d6 !important
}
.t-pi-d3 {
color: #c2a3c2 !important
}
.t-pi-d4 {
color: #ad85ad !important
}
.t-pi-d5 {
color: #996699 !important
}
.t-pi-d6 {
color: #7a527a !important
}
.t-pi-d7 {
color: #5c3d5c !important
}
.t-pi-d8 {
color: #3d293d !important
}
.t-pi-d9 {
color: #1f141f !important
}
.t-pv-l1 {
color: #fad1f0 !important
}
.t-pv-l2 {
color: #f5a3e0 !important
}
.t-pv-l3 {
color: #f075d1 !important
}
.t-pv-l4 {
color: #eb47c2 !important
}
.t-pv-l5 {
color: #e619b2 !important
}
.t-pv-l6 {
color: #b8148f !important
}
.t-pv-l7 {
color: #8a0f6b !important
}
.t-pv-l8 {
color: #5c0a47 !important
}
.t-pv-l9 {
color: #2e0524 !important
}
.t-pv-m1 {
color: #f2d9ec !important
}
.t-pv-m2 {
color: #e6b3d9 !important
}
.t-pv-m3 {
color: #d98cc6 !important
}
.t-pv-m4 {
color: #cc66b2 !important
}
.t-pv-m5 {
color: #bf409f !important
}
.t-pv-m6 {
color: #99337f !important
}
.t-pv-m7 {
color: #732660 !important
}
.t-pv-m8 {
color: #4d1940 !important
}
.t-pv-m9 {
color: #260d20 !important
}
.t-pv-d1 {
color: #ebe0e8 !important
}
.t-pv-d2 {
color: #d6c2d1 !important
}
.t-pv-d3 {
color: #c2a3ba !important
}
.t-pv-d4 {
color: #ad85a3 !important
}
.t-pv-d5 {
color: #99668c !important
}
.t-pv-d6 {
color: #7a5270 !important
}
.t-pv-d7 {
color: #5c3d54 !important
}
.t-pv-d8 {
color: #3d2938 !important
}
.t-pv-d9 {
color: #1f141c !important
}
.t-vi-l1 {
color: #fad1e6 !important
}
.t-vi-l2 {
color: #f5a3cc !important
}
.t-vi-l3 {
color: #f075b3 !important
}
.t-vi-l4 {
color: #eb4799 !important
}
.t-vi-l5 {
color: #e61980 !important
}
.t-vi-l6 {
color: #b81466 !important
}
.t-vi-l7 {
color: #8a0f4d !important
}
.t-vi-l8 {
color: #5c0a33 !important
}
.t-vi-l9 {
color: #2e051a !important
}
.t-vi-m1 {
color: #f2d9e6 !important
}
.t-vi-m2 {
color: #e6b3cc !important
}
.t-vi-m3 {
color: #d98cb3 !important
}
.t-vi-m4 {
color: #cc6699 !important
}
.t-vi-m5 {
color: #bf4080 !important
}
.t-vi-m6 {
color: #993366 !important
}
.t-vi-m7 {
color: #73264d !important
}
.t-vi-m8 {
color: #4d1933 !important
}
.t-vi-m9 {
color: #260d1a !important
}
.t-vi-d1 {
color: #ebe0e6 !important
}
.t-vi-d2 {
color: #d6c2cc !important
}
.t-vi-d3 {
color: #c2a3b3 !important
}
.t-vi-d4 {
color: #ad8599 !important
}
.t-vi-d5 {
color: #996680 !important
}
.t-vi-d6 {
color: #7a5266 !important
}
.t-vi-d7 {
color: #5c3d4d !important
}
.t-vi-d8 {
color: #3d2933 !important
}
.t-vi-d9 {
color: #1f1419 !important
}
.t-vr-l1 {
color: #fad1db !important
}
.t-vr-l2 {
color: #f5a3b8 !important
}
.t-vr-l3 {
color: #f07594 !important
}
.t-vr-l4 {
color: #eb4770 !important
}
.t-vr-l5 {
color: #e6194c !important
}
.t-vr-l6 {
color: #b8143d !important
}
.t-vr-l7 {
color: #8a0f2e !important
}
.t-vr-l8 {
color: #5c0a1f !important
}
.t-vr-l9 {
color: #2e050f !important
}
.t-vr-m1 {
color: #f2d9df !important
}
.t-vr-m2 {
color: #e6b3bf !important
}
.t-vr-m3 {
color: #d98c9f !important
}
.t-vr-m4 {
color: #cc667f !important
}
.t-vr-m5 {
color: #bf4060 !important
}
.t-vr-m6 {
color: #99334c !important
}
.t-vr-m7 {
color: #732639 !important
}
.t-vr-m8 {
color: #4d1926 !important
}
.t-vr-m9 {
color: #260d13 !important
}
.t-vr-d1 {
color: #ebe0e3 !important
}
.t-vr-d2 {
color: #d6c2c7 !important
}
.t-vr-d3 {
color: #c2a3ab !important
}
.t-vr-d4 {
color: #ad858f !important
}
.t-vr-d5 {
color: #996673 !important
}
.t-vr-d6 {
color: #7a525c !important
}
.t-vr-d7 {
color: #5c3d45 !important
}
.t-vr-d8 {
color: #3d292e !important
}
.t-vr-d9 {
color: #1f1417 !important
}
.t-gy-l1 {
color: #f2f2f2 !important
}
.t-gy-l2 {
color: #e6e6e6 !important
}
.t-gy-l3 {
color: #d9d9d9 !important
}
.t-gy-l4 {
color: #cccccc !important
}
.t-gy-l5 {
color: #bfbfbf !important
}
.t-gy-l6 {
color: #b3b3b3 !important
}
.t-gy-l7 {
color: #a6a6a6 !important
}
.t-gy-l8 {
color: #999999 !important
}
.t-gy-l9 {
color: #8c8c8c !important
}
.t-gy-m1 {
color: #b3b3b3 !important
}
.t-gy-m2 {
color: #a6a6a6 !important
}
.t-gy-m3 {
color: #999999 !important
}
.t-gy-m4 {
color: #8c8c8c !important
}
.t-gy-m5 {
color: #808080 !important
}
.t-gy-m6 {
color: #737373 !important
}
.t-gy-m7 {
color: #666666 !important
}
.t-gy-m8 {
color: #595959 !important
}
.t-gy-m9 {
color: #4d4d4d !important
}
.t-gy-d1 {
color: #808080 !important
}
.t-gy-d2 {
color: #737373 !important
}
.t-gy-d3 {
color: #666666 !important
}
.t-gy-d4 {
color: #595959 !important
}
.t-gy-d5 {
color: #4d4d4d !important
}
.t-gy-d6 {
color: #404040 !important
}
.t-gy-d7 {
color: #333333 !important
}
.t-gy-d8 {
color: #262626 !important
}
.t-gy-d9 {
color: #1a1a1a !important
}
.t-re {
color: #ff0000 !important
}
.t-ro {
color: #ff4000 !important
}
.t-or {
color: #ff8000 !important
}
.t-oy {
color: #ffbf00 !important
}
.t-ye {
color: #ffff00 !important
}
.t-yc {
color: #bfff00 !important
}
.t-ch {
color: #80ff00 !important
}
.t-cg {
color: #40ff00 !important
}
.t-gr {
color: #00ff00 !important
}
.t-ga {
color: #00ff40 !important
}
.t-aq {
color: #00ff80 !important
}
.t-ac {
color: #00ffbf !important
}
.t-cy {
color: #00ffff !important
}
.t-cb {
color: #00bfff !important
}
.t-bl {
color: #007fff !important
}
.t-bi {
color: #0040ff !important
}
.t-in {
color: #0000ff !important
}
.t-ip {
color: #4000ff !important
}
.t-pu {
color: #7f00ff !important
}
.t-pp {
color: #bf00ff !important
}
.t-pi {
color: #ff00ff !important
}
.t-pv {
color: #ff00bf !important
}
.t-vi {
color: #ff0080 !important
}
.t-vr {
color: #ff0040 !important
}
.t-gy {
color: #000 !important
}
.t-wh {
color: #fff !important
}
.t-bk {
color: #000 !important
}
.t-tr {
color: transparent !important
}
.t-re-l {
color: #e61919 !important
}
.t-ro-l {
color: #e64d19 !important
}
.t-or-l {
color: #e68019 !important
}
.t-oy-l {
color: #e6b319 !important
}
.t-ye-l {
color: #e5e619 !important
}
.t-yc-l {
color: #b3e619 !important
}
.t-ch-l {
color: #80e619 !important
}
.t-cg-l {
color: #4ce619 !important
}
.t-gr-l {
color: #19e619 !important
}
.t-ga-l {
color: #19e64d !important
}
.t-aq-l {
color: #19e680 !important
}
.t-ac-l {
color: #19e6b3 !important
}
.t-cy-l {
color: #19e5e6 !important
}
.t-cb-l {
color: #19b3e6 !important
}
.t-bl-l {
color: #197fe6 !important
}
.t-bi-l {
color: #194ce6 !important
}
.t-in-l {
color: #1919e6 !important
}
.t-ip-l {
color: #4d19e6 !important
}
.t-pu-l {
color: #7f19e6 !important
}
.t-pp-l {
color: #b319e6 !important
}
.t-pi-l {
color: #e619e5 !important
}
.t-pv-l {
color: #e619b2 !important
}
.t-vi-l {
color: #e61980 !important
}
.t-vr-l {
color: #e6194c !important
}
.t-gy-l {
color: #bfbfbf !important
}
.t-re-m {
color: #bf4040 !important
}
.t-ro-m {
color: #bf6040 !important
}
.t-or-m {
color: #bf8040 !important
}
.t-oy-m {
color: #bf9f40 !important
}
.t-ye-m {
color: #bfbf40 !important
}
.t-yc-m {
color: #9fbf40 !important
}
.t-ch-m {
color: #80bf40 !important
}
.t-cg-m {
color: #60bf40 !important
}
.t-gr-m {
color: #40bf40 !important
}
.t-ga-m {
color: #40bf60 !important
}
.t-aq-m {
color: #40bf80 !important
}
.t-ac-m {
color: #40bf9f !important
}
.t-cy-m {
color: #40bfbf !important
}
.t-cb-m {
color: #409fbf !important
}
.t-bl-m {
color: #407fbf !important
}
.t-bi-m {
color: #4060bf !important
}
.t-in-m {
color: #4040bf !important
}
.t-ip-m {
color: #6040bf !important
}
.t-pu-m {
color: #7f40bf !important
}
.t-pp-m {
color: #9f40bf !important
}
.t-pi-m {
color: #bf40bf !important
}
.t-pv-m {
color: #bf409f !important
}
.t-vi-m {
color: #bf4080 !important
}
.t-vr-m {
color: #bf4060 !important
}
.t-gy-m {
color: #808080 !important
}
.t-re-d {
color: #996666 !important
}
.t-ro-d {
color: #997366 !important
}
.t-or-d {
color: #998066 !important
}
.t-oy-d {
color: #998c66 !important
}
.t-ye-d {
color: #999966 !important
}
.t-yc-d {
color: #8c9966 !important
}
.t-ch-d {
color: #809966 !important
}
.t-cg-d {
color: #739966 !important
}
.t-gr-d {
color: #669966 !important
}
.t-ga-d {
color: #669973 !important
}
.t-aq-d {
color: #669980 !important
}
.t-ac-d {
color: #66998c !important
}
.t-cy-d {
color: #669999 !important
}
.t-cb-d {
color: #668c99 !important
}
.t-bl-d {
color: #667f99 !important
}
.t-bi-d {
color: #667399 !important
}
.t-in-d {
color: #666699 !important
}
.t-ip-d {
color: #736699 !important
}
.t-pu-d {
color: #7f6699 !important
}
.t-pp-d {
color: #8c6699 !important
}
.t-pi-d {
color: #996699 !important
}
.t-pv-d {
color: #99668c !important
}
.t-vi-d {
color: #996680 !important
}
.t-vr-d {
color: #996673 !important
}
.t-gy-d {
color: #4d4d4d !important
}
.bg-re-hl1 {
background-color: #fad1df !important
}
.bg-re-hl2 {
background-color: #f5a3b8 !important
}
.bg-re-hl3 {
background-color: #f0758a !important
}
.bg-re-hl4 {
background-color: #eb4755 !important
}
.bg-re-hl5 {
background-color: #e61919 !important
}
.bg-re-hl6 {
background-color: #b82214 !important
}
.bg-re-hl7 {
background-color: #8a240f !important
}
.bg-re-hl8 {
background-color: #5c1f0a !important
}
.bg-re-hl9 {
background-color: #2e1305 !important
}
.bg-re-hm1 {
background-color: #f2d9e1 !important
}
.bg-re-hm2 {
background-color: #e6b3bf !important
}
.bg-re-hm3 {
background-color: #d98c99 !important
}
.bg-re-hm4 {
background-color: #cc666e !important
}
.bg-re-hm5 {
background-color: #bf4040 !important
}
.bg-re-hm6 {
background-color: #993b33 !important
}
.bg-re-hm7 {
background-color: #733326 !important
}
.bg-re-hm8 {
background-color: #4d2619 !important
}
.bg-re-hm9 {
background-color: #26150d !important
}
.bg-re-hd1 {
background-color: #ebe0e4 !important
}
.bg-re-hd2 {
background-color: #d6c2c7 !important
}
.bg-re-hd3 {
background-color: #c2a3a8 !important
}
.bg-re-hd4 {
background-color: #ad8588 !important
}
.bg-re-hd5 {
background-color: #996666 !important
}
.bg-re-hd6 {
background-color: #7a5552 !important
}
.bg-re-hd7 {
background-color: #5c423d !important
}
.bg-re-hd8 {
background-color: #3d2e29 !important
}
.bg-re-hd9 {
background-color: #1f1814 !important
}
.bg-ro-hl1 {
background-color: #fad1d4 !important
}
.bg-ro-hl2 {
background-color: #f5a3a3 !important
}
.bg-ro-hl3 {
background-color: #f07f75 !important
}
.bg-ro-hl4 {
background-color: #eb6347 !important
}
.bg-ro-hl5 {
background-color: #e64d19 !important
}
.bg-ro-hl6 {
background-color: #b84b14 !important
}
.bg-ro-hl7 {
background-color: #8a420f !important
}
.bg-ro-hl8 {
background-color: #5c330a !important
}
.bg-ro-hl9 {
background-color: #2e1d05 !important
}
.bg-ro-hm1 {
background-color: #f2d9db !important
}
.bg-ro-hm2 {
background-color: #e6b3b3 !important
}
.bg-ro-hm3 {
background-color: #d9938c !important
}
.bg-ro-hm4 {
background-color: #cc7766 !important
}
.bg-ro-hm5 {
background-color: #bf6040 !important
}
.bg-ro-hm6 {
background-color: #995533 !important
}
.bg-ro-hm7 {
background-color: #734626 !important
}
.bg-ro-hm8 {
background-color: #4d3319 !important
}
.bg-ro-hm9 {
background-color: #261c0d !important
}
.bg-ro-hd1 {
background-color: #ebe0e1 !important
}
.bg-ro-hd2 {
background-color: #d6c2c2 !important
}
.bg-ro-hd3 {
background-color: #c2a6a3 !important
}
.bg-ro-hd4 {
background-color: #ad8b85 !important
}
.bg-ro-hd5 {
background-color: #997366 !important
}
.bg-ro-hd6 {
background-color: #7a5f52 !important
}
.bg-ro-hd7 {
background-color: #5c4a3d !important
}
.bg-ro-hd8 {
background-color: #3d3329 !important
}
.bg-ro-hd9 {
background-color: #1f1a14 !important
}
.bg-or-hl1 {
background-color: #fad8d1 !important
}
.bg-or-hl2 {
background-color: #f5b8a3 !important
}
.bg-or-hl3 {
background-color: #f09e75 !important
}
.bg-or-hl4 {
background-color: #eb8b47 !important
}
.bg-or-hl5 {
background-color: #e68019 !important
}
.bg-or-hl6 {
background-color: #b87414 !important
}
.bg-or-hl7 {
background-color: #8a610f !important
}
.bg-or-hl8 {
background-color: #5c470a !important
}
.bg-or-hl9 {
background-color: #2e2705 !important
}
.bg-or-hm1 {
background-color: #f2ddd9 !important
}
.bg-or-hm2 {
background-color: #e6bfb3 !important
}
.bg-or-hm3 {
background-color: #d9a68c !important
}
.bg-or-hm4 {
background-color: #cc9166 !important
}
.bg-or-hm5 {
background-color: #bf8040 !important
}
.bg-or-hm6 {
background-color: #996f33 !important
}
.bg-or-hm7 {
background-color: #735926 !important
}
.bg-or-hm8 {
background-color: #4d4019 !important
}
.bg-or-hm9 {
background-color: #26220d !important
}
.bg-or-hd1 {
background-color: #ebe2e0 !important
}
.bg-or-hd2 {
background-color: #d6c7c2 !important
}
.bg-or-hd3 {
background-color: #c2ada3 !important
}
.bg-or-hd4 {
background-color: #ad9685 !important
}
.bg-or-hd5 {
background-color: #998066 !important
}
.bg-or-hd6 {
background-color: #7a6952 !important
}
.bg-or-hd7 {
background-color: #5c523d !important
}
.bg-or-hd8 {
background-color: #3d3829 !important
}
.bg-or-hd9 {
background-color: #1f1d14 !important
}
.bg-oy-hl1 {
background-color: #fae2d1 !important
}
.bg-oy-hl2 {
background-color: #f5cca3 !important
}
.bg-oy-hl3 {
background-color: #f0bd75 !important
}
.bg-oy-hl4 {
background-color: #ebb447 !important
}
.bg-oy-hl5 {
background-color: #e6b319 !important
}
.bg-oy-hl6 {
background-color: #b89c14 !important
}
.bg-oy-hl7 {
background-color: #8a800f !important
}
.bg-oy-hl8 {
background-color: #5c5c0a !important
}
.bg-oy-hl9 {
background-color: #2b2e05 !important
}
.bg-oy-hm1 {
background-color: #f2e3d9 !important
}
.bg-oy-hm2 {
background-color: #e6ccb3 !important
}
.bg-oy-hm3 {
background-color: #d9b98c !important
}
.bg-oy-hm4 {
background-color: #ccaa66 !important
}
.bg-oy-hm5 {
background-color: #bf9f40 !important
}
.bg-oy-hm6 {
background-color: #998833 !important
}
.bg-oy-hm7 {
background-color: #736c26 !important
}
.bg-oy-hm8 {
background-color: #4d4d19 !important
}
.bg-oy-hm9 {
background-color: #24260d !important
}
.bg-oy-hd1 {
background-color: #ebe5e0 !important
}
.bg-oy-hd2 {
background-color: #d6ccc2 !important
}
.bg-oy-hd3 {
background-color: #c2b5a3 !important
}
.bg-oy-hd4 {
background-color: #ada085 !important
}
.bg-oy-hd5 {
background-color: #998c66 !important
}
.bg-oy-hd6 {
background-color: #7a7452 !important
}
.bg-oy-hd7 {
background-color: #5c593d !important
}
.bg-oy-hd8 {
background-color: #3d3d29 !important
}
.bg-oy-hd9 {
background-color: #1e1f14 !important
}
.bg-ye-hl1 {
background-color: #faecd1 !important
}
.bg-ye-hl2 {
background-color: #f5e0a3 !important
}
.bg-ye-hl3 {
background-color: #f0db75 !important
}
.bg-ye-hl4 {
background-color: #ebdd47 !important
}
.bg-ye-hl5 {
background-color: #e5e619 !important
}
.bg-ye-hl6 {
background-color: #aab814 !important
}
.bg-ye-hl7 {
background-color: #758a0f !important
}
.bg-ye-hl8 {
background-color: #475c0a !important
}
.bg-ye-hl9 {
background-color: #202e05 !important
}
.bg-ye-hm1 {
background-color: #f2ead9 !important
}
.bg-ye-hm2 {
background-color: #e6d9b3 !important
}
.bg-ye-hm3 {
background-color: #d9cc8c !important
}
.bg-ye-hm4 {
background-color: #ccc466 !important
}
.bg-ye-hm5 {
background-color: #bfbf40 !important
}
.bg-ye-hm6 {
background-color: #909933 !important
}
.bg-ye-hm7 {
background-color: #667326 !important
}
.bg-ye-hm8 {
background-color: #404d19 !important
}
.bg-ye-hm9 {
background-color: #1e260d !important
}
.bg-ye-hd1 {
background-color: #ebe7e0 !important
}
.bg-ye-hd2 {
background-color: #d6d1c2 !important
}
.bg-ye-hd3 {
background-color: #c2bda3 !important
}
.bg-ye-hd4 {
background-color: #adaa85 !important
}
.bg-ye-hd5 {
background-color: #999966 !important
}
.bg-ye-hd6 {
background-color: #777a52 !important
}
.bg-ye-hd7 {
background-color: #575c3d !important
}
.bg-ye-hd8 {
background-color: #383d29 !important
}
.bg-ye-hd9 {
background-color: #1b1f14 !important
}
.bg-yc-hl1 {
background-color: #faf7d1 !important
}
.bg-yc-hl2 {
background-color: #f5f5a3 !important
}
.bg-yc-hl3 {
background-color: #e6f075 !important
}
.bg-yc-hl4 {
background-color: #cfeb47 !important
}
.bg-yc-hl5 {
background-color: #b3e619 !important
}
.bg-yc-hl6 {
background-color: #81b814 !important
}
.bg-yc-hl7 {
background-color: #578a0f !important
}
.bg-yc-hl8 {
background-color: #335c0a !important
}
.bg-yc-hl9 {
background-color: #162e05 !important
}
.bg-yc-hm1 {
background-color: #f2f0d9 !important
}
.bg-yc-hm2 {
background-color: #e5e6b3 !important
}
.bg-yc-hm3 {
background-color: #d2d98c !important
}
.bg-yc-hm4 {
background-color: #bbcc66 !important
}
.bg-yc-hm5 {
background-color: #9fbf40 !important
}
.bg-yc-hm6 {
background-color: #779933 !important
}
.bg-yc-hm7 {
background-color: #537326 !important
}
.bg-yc-hm8 {
background-color: #334d19 !important
}
.bg-yc-hm9 {
background-color: #17260d !important
}
.bg-yc-hd1 {
background-color: #ebeae0 !important
}
.bg-yc-hd2 {
background-color: #d6d6c2 !important
}
.bg-yc-hd3 {
background-color: #bfc2a3 !important
}
.bg-yc-hd4 {
background-color: #a7ad85 !important
}
.bg-yc-hd5 {
background-color: #8c9966 !important
}
.bg-yc-hd6 {
background-color: #6d7a52 !important
}
.bg-yc-hd7 {
background-color: #4f5c3d !important
}
.bg-yc-hd8 {
background-color: #333d29 !important
}
.bg-yc-hd9 {
background-color: #191f14 !important
}
.bg-ch-hl1 {
background-color: #f3fad1 !important
}
.bg-ch-hl2 {
background-color: #e0f5a3 !important
}
.bg-ch-hl3 {
background-color: #c7f075 !important
}
.bg-ch-hl4 {
background-color: #a7eb47 !important
}
.bg-ch-hl5 {
background-color: #80e619 !important
}
.bg-ch-hl6 {
background-color: #58b814 !important
}
.bg-ch-hl7 {
background-color: #388a0f !important
}
.bg-ch-hl8 {
background-color: #1f5c0a !important
}
.bg-ch-hl9 {
background-color: #0c2e05 !important
}
.bg-ch-hm1 {
background-color: #eef2d9 !important
}
.bg-ch-hm2 {
background-color: #d9e6b3 !important
}
.bg-ch-hm3 {
background-color: #bfd98c !important
}
.bg-ch-hm4 {
background-color: #a2cc66 !important
}
.bg-ch-hm5 {
background-color: #80bf40 !important
}
.bg-ch-hm6 {
background-color: #5e9933 !important
}
.bg-ch-hm7 {
background-color: #407326 !important
}
.bg-ch-hm8 {
background-color: #264d19 !important
}
.bg-ch-hm9 {
background-color: #11260d !important
}
.bg-ch-hd1 {
background-color: #e9ebe0 !important
}
.bg-ch-hd2 {
background-color: #d1d6c2 !important
}
.bg-ch-hd3 {
background-color: #b8c2a3 !important
}
.bg-ch-hd4 {
background-color: #9cad85 !important
}
.bg-ch-hd5 {
background-color: #809966 !important
}
.bg-ch-hd6 {
background-color: #637a52 !important
}
.bg-ch-hd7 {
background-color: #475c3d !important
}
.bg-ch-hd8 {
background-color: #2e3d29 !important
}
.bg-ch-hd9 {
background-color: #161f14 !important
}
.bg-cg-hl1 {
background-color: #e9fad1 !important
}
.bg-cg-hl2 {
background-color: #ccf5a3 !important
}
.bg-cg-hl3 {
background-color: #a8f075 !important
}
.bg-cg-hl4 {
background-color: #7eeb47 !important
}
.bg-cg-hl5 {
background-color: #4ce619 !important
}
.bg-cg-hl6 {
background-color: #30b814 !important
}
.bg-cg-hl7 {
background-color: #1a8a0f !important
}
.bg-cg-hl8 {
background-color: #0a5c0a !important
}
.bg-cg-hl9 {
background-color: #052e09 !important
}
.bg-cg-hm1 {
background-color: #e8f2d9 !important
}
.bg-cg-hm2 {
background-color: #cce6b3 !important
}
.bg-cg-hm3 {
background-color: #acd98c !important
}
.bg-cg-hm4 {
background-color: #88cc66 !important
}
.bg-cg-hm5 {
background-color: #60bf40 !important
}
.bg-cg-hm6 {
background-color: #449933 !important
}
.bg-cg-hm7 {
background-color: #2d7326 !important
}
.bg-cg-hm8 {
background-color: #194d19 !important
}
.bg-cg-hm9 {
background-color: #0d260f !important
}
.bg-cg-hd1 {
background-color: #e6ebe0 !important
}
.bg-cg-hd2 {
background-color: #ccd6c2 !important
}
.bg-cg-hd3 {
background-color: #b0c2a3 !important
}
.bg-cg-hd4 {
background-color: #92ad85 !important
}
.bg-cg-hd5 {
background-color: #739966 !important
}
.bg-cg-hd6 {
background-color: #587a52 !important
}
.bg-cg-hd7 {
background-color: #405c3d !important
}
.bg-cg-hd8 {
background-color: #293d29 !important
}
.bg-cg-hd9 {
background-color: #141f15 !important
}
.bg-gr-hl1 {
background-color: #dffad1 !important
}
.bg-gr-hl2 {
background-color: #b8f5a3 !important
}
.bg-gr-hl3 {
background-color: #8af075 !important
}
.bg-gr-hl4 {
background-color: #55eb47 !important
}
.bg-gr-hl5 {
background-color: #19e619 !important
}
.bg-gr-hl6 {
background-color: #14b822 !important
}
.bg-gr-hl7 {
background-color: #0f8a24 !important
}
.bg-gr-hl8 {
background-color: #0a5c1f !important
}
.bg-gr-hl9 {
background-color: #052e13 !important
}
.bg-gr-hm1 {
background-color: #e1f2d9 !important
}
.bg-gr-hm2 {
background-color: #bfe6b3 !important
}
.bg-gr-hm3 {
background-color: #99d98c !important
}
.bg-gr-hm4 {
background-color: #6fcc66 !important
}
.bg-gr-hm5 {
background-color: #40bf40 !important
}
.bg-gr-hm6 {
background-color: #33993c !important
}
.bg-gr-hm7 {
background-color: #267333 !important
}
.bg-gr-hm8 {
background-color: #194d26 !important
}
.bg-gr-hm9 {
background-color: #0d2615 !important
}
.bg-gr-hd1 {
background-color: #e4ebe0 !important
}
.bg-gr-hd2 {
background-color: #c7d6c2 !important
}
.bg-gr-hd3 {
background-color: #a8c2a3 !important
}
.bg-gr-hd4 {
background-color: #88ad85 !important
}
.bg-gr-hd5 {
background-color: #669966 !important
}
.bg-gr-hd6 {
background-color: #527a55 !important
}
.bg-gr-hd7 {
background-color: #3d5c42 !important
}
.bg-gr-hd8 {
background-color: #293d2e !important
}
.bg-gr-hd9 {
background-color: #141f18 !important
}
.bg-ga-hl1 {
background-color: #d5fad1 !important
}
.bg-ga-hl2 {
background-color: #a3f5a3 !important
}
.bg-ga-hl3 {
background-color: #75f080 !important
}
.bg-ga-hl4 {
background-color: #47eb63 !important
}
.bg-ga-hl5 {
background-color: #19e64d !important
}
.bg-ga-hl6 {
background-color: #14b84b !important
}
.bg-ga-hl7 {
background-color: #0f8a42 !important
}
.bg-ga-hl8 {
background-color: #0a5c33 !important
}
.bg-ga-hl9 {
background-color: #052e1d !important
}
.bg-ga-hm1 {
background-color: #dbf2d9 !important
}
.bg-ga-hm2 {
background-color: #b3e6b3 !important
}
.bg-ga-hm3 {
background-color: #8cd993 !important
}
.bg-ga-hm4 {
background-color: #66cc77 !important
}
.bg-ga-hm5 {
background-color: #40bf60 !important
}
.bg-ga-hm6 {
background-color: #339955 !important
}
.bg-ga-hm7 {
background-color: #267346 !important
}
.bg-ga-hm8 {
background-color: #194d33 !important
}
.bg-ga-hm9 {
background-color: #0d261c !important
}
.bg-ga-hd1 {
background-color: #e1ebe0 !important
}
.bg-ga-hd2 {
background-color: #c2d6c2 !important
}
.bg-ga-hd3 {
background-color: #a3c2a6 !important
}
.bg-ga-hd4 {
background-color: #85ad8b !important
}
.bg-ga-hd5 {
background-color: #669973 !important
}
.bg-ga-hd6 {
background-color: #527a5f !important
}
.bg-ga-hd7 {
background-color: #3d5c4a !important
}
.bg-ga-hd8 {
background-color: #293d33 !important
}
.bg-ga-hd9 {
background-color: #141f1a !important
}
.bg-aq-hl1 {
background-color: #d1fad8 !important
}
.bg-aq-hl2 {
background-color: #a3f5b8 !important
}
.bg-aq-hl3 {
background-color: #75f09e !important
}
.bg-aq-hl4 {
background-color: #47eb8b !important
}
.bg-aq-hl5 {
background-color: #19e680 !important
}
.bg-aq-hl6 {
background-color: #14b874 !important
}
.bg-aq-hl7 {
background-color: #0f8a61 !important
}
.bg-aq-hl8 {
background-color: #0a5c47 !important
}
.bg-aq-hl9 {
background-color: #052e27 !important
}
.bg-aq-hm1 {
background-color: #d9f2dd !important
}
.bg-aq-hm2 {
background-color: #b3e6bf !important
}
.bg-aq-hm3 {
background-color: #8cd9a6 !important
}
.bg-aq-hm4 {
background-color: #66cc91 !important
}
.bg-aq-hm5 {
background-color: #40bf80 !important
}
.bg-aq-hm6 {
background-color: #33996f !important
}
.bg-aq-hm7 {
background-color: #267359 !important
}
.bg-aq-hm8 {
background-color: #194d40 !important
}
.bg-aq-hm9 {
background-color: #0d2622 !important
}
.bg-aq-hd1 {
background-color: #e0ebe2 !important
}
.bg-aq-hd2 {
background-color: #c2d6c7 !important
}
.bg-aq-hd3 {
background-color: #a3c2ad !important
}
.bg-aq-hd4 {
background-color: #85ad96 !important
}
.bg-aq-hd5 {
background-color: #669980 !important
}
.bg-aq-hd6 {
background-color: #527a69 !important
}
.bg-aq-hd7 {
background-color: #3d5c52 !important
}
.bg-aq-hd8 {
background-color: #293d38 !important
}
.bg-aq-hd9 {
background-color: #141f1d !important
}
.bg-ac-hl1 {
background-color: #d1fae2 !important
}
.bg-ac-hl2 {
background-color: #a3f5cc !important
}
.bg-ac-hl3 {
background-color: #75f0bd !important
}
.bg-ac-hl4 {
background-color: #47ebb4 !important
}
.bg-ac-hl5 {
background-color: #19e6b3 !important
}
.bg-ac-hl6 {
background-color: #14b89c !important
}
.bg-ac-hl7 {
background-color: #0f8a80 !important
}
.bg-ac-hl8 {
background-color: #0a5c5c !important
}
.bg-ac-hl9 {
background-color: #052b2e !important
}
.bg-ac-hm1 {
background-color: #d9f2e3 !important
}
.bg-ac-hm2 {
background-color: #b3e6cc !important
}
.bg-ac-hm3 {
background-color: #8cd9b9 !important
}
.bg-ac-hm4 {
background-color: #66ccaa !important
}
.bg-ac-hm5 {
background-color: #40bf9f !important
}
.bg-ac-hm6 {
background-color: #339988 !important
}
.bg-ac-hm7 {
background-color: #26736c !important
}
.bg-ac-hm8 {
background-color: #194d4d !important
}
.bg-ac-hm9 {
background-color: #0d2426 !important
}
.bg-ac-hd1 {
background-color: #e0ebe5 !important
}
.bg-ac-hd2 {
background-color: #c2d6cc !important
}
.bg-ac-hd3 {
background-color: #a3c2b5 !important
}
.bg-ac-hd4 {
background-color: #85ada0 !important
}
.bg-ac-hd5 {
background-color: #66998c !important
}
.bg-ac-hd6 {
background-color: #527a74 !important
}
.bg-ac-hd7 {
background-color: #3d5c59 !important
}
.bg-ac-hd8 {
background-color: #293d3d !important
}
.bg-ac-hd9 {
background-color: #141e1f !important
}
.bg-cy-hl1 {
background-color: #d1faec !important
}
.bg-cy-hl2 {
background-color: #a3f5e0 !important
}
.bg-cy-hl3 {
background-color: #75f0db !important
}
.bg-cy-hl4 {
background-color: #47ebdd !important
}
.bg-cy-hl5 {
background-color: #19e5e6 !important
}
.bg-cy-hl6 {
background-color: #14aab8 !important
}
.bg-cy-hl7 {
background-color: #0f758a !important
}
.bg-cy-hl8 {
background-color: #0a475c !important
}
.bg-cy-hl9 {
background-color: #05202e !important
}
.bg-cy-hm1 {
background-color: #d9f2ea !important
}
.bg-cy-hm2 {
background-color: #b3e6d9 !important
}
.bg-cy-hm3 {
background-color: #8cd9cc !important
}
.bg-cy-hm4 {
background-color: #66ccc4 !important
}
.bg-cy-hm5 {
background-color: #40bfbf !important
}
.bg-cy-hm6 {
background-color: #339199 !important
}
.bg-cy-hm7 {
background-color: #266673 !important
}
.bg-cy-hm8 {
background-color: #19404d !important
}
.bg-cy-hm9 {
background-color: #0d1e26 !important
}
.bg-cy-hd1 {
background-color: #e0ebe7 !important
}
.bg-cy-hd2 {
background-color: #c2d6d1 !important
}
.bg-cy-hd3 {
background-color: #a3c2bd !important
}
.bg-cy-hd4 {
background-color: #85adaa !important
}
.bg-cy-hd5 {
background-color: #669999 !important
}
.bg-cy-hd6 {
background-color: #52777a !important
}
.bg-cy-hd7 {
background-color: #3d575c !important
}
.bg-cy-hd8 {
background-color: #29383d !important
}
.bg-cy-hd9 {
background-color: #141b1f !important
}
.bg-cb-hl1 {
background-color: #d1faf7 !important
}
.bg-cb-hl2 {
background-color: #a3f5f5 !important
}
.bg-cb-hl3 {
background-color: #75e6f0 !important
}
.bg-cb-hl4 {
background-color: #47cfeb !important
}
.bg-cb-hl5 {
background-color: #19b3e6 !important
}
.bg-cb-hl6 {
background-color: #1481b8 !important
}
.bg-cb-hl7 {
background-color: #0f578a !important
}
.bg-cb-hl8 {
background-color: #0a335c !important
}
.bg-cb-hl9 {
background-color: #05162e !important
}
.bg-cb-hm1 {
background-color: #d9f2f0 !important
}
.bg-cb-hm2 {
background-color: #b3e5e6 !important
}
.bg-cb-hm3 {
background-color: #8cd2d9 !important
}
.bg-cb-hm4 {
background-color: #66bbcc !important
}
.bg-cb-hm5 {
background-color: #409fbf !important
}
.bg-cb-hm6 {
background-color: #337799 !important
}
.bg-cb-hm7 {
background-color: #265373 !important
}
.bg-cb-hm8 {
background-color: #19334d !important
}
.bg-cb-hm9 {
background-color: #0d1726 !important
}
.bg-cb-hd1 {
background-color: #e0ebea !important
}
.bg-cb-hd2 {
background-color: #c2d6d6 !important
}
.bg-cb-hd3 {
background-color: #a3bfc2 !important
}
.bg-cb-hd4 {
background-color: #85a7ad !important
}
.bg-cb-hd5 {
background-color: #668c99 !important
}
.bg-cb-hd6 {
background-color: #526d7a !important
}
.bg-cb-hd7 {
background-color: #3d4f5c !important
}
.bg-cb-hd8 {
background-color: #29333d !important
}
.bg-cb-hd9 {
background-color: #14191f !important
}
.bg-bl-hl1 {
background-color: #d1f3fa !important
}
.bg-bl-hl2 {
background-color: #a3e0f5 !important
}
.bg-bl-hl3 {
background-color: #75c7f0 !important
}
.bg-bl-hl4 {
background-color: #47a7eb !important
}
.bg-bl-hl5 {
background-color: #197fe6 !important
}
.bg-bl-hl6 {
background-color: #1458b8 !important
}
.bg-bl-hl7 {
background-color: #0f388a !important
}
.bg-bl-hl8 {
background-color: #0a1f5c !important
}
.bg-bl-hl9 {
background-color: #050c2e !important
}
.bg-bl-hm1 {
background-color: #d9eef2 !important
}
.bg-bl-hm2 {
background-color: #b3d9e6 !important
}
.bg-bl-hm3 {
background-color: #8cbfd9 !important
}
.bg-bl-hm4 {
background-color: #66a1cc !important
}
.bg-bl-hm5 {
background-color: #407fbf !important
}
.bg-bl-hm6 {
background-color: #335d99 !important
}
.bg-bl-hm7 {
background-color: #264073 !important
}
.bg-bl-hm8 {
background-color: #19264d !important
}
.bg-bl-hm9 {
background-color: #0d1126 !important
}
.bg-bl-hd1 {
background-color: #e0e9eb !important
}
.bg-bl-hd2 {
background-color: #c2d1d6 !important
}
.bg-bl-hd3 {
background-color: #a3b8c2 !important
}
.bg-bl-hd4 {
background-color: #859cad !important
}
.bg-bl-hd5 {
background-color: #667f99 !important
}
.bg-bl-hd6 {
background-color: #52637a !important
}
.bg-bl-hd7 {
background-color: #3d475c !important
}
.bg-bl-hd8 {
background-color: #292e3d !important
}
.bg-bl-hd9 {
background-color: #14161f !important
}
.bg-bi-hl1 {
background-color: #d1e9fa !important
}
.bg-bi-hl2 {
background-color: #a3ccf5 !important
}
.bg-bi-hl3 {
background-color: #75a8f0 !important
}
.bg-bi-hl4 {
background-color: #477eeb !important
}
.bg-bi-hl5 {
background-color: #194ce6 !important
}
.bg-bi-hl6 {
background-color: #1430b8 !important
}
.bg-bi-hl7 {
background-color: #0f198a !important
}
.bg-bi-hl8 {
background-color: #0a0a5c !important
}
.bg-bi-hl9 {
background-color: #08052e !important
}
.bg-bi-hm1 {
background-color: #d9e8f2 !important
}
.bg-bi-hm2 {
background-color: #b3cce6 !important
}
.bg-bi-hm3 {
background-color: #8cacd9 !important
}
.bg-bi-hm4 {
background-color: #6688cc !important
}
.bg-bi-hm5 {
background-color: #4060bf !important
}
.bg-bi-hm6 {
background-color: #334499 !important
}
.bg-bi-hm7 {
background-color: #262d73 !important
}
.bg-bi-hm8 {
background-color: #19194d !important
}
.bg-bi-hm9 {
background-color: #0f0d26 !important
}
.bg-bi-hd1 {
background-color: #e0e6eb !important
}
.bg-bi-hd2 {
background-color: #c2ccd6 !important
}
.bg-bi-hd3 {
background-color: #a3b0c2 !important
}
.bg-bi-hd4 {
background-color: #8592ad !important
}
.bg-bi-hd5 {
background-color: #667399 !important
}
.bg-bi-hd6 {
background-color: #52587a !important
}
.bg-bi-hd7 {
background-color: #3d405c !important
}
.bg-bi-hd8 {
background-color: #29293d !important
}
.bg-bi-hd9 {
background-color: #15141f !important
}
.bg-in-hl1 {
background-color: #d1dffa !important
}
.bg-in-hl2 {
background-color: #a3b8f5 !important
}
.bg-in-hl3 {
background-color: #758af0 !important
}
.bg-in-hl4 {
background-color: #4755eb !important
}
.bg-in-hl5 {
background-color: #1919e6 !important
}
.bg-in-hl6 {
background-color: #2214b8 !important
}
.bg-in-hl7 {
background-color: #240f8a !important
}
.bg-in-hl8 {
background-color: #1f0a5c !important
}
.bg-in-hl9 {
background-color: #13052e !important
}
.bg-in-hm1 {
background-color: #d9e1f2 !important
}
.bg-in-hm2 {
background-color: #b3bfe6 !important
}
.bg-in-hm3 {
background-color: #8c99d9 !important
}
.bg-in-hm4 {
background-color: #666ecc !important
}
.bg-in-hm5 {
background-color: #4040bf !important
}
.bg-in-hm6 {
background-color: #3b3399 !important
}
.bg-in-hm7 {
background-color: #332673 !important
}
.bg-in-hm8 {
background-color: #26194d !important
}
.bg-in-hm9 {
background-color: #150d26 !important
}
.bg-in-hd1 {
background-color: #e0e4eb !important
}
.bg-in-hd2 {
background-color: #c2c7d6 !important
}
.bg-in-hd3 {
background-color: #a3a8c2 !important
}
.bg-in-hd4 {
background-color: #8588ad !important
}
.bg-in-hd5 {
background-color: #666699 !important
}
.bg-in-hd6 {
background-color: #55527a !important
}
.bg-in-hd7 {
background-color: #423d5c !important
}
.bg-in-hd8 {
background-color: #2e293d !important
}
.bg-in-hd9 {
background-color: #18141f !important
}
.bg-ip-hl1 {
background-color: #d1d4fa !important
}
.bg-ip-hl2 {
background-color: #a3a3f5 !important
}
.bg-ip-hl3 {
background-color: #8075f0 !important
}
.bg-ip-hl4 {
background-color: #6347eb !important
}
.bg-ip-hl5 {
background-color: #4d19e6 !important
}
.bg-ip-hl6 {
background-color: #4b14b8 !important
}
.bg-ip-hl7 {
background-color: #420f8a !important
}
.bg-ip-hl8 {
background-color: #330a5c !important
}
.bg-ip-hl9 {
background-color: #1d052e !important
}
.bg-ip-hm1 {
background-color: #d9dbf2 !important
}
.bg-ip-hm2 {
background-color: #b3b3e6 !important
}
.bg-ip-hm3 {
background-color: #938cd9 !important
}
.bg-ip-hm4 {
background-color: #7766cc !important
}
.bg-ip-hm5 {
background-color: #6040bf !important
}
.bg-ip-hm6 {
background-color: #553399 !important
}
.bg-ip-hm7 {
background-color: #462673 !important
}
.bg-ip-hm8 {
background-color: #33194d !important
}
.bg-ip-hm9 {
background-color: #1c0d26 !important
}
.bg-ip-hd1 {
background-color: #e0e1eb !important
}
.bg-ip-hd2 {
background-color: #c2c2d6 !important
}
.bg-ip-hd3 {
background-color: #a6a3c2 !important
}
.bg-ip-hd4 {
background-color: #8b85ad !important
}
.bg-ip-hd5 {
background-color: #736699 !important
}
.bg-ip-hd6 {
background-color: #5f527a !important
}
.bg-ip-hd7 {
background-color: #4a3d5c !important
}
.bg-ip-hd8 {
background-color: #33293d !important
}
.bg-ip-hd9 {
background-color: #1a141f !important
}
.bg-pu-hl1 {
background-color: #d8d1fa !important
}
.bg-pu-hl2 {
background-color: #b8a3f5 !important
}
.bg-pu-hl3 {
background-color: #9e75f0 !important
}
.bg-pu-hl4 {
background-color: #8b47eb !important
}
.bg-pu-hl5 {
background-color: #7f19e6 !important
}
.bg-pu-hl6 {
background-color: #7414b8 !important
}
.bg-pu-hl7 {
background-color: #610f8a !important
}
.bg-pu-hl8 {
background-color: #470a5c !important
}
.bg-pu-hl9 {
background-color: #27052e !important
}
.bg-pu-hm1 {
background-color: #ddd9f2 !important
}
.bg-pu-hm2 {
background-color: #bfb3e6 !important
}
.bg-pu-hm3 {
background-color: #a68cd9 !important
}
.bg-pu-hm4 {
background-color: #9066cc !important
}
.bg-pu-hm5 {
background-color: #7f40bf !important
}
.bg-pu-hm6 {
background-color: #6e3399 !important
}
.bg-pu-hm7 {
background-color: #592673 !important
}
.bg-pu-hm8 {
background-color: #40194d !important
}
.bg-pu-hm9 {
background-color: #220d26 !important
}
.bg-pu-hd1 {
background-color: #e2e0eb !important
}
.bg-pu-hd2 {
background-color: #c7c2d6 !important
}
.bg-pu-hd3 {
background-color: #ada3c2 !important
}
.bg-pu-hd4 {
background-color: #9685ad !important
}
.bg-pu-hd5 {
background-color: #7f6699 !important
}
.bg-pu-hd6 {
background-color: #69527a !important
}
.bg-pu-hd7 {
background-color: #523d5c !important
}
.bg-pu-hd8 {
background-color: #38293d !important
}
.bg-pu-hd9 {
background-color: #1d141f !important
}
.bg-pp-hl1 {
background-color: #e2d1fa !important
}
.bg-pp-hl2 {
background-color: #cca3f5 !important
}
.bg-pp-hl3 {
background-color: #bd75f0 !important
}
.bg-pp-hl4 {
background-color: #b447eb !important
}
.bg-pp-hl5 {
background-color: #b319e6 !important
}
.bg-pp-hl6 {
background-color: #9c14b8 !important
}
.bg-pp-hl7 {
background-color: #7f0f8a !important
}
.bg-pp-hl8 {
background-color: #5c0a5c !important
}
.bg-pp-hl9 {
background-color: #2e052b !important
}
.bg-pp-hm1 {
background-color: #e3d9f2 !important
}
.bg-pp-hm2 {
background-color: #ccb3e6 !important
}
.bg-pp-hm3 {
background-color: #b98cd9 !important
}
.bg-pp-hm4 {
background-color: #aa66cc !important
}
.bg-pp-hm5 {
background-color: #9f40bf !important
}
.bg-pp-hm6 {
background-color: #883399 !important
}
.bg-pp-hm7 {
background-color: #6c2673 !important
}
.bg-pp-hm8 {
background-color: #4d194d !important
}
.bg-pp-hm9 {
background-color: #260d24 !important
}
.bg-pp-hd1 {
background-color: #e5e0eb !important
}
.bg-pp-hd2 {
background-color: #ccc2d6 !important
}
.bg-pp-hd3 {
background-color: #b5a3c2 !important
}
.bg-pp-hd4 {
background-color: #a085ad !important
}
.bg-pp-hd5 {
background-color: #8c6699 !important
}
.bg-pp-hd6 {
background-color: #74527a !important
}
.bg-pp-hd7 {
background-color: #593d5c !important
}
.bg-pp-hd8 {
background-color: #3d293d !important
}
.bg-pp-hd9 {
background-color: #1f141e !important
}
.bg-pi-hl1 {
background-color: #ecd1fa !important
}
.bg-pi-hl2 {
background-color: #e0a3f5 !important
}
.bg-pi-hl3 {
background-color: #db75f0 !important
}
.bg-pi-hl4 {
background-color: #dd47eb !important
}
.bg-pi-hl5 {
background-color: #e619e5 !important
}
.bg-pi-hl6 {
background-color: #b814aa !important
}
.bg-pi-hl7 {
background-color: #8a0f75 !important
}
.bg-pi-hl8 {
background-color: #5c0a47 !important
}
.bg-pi-hl9 {
background-color: #2e0520 !important
}
.bg-pi-hm1 {
background-color: #ead9f2 !important
}
.bg-pi-hm2 {
background-color: #d9b3e6 !important
}
.bg-pi-hm3 {
background-color: #cc8cd9 !important
}
.bg-pi-hm4 {
background-color: #c366cc !important
}
.bg-pi-hm5 {
background-color: #bf40bf !important
}
.bg-pi-hm6 {
background-color: #993391 !important
}
.bg-pi-hm7 {
background-color: #732666 !important
}
.bg-pi-hm8 {
background-color: #4d1940 !important
}
.bg-pi-hm9 {
background-color: #260d1e !important
}
.bg-pi-hd1 {
background-color: #e7e0eb !important
}
.bg-pi-hd2 {
background-color: #d1c2d6 !important
}
.bg-pi-hd3 {
background-color: #bda3c2 !important
}
.bg-pi-hd4 {
background-color: #aa85ad !important
}
.bg-pi-hd5 {
background-color: #996699 !important
}
.bg-pi-hd6 {
background-color: #7a5277 !important
}
.bg-pi-hd7 {
background-color: #5c3d57 !important
}
.bg-pi-hd8 {
background-color: #3d2938 !important
}
.bg-pi-hd9 {
background-color: #1f141b !important
}
.bg-pv-hl1 {
background-color: #f7d1fa !important
}
.bg-pv-hl2 {
background-color: #f5a3f5 !important
}
.bg-pv-hl3 {
background-color: #f075e5 !important
}
.bg-pv-hl4 {
background-color: #eb47cf !important
}
.bg-pv-hl5 {
background-color: #e619b2 !important
}
.bg-pv-hl6 {
background-color: #b81481 !important
}
.bg-pv-hl7 {
background-color: #8a0f57 !important
}
.bg-pv-hl8 {
background-color: #5c0a33 !important
}
.bg-pv-hl9 {
background-color: #2e0516 !important
}
.bg-pv-hm1 {
background-color: #f0d9f2 !important
}
.bg-pv-hm2 {
background-color: #e6b3e5 !important
}
.bg-pv-hm3 {
background-color: #d98cd2 !important
}
.bg-pv-hm4 {
background-color: #cc66bb !important
}
.bg-pv-hm5 {
background-color: #bf409f !important
}
.bg-pv-hm6 {
background-color: #993377 !important
}
.bg-pv-hm7 {
background-color: #732653 !important
}
.bg-pv-hm8 {
background-color: #4d1933 !important
}
.bg-pv-hm9 {
background-color: #260d17 !important
}
.bg-pv-hd1 {
background-color: #eae0eb !important
}
.bg-pv-hd2 {
background-color: #d6c2d6 !important
}
.bg-pv-hd3 {
background-color: #c2a3bf !important
}
.bg-pv-hd4 {
background-color: #ad85a7 !important
}
.bg-pv-hd5 {
background-color: #99668c !important
}
.bg-pv-hd6 {
background-color: #7a526d !important
}
.bg-pv-hd7 {
background-color: #5c3d4f !important
}
.bg-pv-hd8 {
background-color: #3d2933 !important
}
.bg-pv-hd9 {
background-color: #1f1419 !important
}
.bg-vi-hl1 {
background-color: #fad1f3 !important
}
.bg-vi-hl2 {
background-color: #f5a3e0 !important
}
.bg-vi-hl3 {
background-color: #f075c7 !important
}
.bg-vi-hl4 {
background-color: #eb47a7 !important
}
.bg-vi-hl5 {
background-color: #e61980 !important
}
.bg-vi-hl6 {
background-color: #b81458 !important
}
.bg-vi-hl7 {
background-color: #8a0f38 !important
}
.bg-vi-hl8 {
background-color: #5c0a1f !important
}
.bg-vi-hl9 {
background-color: #2e050c !important
}
.bg-vi-hm1 {
background-color: #f2d9ee !important
}
.bg-vi-hm2 {
background-color: #e6b3d9 !important
}
.bg-vi-hm3 {
background-color: #d98cbf !important
}
.bg-vi-hm4 {
background-color: #cc66a2 !important
}
.bg-vi-hm5 {
background-color: #bf4080 !important
}
.bg-vi-hm6 {
background-color: #99335d !important
}
.bg-vi-hm7 {
background-color: #732640 !important
}
.bg-vi-hm8 {
background-color: #4d1926 !important
}
.bg-vi-hm9 {
background-color: #260d11 !important
}
.bg-vi-hd1 {
background-color: #ebe0e9 !important
}
.bg-vi-hd2 {
background-color: #d6c2d1 !important
}
.bg-vi-hd3 {
background-color: #c2a3b8 !important
}
.bg-vi-hd4 {
background-color: #ad859c !important
}
.bg-vi-hd5 {
background-color: #996680 !important
}
.bg-vi-hd6 {
background-color: #7a5263 !important
}
.bg-vi-hd7 {
background-color: #5c3d47 !important
}
.bg-vi-hd8 {
background-color: #3d292e !important
}
.bg-vi-hd9 {
background-color: #1f1416 !important
}
.bg-vr-hl1 {
background-color: #fad1e9 !important
}
.bg-vr-hl2 {
background-color: #f5a3cc !important
}
.bg-vr-hl3 {
background-color: #f075a8 !important
}
.bg-vr-hl4 {
background-color: #eb477e !important
}
.bg-vr-hl5 {
background-color: #e6194c !important
}
.bg-vr-hl6 {
background-color: #b81430 !important
}
.bg-vr-hl7 {
background-color: #8a0f19 !important
}
.bg-vr-hl8 {
background-color: #5c0a0a !important
}
.bg-vr-hl9 {
background-color: #2e0805 !important
}
.bg-vr-hm1 {
background-color: #f2d9e8 !important
}
.bg-vr-hm2 {
background-color: #e6b3cc !important
}
.bg-vr-hm3 {
background-color: #d98cac !important
}
.bg-vr-hm4 {
background-color: #cc6688 !important
}
.bg-vr-hm5 {
background-color: #bf4060 !important
}
.bg-vr-hm6 {
background-color: #993344 !important
}
.bg-vr-hm7 {
background-color: #73262d !important
}
.bg-vr-hm8 {
background-color: #4d1919 !important
}
.bg-vr-hm9 {
background-color: #260f0d !important
}
.bg-vr-hd1 {
background-color: #ebe0e6 !important
}
.bg-vr-hd2 {
background-color: #d6c2cc !important
}
.bg-vr-hd3 {
background-color: #c2a3b0 !important
}
.bg-vr-hd4 {
background-color: #ad8592 !important
}
.bg-vr-hd5 {
background-color: #996673 !important
}
.bg-vr-hd6 {
background-color: #7a5258 !important
}
.bg-vr-hd7 {
background-color: #5c3d40 !important
}
.bg-vr-hd8 {
background-color: #3d2929 !important
}
.bg-vr-hd9 {
background-color: #1f1514 !important
}
.t-re-hl1 {
color: #fad1df !important
}
.t-re-hl2 {
color: #f5a3b8 !important
}
.t-re-hl3 {
color: #f0758a !important
}
.t-re-hl4 {
color: #eb4755 !important
}
.t-re-hl5 {
color: #e61919 !important
}
.t-re-hl6 {
color: #b82214 !important
}
.t-re-hl7 {
color: #8a240f !important
}
.t-re-hl8 {
color: #5c1f0a !important
}
.t-re-hl9 {
color: #2e1305 !important
}
.t-re-hm1 {
color: #f2d9e1 !important
}
.t-re-hm2 {
color: #e6b3bf !important
}
.t-re-hm3 {
color: #d98c99 !important
}
.t-re-hm4 {
color: #cc666e !important
}
.t-re-hm5 {
color: #bf4040 !important
}
.t-re-hm6 {
color: #993b33 !important
}
.t-re-hm7 {
color: #733326 !important
}
.t-re-hm8 {
color: #4d2619 !important
}
.t-re-hm9 {
color: #26150d !important
}
.t-re-hd1 {
color: #ebe0e4 !important
}
.t-re-hd2 {
color: #d6c2c7 !important
}
.t-re-hd3 {
color: #c2a3a8 !important
}
.t-re-hd4 {
color: #ad8588 !important
}
.t-re-hd5 {
color: #996666 !important
}
.t-re-hd6 {
color: #7a5552 !important
}
.t-re-hd7 {
color: #5c423d !important
}
.t-re-hd8 {
color: #3d2e29 !important
}
.t-re-hd9 {
color: #1f1814 !important
}
.t-ro-hl1 {
color: #fad1d4 !important
}
.t-ro-hl2 {
color: #f5a3a3 !important
}
.t-ro-hl3 {
color: #f07f75 !important
}
.t-ro-hl4 {
color: #eb6347 !important
}
.t-ro-hl5 {
color: #e64d19 !important
}
.t-ro-hl6 {
color: #b84b14 !important
}
.t-ro-hl7 {
color: #8a420f !important
}
.t-ro-hl8 {
color: #5c330a !important
}
.t-ro-hl9 {
color: #2e1d05 !important
}
.t-ro-hm1 {
color: #f2d9db !important
}
.t-ro-hm2 {
color: #e6b3b3 !important
}
.t-ro-hm3 {
color: #d9938c !important
}
.t-ro-hm4 {
color: #cc7766 !important
}
.t-ro-hm5 {
color: #bf6040 !important
}
.t-ro-hm6 {
color: #995533 !important
}
.t-ro-hm7 {
color: #734626 !important
}
.t-ro-hm8 {
color: #4d3319 !important
}
.t-ro-hm9 {
color: #261c0d !important
}
.t-ro-hd1 {
color: #ebe0e1 !important
}
.t-ro-hd2 {
color: #d6c2c2 !important
}
.t-ro-hd3 {
color: #c2a6a3 !important
}
.t-ro-hd4 {
color: #ad8b85 !important
}
.t-ro-hd5 {
color: #997366 !important
}
.t-ro-hd6 {
color: #7a5f52 !important
}
.t-ro-hd7 {
color: #5c4a3d !important
}
.t-ro-hd8 {
color: #3d3329 !important
}
.t-ro-hd9 {
color: #1f1a14 !important
}
.t-or-hl1 {
color: #fad8d1 !important
}
.t-or-hl2 {
color: #f5b8a3 !important
}
.t-or-hl3 {
color: #f09e75 !important
}
.t-or-hl4 {
color: #eb8b47 !important
}
.t-or-hl5 {
color: #e68019 !important
}
.t-or-hl6 {
color: #b87414 !important
}
.t-or-hl7 {
color: #8a610f !important
}
.t-or-hl8 {
color: #5c470a !important
}
.t-or-hl9 {
color: #2e2705 !important
}
.t-or-hm1 {
color: #f2ddd9 !important
}
.t-or-hm2 {
color: #e6bfb3 !important
}
.t-or-hm3 {
color: #d9a68c !important
}
.t-or-hm4 {
color: #cc9166 !important
}
.t-or-hm5 {
color: #bf8040 !important
}
.t-or-hm6 {
color: #996f33 !important
}
.t-or-hm7 {
color: #735926 !important
}
.t-or-hm8 {
color: #4d4019 !important
}
.t-or-hm9 {
color: #26220d !important
}
.t-or-hd1 {
color: #ebe2e0 !important
}
.t-or-hd2 {
color: #d6c7c2 !important
}
.t-or-hd3 {
color: #c2ada3 !important
}
.t-or-hd4 {
color: #ad9685 !important
}
.t-or-hd5 {
color: #998066 !important
}
.t-or-hd6 {
color: #7a6952 !important
}
.t-or-hd7 {
color: #5c523d !important
}
.t-or-hd8 {
color: #3d3829 !important
}
.t-or-hd9 {
color: #1f1d14 !important
}
.t-oy-hl1 {
color: #fae2d1 !important
}
.t-oy-hl2 {
color: #f5cca3 !important
}
.t-oy-hl3 {
color: #f0bd75 !important
}
.t-oy-hl4 {
color: #ebb447 !important
}
.t-oy-hl5 {
color: #e6b319 !important
}
.t-oy-hl6 {
color: #b89c14 !important
}
.t-oy-hl7 {
color: #8a800f !important
}
.t-oy-hl8 {
color: #5c5c0a !important
}
.t-oy-hl9 {
color: #2b2e05 !important
}
.t-oy-hm1 {
color: #f2e3d9 !important
}
.t-oy-hm2 {
color: #e6ccb3 !important
}
.t-oy-hm3 {
color: #d9b98c !important
}
.t-oy-hm4 {
color: #ccaa66 !important
}
.t-oy-hm5 {
color: #bf9f40 !important
}
.t-oy-hm6 {
color: #998833 !important
}
.t-oy-hm7 {
color: #736c26 !important
}
.t-oy-hm8 {
color: #4d4d19 !important
}
.t-oy-hm9 {
color: #24260d !important
}
.t-oy-hd1 {
color: #ebe5e0 !important
}
.t-oy-hd2 {
color: #d6ccc2 !important
}
.t-oy-hd3 {
color: #c2b5a3 !important
}
.t-oy-hd4 {
color: #ada085 !important
}
.t-oy-hd5 {
color: #998c66 !important
}
.t-oy-hd6 {
color: #7a7452 !important
}
.t-oy-hd7 {
color: #5c593d !important
}
.t-oy-hd8 {
color: #3d3d29 !important
}
.t-oy-hd9 {
color: #1e1f14 !important
}
.t-ye-hl1 {
color: #faecd1 !important
}
.t-ye-hl2 {
color: #f5e0a3 !important
}
.t-ye-hl3 {
color: #f0db75 !important
}
.t-ye-hl4 {
color: #ebdd47 !important
}
.t-ye-hl5 {
color: #e5e619 !important
}
.t-ye-hl6 {
color: #aab814 !important
}
.t-ye-hl7 {
color: #758a0f !important
}
.t-ye-hl8 {
color: #475c0a !important
}
.t-ye-hl9 {
color: #202e05 !important
}
.t-ye-hm1 {
color: #f2ead9 !important
}
.t-ye-hm2 {
color: #e6d9b3 !important
}
.t-ye-hm3 {
color: #d9cc8c !important
}
.t-ye-hm4 {
color: #ccc466 !important
}
.t-ye-hm5 {
color: #bfbf40 !important
}
.t-ye-hm6 {
color: #909933 !important
}
.t-ye-hm7 {
color: #667326 !important
}
.t-ye-hm8 {
color: #404d19 !important
}
.t-ye-hm9 {
color: #1e260d !important
}
.t-ye-hd1 {
color: #ebe7e0 !important
}
.t-ye-hd2 {
color: #d6d1c2 !important
}
.t-ye-hd3 {
color: #c2bda3 !important
}
.t-ye-hd4 {
color: #adaa85 !important
}
.t-ye-hd5 {
color: #999966 !important
}
.t-ye-hd6 {
color: #777a52 !important
}
.t-ye-hd7 {
color: #575c3d !important
}
.t-ye-hd8 {
color: #383d29 !important
}
.t-ye-hd9 {
color: #1b1f14 !important
}
.t-yc-hl1 {
color: #faf7d1 !important
}
.t-yc-hl2 {
color: #f5f5a3 !important
}
.t-yc-hl3 {
color: #e6f075 !important
}
.t-yc-hl4 {
color: #cfeb47 !important
}
.t-yc-hl5 {
color: #b3e619 !important
}
.t-yc-hl6 {
color: #81b814 !important
}
.t-yc-hl7 {
color: #578a0f !important
}
.t-yc-hl8 {
color: #335c0a !important
}
.t-yc-hl9 {
color: #162e05 !important
}
.t-yc-hm1 {
color: #f2f0d9 !important
}
.t-yc-hm2 {
color: #e5e6b3 !important
}
.t-yc-hm3 {
color: #d2d98c !important
}
.t-yc-hm4 {
color: #bbcc66 !important
}
.t-yc-hm5 {
color: #9fbf40 !important
}
.t-yc-hm6 {
color: #779933 !important
}
.t-yc-hm7 {
color: #537326 !important
}
.t-yc-hm8 {
color: #334d19 !important
}
.t-yc-hm9 {
color: #17260d !important
}
.t-yc-hd1 {
color: #ebeae0 !important
}
.t-yc-hd2 {
color: #d6d6c2 !important
}
.t-yc-hd3 {
color: #bfc2a3 !important
}
.t-yc-hd4 {
color: #a7ad85 !important
}
.t-yc-hd5 {
color: #8c9966 !important
}
.t-yc-hd6 {
color: #6d7a52 !important
}
.t-yc-hd7 {
color: #4f5c3d !important
}
.t-yc-hd8 {
color: #333d29 !important
}
.t-yc-hd9 {
color: #191f14 !important
}
.t-ch-hl1 {
color: #f3fad1 !important
}
.t-ch-hl2 {
color: #e0f5a3 !important
}
.t-ch-hl3 {
color: #c7f075 !important
}
.t-ch-hl4 {
color: #a7eb47 !important
}
.t-ch-hl5 {
color: #80e619 !important
}
.t-ch-hl6 {
color: #58b814 !important
}
.t-ch-hl7 {
color: #388a0f !important
}
.t-ch-hl8 {
color: #1f5c0a !important
}
.t-ch-hl9 {
color: #0c2e05 !important
}
.t-ch-hm1 {
color: #eef2d9 !important
}
.t-ch-hm2 {
color: #d9e6b3 !important
}
.t-ch-hm3 {
color: #bfd98c !important
}
.t-ch-hm4 {
color: #a2cc66 !important
}
.t-ch-hm5 {
color: #80bf40 !important
}
.t-ch-hm6 {
color: #5e9933 !important
}
.t-ch-hm7 {
color: #407326 !important
}
.t-ch-hm8 {
color: #264d19 !important
}
.t-ch-hm9 {
color: #11260d !important
}
.t-ch-hd1 {
color: #e9ebe0 !important
}
.t-ch-hd2 {
color: #d1d6c2 !important
}
.t-ch-hd3 {
color: #b8c2a3 !important
}
.t-ch-hd4 {
color: #9cad85 !important
}
.t-ch-hd5 {
color: #809966 !important
}
.t-ch-hd6 {
color: #637a52 !important
}
.t-ch-hd7 {
color: #475c3d !important
}
.t-ch-hd8 {
color: #2e3d29 !important
}
.t-ch-hd9 {
color: #161f14 !important
}
.t-cg-hl1 {
color: #e9fad1 !important
}
.t-cg-hl2 {
color: #ccf5a3 !important
}
.t-cg-hl3 {
color: #a8f075 !important
}
.t-cg-hl4 {
color: #7eeb47 !important
}
.t-cg-hl5 {
color: #4ce619 !important
}
.t-cg-hl6 {
color: #30b814 !important
}
.t-cg-hl7 {
color: #1a8a0f !important
}
.t-cg-hl8 {
color: #0a5c0a !important
}
.t-cg-hl9 {
color: #052e09 !important
}
.t-cg-hm1 {
color: #e8f2d9 !important
}
.t-cg-hm2 {
color: #cce6b3 !important
}
.t-cg-hm3 {
color: #acd98c !important
}
.t-cg-hm4 {
color: #88cc66 !important
}
.t-cg-hm5 {
color: #60bf40 !important
}
.t-cg-hm6 {
color: #449933 !important
}
.t-cg-hm7 {
color: #2d7326 !important
}
.t-cg-hm8 {
color: #194d19 !important
}
.t-cg-hm9 {
color: #0d260f !important
}
.t-cg-hd1 {
color: #e6ebe0 !important
}
.t-cg-hd2 {
color: #ccd6c2 !important
}
.t-cg-hd3 {
color: #b0c2a3 !important
}
.t-cg-hd4 {
color: #92ad85 !important
}
.t-cg-hd5 {
color: #739966 !important
}
.t-cg-hd6 {
color: #587a52 !important
}
.t-cg-hd7 {
color: #405c3d !important
}
.t-cg-hd8 {
color: #293d29 !important
}
.t-cg-hd9 {
color: #141f15 !important
}
.t-gr-hl1 {
color: #dffad1 !important
}
.t-gr-hl2 {
color: #b8f5a3 !important
}
.t-gr-hl3 {
color: #8af075 !important
}
.t-gr-hl4 {
color: #55eb47 !important
}
.t-gr-hl5 {
color: #19e619 !important
}
.t-gr-hl6 {
color: #14b822 !important
}
.t-gr-hl7 {
color: #0f8a24 !important
}
.t-gr-hl8 {
color: #0a5c1f !important
}
.t-gr-hl9 {
color: #052e13 !important
}
.t-gr-hm1 {
color: #e1f2d9 !important
}
.t-gr-hm2 {
color: #bfe6b3 !important
}
.t-gr-hm3 {
color: #99d98c !important
}
.t-gr-hm4 {
color: #6fcc66 !important
}
.t-gr-hm5 {
color: #40bf40 !important
}
.t-gr-hm6 {
color: #33993c !important
}
.t-gr-hm7 {
color: #267333 !important
}
.t-gr-hm8 {
color: #194d26 !important
}
.t-gr-hm9 {
color: #0d2615 !important
}
.t-gr-hd1 {
color: #e4ebe0 !important
}
.t-gr-hd2 {
color: #c7d6c2 !important
}
.t-gr-hd3 {
color: #a8c2a3 !important
}
.t-gr-hd4 {
color: #88ad85 !important
}
.t-gr-hd5 {
color: #669966 !important
}
.t-gr-hd6 {
color: #527a55 !important
}
.t-gr-hd7 {
color: #3d5c42 !important
}
.t-gr-hd8 {
color: #293d2e !important
}
.t-gr-hd9 {
color: #141f18 !important
}
.t-ga-hl1 {
color: #d5fad1 !important
}
.t-ga-hl2 {
color: #a3f5a3 !important
}
.t-ga-hl3 {
color: #75f080 !important
}
.t-ga-hl4 {
color: #47eb63 !important
}
.t-ga-hl5 {
color: #19e64d !important
}
.t-ga-hl6 {
color: #14b84b !important
}
.t-ga-hl7 {
color: #0f8a42 !important
}
.t-ga-hl8 {
color: #0a5c33 !important
}
.t-ga-hl9 {
color: #052e1d !important
}
.t-ga-hm1 {
color: #dbf2d9 !important
}
.t-ga-hm2 {
color: #b3e6b3 !important
}
.t-ga-hm3 {
color: #8cd993 !important
}
.t-ga-hm4 {
color: #66cc77 !important
}
.t-ga-hm5 {
color: #40bf60 !important
}
.t-ga-hm6 {
color: #339955 !important
}
.t-ga-hm7 {
color: #267346 !important
}
.t-ga-hm8 {
color: #194d33 !important
}
.t-ga-hm9 {
color: #0d261c !important
}
.t-ga-hd1 {
color: #e1ebe0 !important
}
.t-ga-hd2 {
color: #c2d6c2 !important
}
.t-ga-hd3 {
color: #a3c2a6 !important
}
.t-ga-hd4 {
color: #85ad8b !important
}
.t-ga-hd5 {
color: #669973 !important
}
.t-ga-hd6 {
color: #527a5f !important
}
.t-ga-hd7 {
color: #3d5c4a !important
}
.t-ga-hd8 {
color: #293d33 !important
}
.t-ga-hd9 {
color: #141f1a !important
}
.t-aq-hl1 {
color: #d1fad8 !important
}
.t-aq-hl2 {
color: #a3f5b8 !important
}
.t-aq-hl3 {
color: #75f09e !important
}
.t-aq-hl4 {
color: #47eb8b !important
}
.t-aq-hl5 {
color: #19e680 !important
}
.t-aq-hl6 {
color: #14b874 !important
}
.t-aq-hl7 {
color: #0f8a61 !important
}
.t-aq-hl8 {
color: #0a5c47 !important
}
.t-aq-hl9 {
color: #052e27 !important
}
.t-aq-hm1 {
color: #d9f2dd !important
}
.t-aq-hm2 {
color: #b3e6bf !important
}
.t-aq-hm3 {
color: #8cd9a6 !important
}
.t-aq-hm4 {
color: #66cc91 !important
}
.t-aq-hm5 {
color: #40bf80 !important
}
.t-aq-hm6 {
color: #33996f !important
}
.t-aq-hm7 {
color: #267359 !important
}
.t-aq-hm8 {
color: #194d40 !important
}
.t-aq-hm9 {
color: #0d2622 !important
}
.t-aq-hd1 {
color: #e0ebe2 !important
}
.t-aq-hd2 {
color: #c2d6c7 !important
}
.t-aq-hd3 {
color: #a3c2ad !important
}
.t-aq-hd4 {
color: #85ad96 !important
}
.t-aq-hd5 {
color: #669980 !important
}
.t-aq-hd6 {
color: #527a69 !important
}
.t-aq-hd7 {
color: #3d5c52 !important
}
.t-aq-hd8 {
color: #293d38 !important
}
.t-aq-hd9 {
color: #141f1d !important
}
.t-ac-hl1 {
color: #d1fae2 !important
}
.t-ac-hl2 {
color: #a3f5cc !important
}
.t-ac-hl3 {
color: #75f0bd !important
}
.t-ac-hl4 {
color: #47ebb4 !important
}
.t-ac-hl5 {
color: #19e6b3 !important
}
.t-ac-hl6 {
color: #14b89c !important
}
.t-ac-hl7 {
color: #0f8a80 !important
}
.t-ac-hl8 {
color: #0a5c5c !important
}
.t-ac-hl9 {
color: #052b2e !important
}
.t-ac-hm1 {
color: #d9f2e3 !important
}
.t-ac-hm2 {
color: #b3e6cc !important
}
.t-ac-hm3 {
color: #8cd9b9 !important
}
.t-ac-hm4 {
color: #66ccaa !important
}
.t-ac-hm5 {
color: #40bf9f !important
}
.t-ac-hm6 {
color: #339988 !important
}
.t-ac-hm7 {
color: #26736c !important
}
.t-ac-hm8 {
color: #194d4d !important
}
.t-ac-hm9 {
color: #0d2426 !important
}
.t-ac-hd1 {
color: #e0ebe5 !important
}
.t-ac-hd2 {
color: #c2d6cc !important
}
.t-ac-hd3 {
color: #a3c2b5 !important
}
.t-ac-hd4 {
color: #85ada0 !important
}
.t-ac-hd5 {
color: #66998c !important
}
.t-ac-hd6 {
color: #527a74 !important
}
.t-ac-hd7 {
color: #3d5c59 !important
}
.t-ac-hd8 {
color: #293d3d !important
}
.t-ac-hd9 {
color: #141e1f !important
}
.t-cy-hl1 {
color: #d1faec !important
}
.t-cy-hl2 {
color: #a3f5e0 !important
}
.t-cy-hl3 {
color: #75f0db !important
}
.t-cy-hl4 {
color: #47ebdd !important
}
.t-cy-hl5 {
color: #19e5e6 !important
}
.t-cy-hl6 {
color: #14aab8 !important
}
.t-cy-hl7 {
color: #0f758a !important
}
.t-cy-hl8 {
color: #0a475c !important
}
.t-cy-hl9 {
color: #05202e !important
}
.t-cy-hm1 {
color: #d9f2ea !important
}
.t-cy-hm2 {
color: #b3e6d9 !important
}
.t-cy-hm3 {
color: #8cd9cc !important
}
.t-cy-hm4 {
color: #66ccc4 !important
}
.t-cy-hm5 {
color: #40bfbf !important
}
.t-cy-hm6 {
color: #339199 !important
}
.t-cy-hm7 {
color: #266673 !important
}
.t-cy-hm8 {
color: #19404d !important
}
.t-cy-hm9 {
color: #0d1e26 !important
}
.t-cy-hd1 {
color: #e0ebe7 !important
}
.t-cy-hd2 {
color: #c2d6d1 !important
}
.t-cy-hd3 {
color: #a3c2bd !important
}
.t-cy-hd4 {
color: #85adaa !important
}
.t-cy-hd5 {
color: #669999 !important
}
.t-cy-hd6 {
color: #52777a !important
}
.t-cy-hd7 {
color: #3d575c !important
}
.t-cy-hd8 {
color: #29383d !important
}
.t-cy-hd9 {
color: #141b1f !important
}
.t-cb-hl1 {
color: #d1faf7 !important
}
.t-cb-hl2 {
color: #a3f5f5 !important
}
.t-cb-hl3 {
color: #75e6f0 !important
}
.t-cb-hl4 {
color: #47cfeb !important
}
.t-cb-hl5 {
color: #19b3e6 !important
}
.t-cb-hl6 {
color: #1481b8 !important
}
.t-cb-hl7 {
color: #0f578a !important
}
.t-cb-hl8 {
color: #0a335c !important
}
.t-cb-hl9 {
color: #05162e !important
}
.t-cb-hm1 {
color: #d9f2f0 !important
}
.t-cb-hm2 {
color: #b3e5e6 !important
}
.t-cb-hm3 {
color: #8cd2d9 !important
}
.t-cb-hm4 {
color: #66bbcc !important
}
.t-cb-hm5 {
color: #409fbf !important
}
.t-cb-hm6 {
color: #337799 !important
}
.t-cb-hm7 {
color: #265373 !important
}
.t-cb-hm8 {
color: #19334d !important
}
.t-cb-hm9 {
color: #0d1726 !important
}
.t-cb-hd1 {
color: #e0ebea !important
}
.t-cb-hd2 {
color: #c2d6d6 !important
}
.t-cb-hd3 {
color: #a3bfc2 !important
}
.t-cb-hd4 {
color: #85a7ad !important
}
.t-cb-hd5 {
color: #668c99 !important
}
.t-cb-hd6 {
color: #526d7a !important
}
.t-cb-hd7 {
color: #3d4f5c !important
}
.t-cb-hd8 {
color: #29333d !important
}
.t-cb-hd9 {
color: #14191f !important
}
.t-bl-hl1 {
color: #d1f3fa !important
}
.t-bl-hl2 {
color: #a3e0f5 !important
}
.t-bl-hl3 {
color: #75c7f0 !important
}
.t-bl-hl4 {
color: #47a7eb !important
}
.t-bl-hl5 {
color: #197fe6 !important
}
.t-bl-hl6 {
color: #1458b8 !important
}
.t-bl-hl7 {
color: #0f388a !important
}
.t-bl-hl8 {
color: #0a1f5c !important
}
.t-bl-hl9 {
color: #050c2e !important
}
.t-bl-hm1 {
color: #d9eef2 !important
}
.t-bl-hm2 {
color: #b3d9e6 !important
}
.t-bl-hm3 {
color: #8cbfd9 !important
}
.t-bl-hm4 {
color: #66a1cc !important
}
.t-bl-hm5 {
color: #407fbf !important
}
.t-bl-hm6 {
color: #335d99 !important
}
.t-bl-hm7 {
color: #264073 !important
}
.t-bl-hm8 {
color: #19264d !important
}
.t-bl-hm9 {
color: #0d1126 !important
}
.t-bl-hd1 {
color: #e0e9eb !important
}
.t-bl-hd2 {
color: #c2d1d6 !important
}
.t-bl-hd3 {
color: #a3b8c2 !important
}
.t-bl-hd4 {
color: #859cad !important
}
.t-bl-hd5 {
color: #667f99 !important
}
.t-bl-hd6 {
color: #52637a !important
}
.t-bl-hd7 {
color: #3d475c !important
}
.t-bl-hd8 {
color: #292e3d !important
}
.t-bl-hd9 {
color: #14161f !important
}
.t-bi-hl1 {
color: #d1e9fa !important
}
.t-bi-hl2 {
color: #a3ccf5 !important
}
.t-bi-hl3 {
color: #75a8f0 !important
}
.t-bi-hl4 {
color: #477eeb !important
}
.t-bi-hl5 {
color: #194ce6 !important
}
.t-bi-hl6 {
color: #1430b8 !important
}
.t-bi-hl7 {
color: #0f198a !important
}
.t-bi-hl8 {
color: #0a0a5c !important
}
.t-bi-hl9 {
color: #08052e !important
}
.t-bi-hm1 {
color: #d9e8f2 !important
}
.t-bi-hm2 {
color: #b3cce6 !important
}
.t-bi-hm3 {
color: #8cacd9 !important
}
.t-bi-hm4 {
color: #6688cc !important
}
.t-bi-hm5 {
color: #4060bf !important
}
.t-bi-hm6 {
color: #334499 !important
}
.t-bi-hm7 {
color: #262d73 !important
}
.t-bi-hm8 {
color: #19194d !important
}
.t-bi-hm9 {
color: #0f0d26 !important
}
.t-bi-hd1 {
color: #e0e6eb !important
}
.t-bi-hd2 {
color: #c2ccd6 !important
}
.t-bi-hd3 {
color: #a3b0c2 !important
}
.t-bi-hd4 {
color: #8592ad !important
}
.t-bi-hd5 {
color: #667399 !important
}
.t-bi-hd6 {
color: #52587a !important
}
.t-bi-hd7 {
color: #3d405c !important
}
.t-bi-hd8 {
color: #29293d !important
}
.t-bi-hd9 {
color: #15141f !important
}
.t-in-hl1 {
color: #d1dffa !important
}
.t-in-hl2 {
color: #a3b8f5 !important
}
.t-in-hl3 {
color: #758af0 !important
}
.t-in-hl4 {
color: #4755eb !important
}
.t-in-hl5 {
color: #1919e6 !important
}
.t-in-hl6 {
color: #2214b8 !important
}
.t-in-hl7 {
color: #240f8a !important
}
.t-in-hl8 {
color: #1f0a5c !important
}
.t-in-hl9 {
color: #13052e !important
}
.t-in-hm1 {
color: #d9e1f2 !important
}
.t-in-hm2 {
color: #b3bfe6 !important
}
.t-in-hm3 {
color: #8c99d9 !important
}
.t-in-hm4 {
color: #666ecc !important
}
.t-in-hm5 {
color: #4040bf !important
}
.t-in-hm6 {
color: #3b3399 !important
}
.t-in-hm7 {
color: #332673 !important
}
.t-in-hm8 {
color: #26194d !important
}
.t-in-hm9 {
color: #150d26 !important
}
.t-in-hd1 {
color: #e0e4eb !important
}
.t-in-hd2 {
color: #c2c7d6 !important
}
.t-in-hd3 {
color: #a3a8c2 !important
}
.t-in-hd4 {
color: #8588ad !important
}
.t-in-hd5 {
color: #666699 !important
}
.t-in-hd6 {
color: #55527a !important
}
.t-in-hd7 {
color: #423d5c !important
}
.t-in-hd8 {
color: #2e293d !important
}
.t-in-hd9 {
color: #18141f !important
}
.t-ip-hl1 {
color: #d1d4fa !important
}
.t-ip-hl2 {
color: #a3a3f5 !important
}
.t-ip-hl3 {
color: #8075f0 !important
}
.t-ip-hl4 {
color: #6347eb !important
}
.t-ip-hl5 {
color: #4d19e6 !important
}
.t-ip-hl6 {
color: #4b14b8 !important
}
.t-ip-hl7 {
color: #420f8a !important
}
.t-ip-hl8 {
color: #330a5c !important
}
.t-ip-hl9 {
color: #1d052e !important
}
.t-ip-hm1 {
color: #d9dbf2 !important
}
.t-ip-hm2 {
color: #b3b3e6 !important
}
.t-ip-hm3 {
color: #938cd9 !important
}
.t-ip-hm4 {
color: #7766cc !important
}
.t-ip-hm5 {
color: #6040bf !important
}
.t-ip-hm6 {
color: #553399 !important
}
.t-ip-hm7 {
color: #462673 !important
}
.t-ip-hm8 {
color: #33194d !important
}
.t-ip-hm9 {
color: #1c0d26 !important
}
.t-ip-hd1 {
color: #e0e1eb !important
}
.t-ip-hd2 {
color: #c2c2d6 !important
}
.t-ip-hd3 {
color: #a6a3c2 !important
}
.t-ip-hd4 {
color: #8b85ad !important
}
.t-ip-hd5 {
color: #736699 !important
}
.t-ip-hd6 {
color: #5f527a !important
}
.t-ip-hd7 {
color: #4a3d5c !important
}
.t-ip-hd8 {
color: #33293d !important
}
.t-ip-hd9 {
color: #1a141f !important
}
.t-pu-hl1 {
color: #d8d1fa !important
}
.t-pu-hl2 {
color: #b8a3f5 !important
}
.t-pu-hl3 {
color: #9e75f0 !important
}
.t-pu-hl4 {
color: #8b47eb !important
}
.t-pu-hl5 {
color: #7f19e6 !important
}
.t-pu-hl6 {
color: #7414b8 !important
}
.t-pu-hl7 {
color: #610f8a !important
}
.t-pu-hl8 {
color: #470a5c !important
}
.t-pu-hl9 {
color: #27052e !important
}
.t-pu-hm1 {
color: #ddd9f2 !important
}
.t-pu-hm2 {
color: #bfb3e6 !important
}
.t-pu-hm3 {
color: #a68cd9 !important
}
.t-pu-hm4 {
color: #9066cc !important
}
.t-pu-hm5 {
color: #7f40bf !important
}
.t-pu-hm6 {
color: #6e3399 !important
}
.t-pu-hm7 {
color: #592673 !important
}
.t-pu-hm8 {
color: #40194d !important
}
.t-pu-hm9 {
color: #220d26 !important
}
.t-pu-hd1 {
color: #e2e0eb !important
}
.t-pu-hd2 {
color: #c7c2d6 !important
}
.t-pu-hd3 {
color: #ada3c2 !important
}
.t-pu-hd4 {
color: #9685ad !important
}
.t-pu-hd5 {
color: #7f6699 !important
}
.t-pu-hd6 {
color: #69527a !important
}
.t-pu-hd7 {
color: #523d5c !important
}
.t-pu-hd8 {
color: #38293d !important
}
.t-pu-hd9 {
color: #1d141f !important
}
.t-pp-hl1 {
color: #e2d1fa !important
}
.t-pp-hl2 {
color: #cca3f5 !important
}
.t-pp-hl3 {
color: #bd75f0 !important
}
.t-pp-hl4 {
color: #b447eb !important
}
.t-pp-hl5 {
color: #b319e6 !important
}
.t-pp-hl6 {
color: #9c14b8 !important
}
.t-pp-hl7 {
color: #7f0f8a !important
}
.t-pp-hl8 {
color: #5c0a5c !important
}
.t-pp-hl9 {
color: #2e052b !important
}
.t-pp-hm1 {
color: #e3d9f2 !important
}
.t-pp-hm2 {
color: #ccb3e6 !important
}
.t-pp-hm3 {
color: #b98cd9 !important
}
.t-pp-hm4 {
color: #aa66cc !important
}
.t-pp-hm5 {
color: #9f40bf !important
}
.t-pp-hm6 {
color: #883399 !important
}
.t-pp-hm7 {
color: #6c2673 !important
}
.t-pp-hm8 {
color: #4d194d !important
}
.t-pp-hm9 {
color: #260d24 !important
}
.t-pp-hd1 {
color: #e5e0eb !important
}
.t-pp-hd2 {
color: #ccc2d6 !important
}
.t-pp-hd3 {
color: #b5a3c2 !important
}
.t-pp-hd4 {
color: #a085ad !important
}
.t-pp-hd5 {
color: #8c6699 !important
}
.t-pp-hd6 {
color: #74527a !important
}
.t-pp-hd7 {
color: #593d5c !important
}
.t-pp-hd8 {
color: #3d293d !important
}
.t-pp-hd9 {
color: #1f141e !important
}
.t-pi-hl1 {
color: #ecd1fa !important
}
.t-pi-hl2 {
color: #e0a3f5 !important
}
.t-pi-hl3 {
color: #db75f0 !important
}
.t-pi-hl4 {
color: #dd47eb !important
}
.t-pi-hl5 {
color: #e619e5 !important
}
.t-pi-hl6 {
color: #b814aa !important
}
.t-pi-hl7 {
color: #8a0f75 !important
}
.t-pi-hl8 {
color: #5c0a47 !important
}
.t-pi-hl9 {
color: #2e0520 !important
}
.t-pi-hm1 {
color: #ead9f2 !important
}
.t-pi-hm2 {
color: #d9b3e6 !important
}
.t-pi-hm3 {
color: #cc8cd9 !important
}
.t-pi-hm4 {
color: #c366cc !important
}
.t-pi-hm5 {
color: #bf40bf !important
}
.t-pi-hm6 {
color: #993391 !important
}
.t-pi-hm7 {
color: #732666 !important
}
.t-pi-hm8 {
color: #4d1940 !important
}
.t-pi-hm9 {
color: #260d1e !important
}
.t-pi-hd1 {
color: #e7e0eb !important
}
.t-pi-hd2 {
color: #d1c2d6 !important
}
.t-pi-hd3 {
color: #bda3c2 !important
}
.t-pi-hd4 {
color: #aa85ad !important
}
.t-pi-hd5 {
color: #996699 !important
}
.t-pi-hd6 {
color: #7a5277 !important
}
.t-pi-hd7 {
color: #5c3d57 !important
}
.t-pi-hd8 {
color: #3d2938 !important
}
.t-pi-hd9 {
color: #1f141b !important
}
.t-pv-hl1 {
color: #f7d1fa !important
}
.t-pv-hl2 {
color: #f5a3f5 !important
}
.t-pv-hl3 {
color: #f075e5 !important
}
.t-pv-hl4 {
color: #eb47cf !important
}
.t-pv-hl5 {
color: #e619b2 !important
}
.t-pv-hl6 {
color: #b81481 !important
}
.t-pv-hl7 {
color: #8a0f57 !important
}
.t-pv-hl8 {
color: #5c0a33 !important
}
.t-pv-hl9 {
color: #2e0516 !important
}
.t-pv-hm1 {
color: #f0d9f2 !important
}
.t-pv-hm2 {
color: #e6b3e5 !important
}
.t-pv-hm3 {
color: #d98cd2 !important
}
.t-pv-hm4 {
color: #cc66bb !important
}
.t-pv-hm5 {
color: #bf409f !important
}
.t-pv-hm6 {
color: #993377 !important
}
.t-pv-hm7 {
color: #732653 !important
}
.t-pv-hm8 {
color: #4d1933 !important
}
.t-pv-hm9 {
color: #260d17 !important
}
.t-pv-hd1 {
color: #eae0eb !important
}
.t-pv-hd2 {
color: #d6c2d6 !important
}
.t-pv-hd3 {
color: #c2a3bf !important
}
.t-pv-hd4 {
color: #ad85a7 !important
}
.t-pv-hd5 {
color: #99668c !important
}
.t-pv-hd6 {
color: #7a526d !important
}
.t-pv-hd7 {
color: #5c3d4f !important
}
.t-pv-hd8 {
color: #3d2933 !important
}
.t-pv-hd9 {
color: #1f1419 !important
}
.t-vi-hl1 {
color: #fad1f3 !important
}
.t-vi-hl2 {
color: #f5a3e0 !important
}
.t-vi-hl3 {
color: #f075c7 !important
}
.t-vi-hl4 {
color: #eb47a7 !important
}
.t-vi-hl5 {
color: #e61980 !important
}
.t-vi-hl6 {
color: #b81458 !important
}
.t-vi-hl7 {
color: #8a0f38 !important
}
.t-vi-hl8 {
color: #5c0a1f !important
}
.t-vi-hl9 {
color: #2e050c !important
}
.t-vi-hm1 {
color: #f2d9ee !important
}
.t-vi-hm2 {
color: #e6b3d9 !important
}
.t-vi-hm3 {
color: #d98cbf !important
}
.t-vi-hm4 {
color: #cc66a2 !important
}
.t-vi-hm5 {
color: #bf4080 !important
}
.t-vi-hm6 {
color: #99335d !important
}
.t-vi-hm7 {
color: #732640 !important
}
.t-vi-hm8 {
color: #4d1926 !important
}
.t-vi-hm9 {
color: #260d11 !important
}
.t-vi-hd1 {
color: #ebe0e9 !important
}
.t-vi-hd2 {
color: #d6c2d1 !important
}
.t-vi-hd3 {
color: #c2a3b8 !important
}
.t-vi-hd4 {
color: #ad859c !important
}
.t-vi-hd5 {
color: #996680 !important
}
.t-vi-hd6 {
color: #7a5263 !important
}
.t-vi-hd7 {
color: #5c3d47 !important
}
.t-vi-hd8 {
color: #3d292e !important
}
.t-vi-hd9 {
color: #1f1416 !important
}
.t-vr-hl1 {
color: #fad1e9 !important
}
.t-vr-hl2 {
color: #f5a3cc !important
}
.t-vr-hl3 {
color: #f075a8 !important
}
.t-vr-hl4 {
color: #eb477e !important
}
.t-vr-hl5 {
color: #e6194c !important
}
.t-vr-hl6 {
color: #b81430 !important
}
.t-vr-hl7 {
color: #8a0f19 !important
}
.t-vr-hl8 {
color: #5c0a0a !important
}
.t-vr-hl9 {
color: #2e0805 !important
}
.t-vr-hm1 {
color: #f2d9e8 !important
}
.t-vr-hm2 {
color: #e6b3cc !important
}
.t-vr-hm3 {
color: #d98cac !important
}
.t-vr-hm4 {
color: #cc6688 !important
}
.t-vr-hm5 {
color: #bf4060 !important
}
.t-vr-hm6 {
color: #993344 !important
}
.t-vr-hm7 {
color: #73262d !important
}
.t-vr-hm8 {
color: #4d1919 !important
}
.t-vr-hm9 {
color: #260f0d !important
}
.t-vr-hd1 {
color: #ebe0e6 !important
}
.t-vr-hd2 {
color: #d6c2cc !important
}
.t-vr-hd3 {
color: #c2a3b0 !important
}
.t-vr-hd4 {
color: #ad8592 !important
}
.t-vr-hd5 {
color: #996673 !important
}
.t-vr-hd6 {
color: #7a5258 !important
}
.t-vr-hd7 {
color: #5c3d40 !important
}
.t-vr-hd8 {
color: #3d2929 !important
}
.t-vr-hd9 {
color: #1f1514 !important
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s
}
@-webkit-keyframes bounce {
20%, 53%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0)
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0)
}
}
@keyframes bounce {
20%, 53%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0)
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0)
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
@-webkit-keyframes flash {
50%, from, to {
opacity: 1
}
25%, 75% {
opacity: 0
}
}
@keyframes flash {
50%, from, to {
opacity: 1
}
25%, 75% {
opacity: 0
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash
}
@-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1)
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1)
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1)
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1)
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg)
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg)
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg)
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg)
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg)
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg)
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg)
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg)
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada
}
@-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
to {
-webkit-transform: none;
transform: none
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes jello {
11.1%, from, to {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
}
@keyframes jello {
11.1%, from, to {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes bounceIn {
20%, 40%, 60%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes bounceIn {
20%, 40%, 60%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0)
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInDown {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0)
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0)
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInLeft {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0)
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0)
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInRight {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0)
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInUp {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0
}
}
@keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@keyframes fadeOutDown {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
@keyframes fadeOutLeft {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@keyframes fadeOutRight {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
@keyframes fadeOutUp {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
to {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
to {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0
}
}
@keyframes lightSpeedOut {
from {
opacity: 1
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn
}
@-webkit-keyframes rollOut {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
@keyframes rollOut {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
to {
opacity: 0
}
}
@keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
to {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp
}
.fixfloat:after {
content: ".";
height: 0;
display: block;
visibility: hidden;
clear: both
}
.fullbox {
top: 0;
right: 0;
bottom: 0;
left: 0
}
.fae {
display: inline-block;
font-family: 'Font Awesome 5 Pro';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.thidden {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.block-group {
display: table
}
.block-group li {
display: table-cell;
width: 1%
}
.block-group li .mui-btn {
width: 100%
}
.fix-cx {
transform: translateX(-50%)
}
.fix-cy {
transform: translateY(-50%)
}
.fix-c {
transform: translateX(-50%) translateY(-50%)
}
img {
border-radius: 2px
}
.tooltip .tooltip-inner {
white-space: nowrap
}
.mCustomScrollbar {
overflow: visible !important
}
.mCustomScrollbar .mCSB_inside > .mCSB_container {
margin-right: 0
}
.mCustomScrollbar .mCSB_inside .mCSB_scrollTools_vertical {
width: 5px
}
.desktop .center-stage {
position: absolute;
left: 50%;
top: 50%;
margin-left: -500px;
margin-top: -300px;
width: 1000px;
height: 600px
}
.desktop .full-box {
width: 2000px;
height: 1100px;
position: fixed;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -550px
}
.desktop .full-box .full-bg {
width: 100%;
height: 100%
}
.center-stage .logo-wrapper {
margin: 0 auto;
height: 120px;
width: 120px;
position: relative
}
.center-stage .logo-wrapper .logo {
height: 120px
}
.center-stage .logo-wrapper .desc {
text-align: right
}
.center-stage .logo-wrapper .chs {
color: #fff;
font-size: 2rem;
font-family: SimHei;
font-weight: bold;
padding-top: 5px
}
.center-stage .logo-wrapper .site {
color: #fff;
font-size: 1.35rem;
font-family: arial
}
.center-stage .logo-wrapper .donate-us {
right: -120px;
top: 25px;
font-size: 1.2rem;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
cursor: pointer;
position: absolute;
z-index: 9;
background-color: #b81414;
color: #fff;
border-radius: 0 100px 100px 0;
text-align: center;
width: 120px;
height: 50px;
line-height: 48px
}
.center-stage .logo-wrapper .donate-us .fa {
margin-right: 5px
}
.center-stage .logo-wrapper .donate-us:before {
content: " ";
position: absolute;
left: 0;
top: -25px;
height: 100px;
width: 2px;
background: linear-gradient(rgba(0, 0, 0, 0), #000000, rgba(0, 0, 0, 0))
}
.center-stage .logo-wrapper .donate-us:hover {
background-color: #e61919
}
.center-stage .copyright {
font-size: 1rem;
color: rgba(255, 255, 255, 0.3);
line-height: 2rem
}
.center-stage .copyright .fr {
float: right
}
.aniin {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .col-mark {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .col-mark:hover {
transform: scale(1.08)
}
.desktop .box-mark {
background-color: #197fe6;
margin: 15px 0;
padding: 15px;
color: #fff;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.desktop .box-mark p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.desktop .box-mark p.desc {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.desktop .box-mark .fa, .desktop .box-mark .fab, .desktop .box-mark .fal {
font-size: 3rem;
position: absolute;
bottom: 10px;
right: 10px;
color: rgba(255, 255, 255, 0.4)
}
.desktop .box-mark.box-h1 {
height: 130px
}
.desktop .box-mark.box-h2 {
height: 290px
}
.desktop .box-mark.box-min {
height: 50px
}
.desktop .box-mark.box-min-1st {
margin-bottom: 30px
}
.desktop .box-mark.box-n1 {
background-color: #7fcc66
}
.desktop .box-mark.box-n1 .fa {
font-size: 6rem;
right: 25px;
bottom: 25px
}
.desktop .box-mark.box-n1 .fab {
font-size: 2rem;
bottom: 60px;
right: 39px
}
.desktop .box-mark.box-n1 img {
opacity: 0;
width: 127px;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0
}
.desktop .box-mark.box-n1:hover img {
opacity: 1
}
.desktop .box-mark.box-n2 {
background-position: center center;
background-color: #eb9947
}
.desktop .box-mark.box-n2 .title {
/*text-align: center*/
}
.desktop .box-mark.box-n2 .fa {
font-size: 4rem;
bottom: 20px;
right: 54px;
color: rgba(255, 255, 255, 0.8)
}
.desktop .box-mark.box-n2 .fab {
font-size: 1.5rem;
bottom: 43px;
right: 64px;
color: rgba(255, 255, 255, 0.8)
}
.desktop .box-mark.box-n2 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n2:hover img {
opacity: 1
}
.desktop .box-mark.box-n3 {
background-color: #66cccc
}
.desktop .box-mark.box-n3 .title {
font-size: 1.1rem
}
.desktop .box-mark.box-n3 .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n3:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-nx {
background-color: #6699cc
}
.desktop .box-mark.box-nx .title {
font-size: 1.1rem
}
.desktop .box-mark.box-nx .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-nx:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n4 {
background-color: #8f85ad;
padding-right: 150px
}
.desktop .box-mark.box-n4 .fa {
font-size: 5.5rem;
right: 30px;
bottom: 30px
}
.desktop .box-mark.box-n4:hover .fa {
-webkit-animation-name: pulse;
animation-name: pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n5 {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: #4799eb;
background-color: #148fb8;
position: relative
}
.desktop .box-mark.box-n5 .fal {
position: absolute;
left: 50%;
top: 25%;
font-size: 4rem;
color: #fff;
transform: translateX(-50%);
bottom: auto;
right: auto;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5 .titlechs {
position: absolute;
left: 50%;
top: 48%;
font-size: 1.6rem;
color: #fff;
transform: translateX(-50%);
white-space: nowrap;
text-align: center;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5 .titlechs .eng {
display: block;
padding-top: 10px
}
.desktop .box-mark.box-n5 .desc {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5:before {
content: " ";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5:hover:before {
opacity: 1
}
.desktop .box-mark.box-n5:hover .desc {
opacity: 0
}
.desktop .box-mark.box-n5:hover .fal, .desktop .box-mark.box-n5:hover .titlechs {
color: #000
}
.desktop .box-mark.box-n6 {
background-color: #eb4747
}
.desktop .box-mark.box-n6 .desc {
white-space: nowrap;
font-size: 0.9rem
}
.desktop .box-mark.box-n6 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n6:hover img {
opacity: 1
}
.desktop .box-mark.box-n7 {
background-color: #40bf80
}
.desktop .box-mark.box-n7 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n7:hover img {
opacity: 1
}
.desktop .box-mark.box-n8 {
background-color: #0f4c8a;
padding-right: 100px
}
.desktop .box-mark.box-n8 .fab {
font-size: 5rem;
bottom: 30px;
right: 30px
}
.desktop .box-mark.box-n8:hover .fa, .desktop .box-mark.box-n8:hover .fab {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n9 {
background-color: #eb7047;
background-position: center center
}
.desktop .box-mark.box-n9 .fab {
font-size: 6rem;
bottom: 25px;
right: 30px
}
.desktop .box-mark.box-n9:hover .fa, .desktop .box-mark.box-n9:hover .fab {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n10 {
background-color: #197fe6
}
.desktop .box-mark.box-n10 .mail {
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
background-color: #197fe6;
z-index: 10;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center
}
.desktop .box-mark.box-n10 .mail .fa {
position: relative;
display: block;
bottom: auto;
right: auto;
margin: 10px 0
}
.desktop .box-mark.box-n10 .fa {
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n10:hover .mail {
opacity: 1
}
.desktop .box-mark.box-n10:hover .mail .fa, .desktop .box-mark.box-n10:hover .mail .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n11 {
background-color: #cc66cc
}
.desktop .box-mark.box-n11 .title {
font-size: 1.1rem
}
.desktop .box-mark.box-n11 .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n11:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n12 {
background-color: #262673
}
.desktop .box-mark.box-n12 .title {
opacity: 0
}
.desktop .box-mark.box-n12 img {
height: 40px;
position: absolute;
top: 5px;
left: 40px
}
.desktop .box-mark.box-n12:hover img {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile body {
background-image: none !important;
background-color: #333333
}
.mobile .full-box .full-bg {
display: none
}
.mobile .center-stage {
padding: 20px;
max-width: 450px;
margin: 0 auto
}
.mobile .center-stage .logo-wrapper {
margin: 10px 0 0 10px
}
.mobile .center-stage .logo-wrapper .logo {
height: 80px;
margin: 10px 0 0 20px
}
.mobile .center-stage .logo-wrapper .donate-us {
right: -100px
}
.mobile .col-mark {
padding: 10px
}
.mobile .box-mark {
background-color: #197fe6;
padding: 15px;
color: #fff;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.mobile .box-mark p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.mobile .box-mark p.desc {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.mobile .box-mark .fa, .mobile .box-mark .fab, .mobile .box-mark .fal {
font-size: 3rem;
position: absolute;
bottom: 10px;
right: 10px;
color: rgba(255, 255, 255, 0.4)
}
.mobile .box-mark.box-h1 {
height: 130px
}
.mobile .box-mark.box-h2 {
height: 290px
}
.mobile .box-mark.box-min {
height: 50px
}
.mobile .box-mark.box-min-1st {
margin-bottom: 30px
}
.mobile .box-mark.box-n1 {
background-position: right center;
background-repeat: no-repeat;
background-color: #81cb6b
}
.mobile .box-mark.box-n1 .fa {
font-size: 5.5rem;
right: 40px;
bottom: 27px;
color: rgba(255, 255, 255, 0.6)
}
.mobile .box-mark.box-n3 {
background-color: #66cccc;
background-color: #eb7047
}
.mobile .box-mark.box-n3 .title {
font-size: 1.3rem
}
.mobile .box-mark.box-n3 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n3:hover .fa, .mobile .box-mark.box-n3:hover .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n4 {
background-color: #9475f0;
padding-right: 150px
}
.mobile .box-mark.box-n4 .fa {
font-size: 5.5rem;
right: 30px;
bottom: 30px
}
.mobile .box-mark.box-n4:hover .fa {
-webkit-animation-name: pulse;
animation-name: pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n5 {
background-color: #4799eb;
background-color: #148fb8;
position: relative;
background-size: 100% auto;
background-position: center center
}
.mobile .box-mark.box-n6 {
background-color: #eb4747
}
.mobile .box-mark.box-n6 .desc {
white-space: nowrap;
font-size: 0.9rem
}
.mobile .box-mark.box-n7 {
background-color: #40bf80
}
.mobile .box-mark.box-n10 {
background-color: #197fe6
}
.mobile .box-mark.box-n10 .mail {
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
background-color: #197fe6;
z-index: 10;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center
}
.mobile .box-mark.box-n10 .mail .fa {
position: relative;
display: block;
bottom: auto;
right: auto;
margin: 10px 0
}
.mobile .box-mark.box-n10 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n10:hover .mail {
opacity: 1
}
.mobile .box-mark.box-n10:hover .mail .fa, .mobile .box-mark.box-n10:hover .mail .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n11 {
background-color: #cc66cc
}
.mobile .box-mark.box-n11 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n11:hover .fa, .mobile .box-mark.box-n11:hover .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n12 {
background-color: #262673
}
.mobile .box-mark.box-n12 .title {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center
}
.mobile .box-mark.box-n12 img {
height: 80px;
position: absolute;
top: 5px;
left: 50%;
transform: translateX(-50%)
}
.donate-us {
height: auto !important
}
.donate-us .ui-limit {
width: 1000px;
margin: 0 auto
}
.donate-us .ui-header {
padding: 0 0 40px
}
.donate-us .ui-header .logo-wrapper {
margin: 0 auto;
height: 120px;
width: 223px;
position: relative
}
.donate-us .ui-header .logo-wrapper .logo {
height: 100px;
margin-top: 20px
}
.donate-us .ui-content {
padding: 40px 0;
position: relative;
background-color: rgba(0, 0, 0, 0.5)
}
.donate-us .ui-content .desc-wrapper p {
color: #fff;
font-size: 1.2rem;
margin-bottom: 20px
}
.donate-us .ui-content .desc-wrapper p.title {
font-size: 1.8rem;
font-weight: bold
}
.donate-us .ui-content .desc-wrapper p:last-child {
margin-bottom: 0
}
.donate-us .ui-content .desc-wrapper p a {
font-size: 1.4rem;
margin: 20px 20px 0 0
}
.donate-us .ui-content .row-table {
padding: 20px 0
}
.donate-us .ui-block {
padding: 40px 0
}
.donate-us .ui-block .main-title {
font-size: 1.4rem;
color: #fff;
margin-bottom: 40px
}
.donate-us .ui-block .row .col-mark2 .box-location {
background-color: #fff;
padding: 15px;
color: #000;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.donate-us .ui-block .row .col-mark2 .box-location .title {
font-size: 1.8rem
}
.donate-us .ui-block .row .col-mark2 .box-location .desc {
word-break: break-all;
margin-right: 100px
}
.donate-us .ui-block .row .col-mark2 .box-location textarea {
border: none;
resize: none
}
.donate-us .ui-block .row .col-mark2 .box-location .logo {
width: 80px;
height: 80px;
position: absolute;
right: 15px;
top: 15px
}
.donate-us .ui-block .row .col-mark2 .box-location .qrc {
width: 150px;
height: 150px;
display: block;
margin: 60px auto
}
.mobile .donate-us .ui-limit {
width: 100%;
padding: 0 20px
}
.mobile .donate-us .ui-content .row-table .col-md-3 {
margin-bottom: 40px
}
.mobile .donate-us .ui-block .row .col-mark2 .box-location {
margin-bottom: 20px
}
@media (max-width: 1201px) {
.desktop .donate-us .ui-limit {
width: 100%;
padding: 0 20px
}
.desktop .donate-us .ui-content .row-table .col-md-3 {
margin-bottom: 40px
}
.desktop .donate-us .ui-block .row .col-mark2 .box-location {
margin-bottom: 20px
}
}
@media (max-width: 321px) {
.mobile .center-stage .logo-wrapper {
width: 200px;
margin: 0
}
.mobile .center-stage .logo-wrapper .logo {
height: 70px
}
.mobile .center-stage .logo-wrapper .donate-us {
right: -80px;
width: 100px
}
}
.color-white{
background-color: white;
margin: 15px 0;
padding: 15px;
position: relative;
overflow: hidden;
border-radius: 8px;
/*cursor: pointer*/
}
.color-white p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.min-height-500 {
min-height: 500px;
} | shell_api/app/public/third-part/wxpay-demo/css/main.min.css | @charset "utf-8";
@IMPORT url("3rd/animate.css");
@IMPORT url("3rd/widgets.css");
html {
font-size: 14px;
position: relative;
height: 100%;
width: 100%
}
body {
padding: 0;
margin: 0;
color: #666;
font: 14px/150% "Lucida Grande", Lucida Sans Unicode, Hiragino Sans GB, WenQuanYi Micro Hei, Verdana, Aril, sans-serif;
-webkit-text-size-adjust: none;
-webkit-font-smoothing: antialiased
}
ul {
margin: 0;
padding: 0
}
li {
list-style: none
}
a {
blr: expression(this.onFocus=this.blur());
cursor: pointer;
text-decoration: none
}
a, button, input {
outline: none !important
}
a {
text-decoration: none !important
}
embed {
display: none
}
.iframe-wrap {
position: absolute;
left: -10000px;
top: -10000px
}
body {
background-image: url("../images/bg.jpg");
background-size: 100% 100%;
background-color: #1c1c1c;
background-repeat: no-repeat
}
.box-n5 {
background-image: url("../images/logo-zimuzu.jpg")
}
.box-n5:before {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-image: url("../images/logo-zimuzu-hover.jpg")
}
.box-n1 {
background-image: url("../images/phonebg.jpg")
}
.box-n2 {
background-image: url("../images/iosbg.jpg")
}
.box-n9 {
background-image: url("../images/macbg.jpg")
}
.bg-re-l1 {
background-color: #fad1d1 !important
}
.bg-re-l2 {
background-color: #f5a3a3 !important
}
.bg-re-l3 {
background-color: #f07575 !important
}
.bg-re-l4 {
background-color: #eb4747 !important
}
.bg-re-l5 {
background-color: #e61919 !important
}
.bg-re-l6 {
background-color: #b81414 !important
}
.bg-re-l7 {
background-color: #8a0f0f !important
}
.bg-re-l8 {
background-color: #5c0a0a !important
}
.bg-re-l9 {
background-color: #2e0505 !important
}
.bg-re-m1 {
background-color: #f2d9d9 !important
}
.bg-re-m2 {
background-color: #e6b3b3 !important
}
.bg-re-m3 {
background-color: #d98c8c !important
}
.bg-re-m4 {
background-color: #cc6666 !important
}
.bg-re-m5 {
background-color: #bf4040 !important
}
.bg-re-m6 {
background-color: #993333 !important
}
.bg-re-m7 {
background-color: #732626 !important
}
.bg-re-m8 {
background-color: #4d1919 !important
}
.bg-re-m9 {
background-color: #260d0d !important
}
.bg-re-d1 {
background-color: #ebe0e0 !important
}
.bg-re-d2 {
background-color: #d6c2c2 !important
}
.bg-re-d3 {
background-color: #c2a3a3 !important
}
.bg-re-d4 {
background-color: #ad8585 !important
}
.bg-re-d5 {
background-color: #996666 !important
}
.bg-re-d6 {
background-color: #7a5252 !important
}
.bg-re-d7 {
background-color: #5c3d3d !important
}
.bg-re-d8 {
background-color: #3d2929 !important
}
.bg-re-d9 {
background-color: #1f1414 !important
}
.bg-re-l1 {
background-color: #fad1d1 !important
}
.bg-re-l2 {
background-color: #f5a3a3 !important
}
.bg-re-l3 {
background-color: #f07575 !important
}
.bg-re-l4 {
background-color: #eb4747 !important
}
.bg-re-l5 {
background-color: #e61919 !important
}
.bg-re-l6 {
background-color: #b81414 !important
}
.bg-re-l7 {
background-color: #8a0f0f !important
}
.bg-re-l8 {
background-color: #5c0a0a !important
}
.bg-re-l9 {
background-color: #2e0505 !important
}
.bg-re-m1 {
background-color: #f2d9d9 !important
}
.bg-re-m2 {
background-color: #e6b3b3 !important
}
.bg-re-m3 {
background-color: #d98c8c !important
}
.bg-re-m4 {
background-color: #cc6666 !important
}
.bg-re-m5 {
background-color: #bf4040 !important
}
.bg-re-m6 {
background-color: #993333 !important
}
.bg-re-m7 {
background-color: #732626 !important
}
.bg-re-m8 {
background-color: #4d1919 !important
}
.bg-re-m9 {
background-color: #260d0d !important
}
.bg-re-d1 {
background-color: #ebe0e0 !important
}
.bg-re-d2 {
background-color: #d6c2c2 !important
}
.bg-re-d3 {
background-color: #c2a3a3 !important
}
.bg-re-d4 {
background-color: #ad8585 !important
}
.bg-re-d5 {
background-color: #996666 !important
}
.bg-re-d6 {
background-color: #7a5252 !important
}
.bg-re-d7 {
background-color: #5c3d3d !important
}
.bg-re-d8 {
background-color: #3d2929 !important
}
.bg-re-d9 {
background-color: #1f1414 !important
}
.bg-ro-l1 {
background-color: #fadbd1 !important
}
.bg-ro-l2 {
background-color: #f5b8a3 !important
}
.bg-ro-l3 {
background-color: #f09475 !important
}
.bg-ro-l4 {
background-color: #eb7047 !important
}
.bg-ro-l5 {
background-color: #e64d19 !important
}
.bg-ro-l6 {
background-color: #b83d14 !important
}
.bg-ro-l7 {
background-color: #8a2e0f !important
}
.bg-ro-l8 {
background-color: #5c1f0a !important
}
.bg-ro-l9 {
background-color: #2e0f05 !important
}
.bg-ro-m1 {
background-color: #f2dfd9 !important
}
.bg-ro-m2 {
background-color: #e6bfb3 !important
}
.bg-ro-m3 {
background-color: #d99f8c !important
}
.bg-ro-m4 {
background-color: #cc7f66 !important
}
.bg-ro-m5 {
background-color: #bf6040 !important
}
.bg-ro-m6 {
background-color: #994d33 !important
}
.bg-ro-m7 {
background-color: #733926 !important
}
.bg-ro-m8 {
background-color: #4d2619 !important
}
.bg-ro-m9 {
background-color: #26130d !important
}
.bg-ro-d1 {
background-color: #ebe3e0 !important
}
.bg-ro-d2 {
background-color: #d6c7c2 !important
}
.bg-ro-d3 {
background-color: #c2aba3 !important
}
.bg-ro-d4 {
background-color: #ad8f85 !important
}
.bg-ro-d5 {
background-color: #997366 !important
}
.bg-ro-d6 {
background-color: #7a5c52 !important
}
.bg-ro-d7 {
background-color: #5c453d !important
}
.bg-ro-d8 {
background-color: #3d2e29 !important
}
.bg-ro-d9 {
background-color: #1f1714 !important
}
.bg-or-l1 {
background-color: #fae6d1 !important
}
.bg-or-l2 {
background-color: #f5cca3 !important
}
.bg-or-l3 {
background-color: #f0b375 !important
}
.bg-or-l4 {
background-color: #eb9947 !important
}
.bg-or-l5 {
background-color: #e68019 !important
}
.bg-or-l6 {
background-color: #b86614 !important
}
.bg-or-l7 {
background-color: #8a4d0f !important
}
.bg-or-l8 {
background-color: #5c330a !important
}
.bg-or-l9 {
background-color: #2e1905 !important
}
.bg-or-m1 {
background-color: #f2e6d9 !important
}
.bg-or-m2 {
background-color: #e6ccb3 !important
}
.bg-or-m3 {
background-color: #d9b38c !important
}
.bg-or-m4 {
background-color: #cc9966 !important
}
.bg-or-m5 {
background-color: #bf8040 !important
}
.bg-or-m6 {
background-color: #996633 !important
}
.bg-or-m7 {
background-color: #734d26 !important
}
.bg-or-m8 {
background-color: #4d3319 !important
}
.bg-or-m9 {
background-color: #26190d !important
}
.bg-or-d1 {
background-color: #ebe6e0 !important
}
.bg-or-d2 {
background-color: #d6ccc2 !important
}
.bg-or-d3 {
background-color: #c2b3a3 !important
}
.bg-or-d4 {
background-color: #ad9985 !important
}
.bg-or-d5 {
background-color: #998066 !important
}
.bg-or-d6 {
background-color: #7a6652 !important
}
.bg-or-d7 {
background-color: #5c4d3d !important
}
.bg-or-d8 {
background-color: #3d3329 !important
}
.bg-or-d9 {
background-color: #1f1914 !important
}
.bg-oy-l1 {
background-color: #faf0d1 !important
}
.bg-oy-l2 {
background-color: #f5e0a3 !important
}
.bg-oy-l3 {
background-color: #f0d175 !important
}
.bg-oy-l4 {
background-color: #ebc247 !important
}
.bg-oy-l5 {
background-color: #e6b319 !important
}
.bg-oy-l6 {
background-color: #b88f14 !important
}
.bg-oy-l7 {
background-color: #8a6b0f !important
}
.bg-oy-l8 {
background-color: #5c470a !important
}
.bg-oy-l9 {
background-color: #2e2405 !important
}
.bg-oy-m1 {
background-color: #f2ecd9 !important
}
.bg-oy-m2 {
background-color: #e6d9b3 !important
}
.bg-oy-m3 {
background-color: #d9c68c !important
}
.bg-oy-m4 {
background-color: #ccb366 !important
}
.bg-oy-m5 {
background-color: #bf9f40 !important
}
.bg-oy-m6 {
background-color: #998033 !important
}
.bg-oy-m7 {
background-color: #736026 !important
}
.bg-oy-m8 {
background-color: #4d4019 !important
}
.bg-oy-m9 {
background-color: #26200d !important
}
.bg-oy-d1 {
background-color: #ebe8e0 !important
}
.bg-oy-d2 {
background-color: #d6d1c2 !important
}
.bg-oy-d3 {
background-color: #c2baa3 !important
}
.bg-oy-d4 {
background-color: #ada385 !important
}
.bg-oy-d5 {
background-color: #998c66 !important
}
.bg-oy-d6 {
background-color: #7a7052 !important
}
.bg-oy-d7 {
background-color: #5c543d !important
}
.bg-oy-d8 {
background-color: #3d3829 !important
}
.bg-oy-d9 {
background-color: #1f1c14 !important
}
.bg-ye-l1 {
background-color: #fafad1 !important
}
.bg-ye-l2 {
background-color: #f5f5a3 !important
}
.bg-ye-l3 {
background-color: #f0f075 !important
}
.bg-ye-l4 {
background-color: #ebeb47 !important
}
.bg-ye-l5 {
background-color: #e5e619 !important
}
.bg-ye-l6 {
background-color: #b8b814 !important
}
.bg-ye-l7 {
background-color: #8a8a0f !important
}
.bg-ye-l8 {
background-color: #5c5c0a !important
}
.bg-ye-l9 {
background-color: #2e2e05 !important
}
.bg-ye-m1 {
background-color: #f2f2d9 !important
}
.bg-ye-m2 {
background-color: #e5e6b3 !important
}
.bg-ye-m3 {
background-color: #d9d98c !important
}
.bg-ye-m4 {
background-color: #cccc66 !important
}
.bg-ye-m5 {
background-color: #bfbf40 !important
}
.bg-ye-m6 {
background-color: #999933 !important
}
.bg-ye-m7 {
background-color: #737326 !important
}
.bg-ye-m8 {
background-color: #4d4d19 !important
}
.bg-ye-m9 {
background-color: #26260d !important
}
.bg-ye-d1 {
background-color: #ebebe0 !important
}
.bg-ye-d2 {
background-color: #d6d6c2 !important
}
.bg-ye-d3 {
background-color: #c2c2a3 !important
}
.bg-ye-d4 {
background-color: #adad85 !important
}
.bg-ye-d5 {
background-color: #999966 !important
}
.bg-ye-d6 {
background-color: #7a7a52 !important
}
.bg-ye-d7 {
background-color: #5c5c3d !important
}
.bg-ye-d8 {
background-color: #3d3d29 !important
}
.bg-ye-d9 {
background-color: #1f1f14 !important
}
.bg-yc-l1 {
background-color: #f0fad1 !important
}
.bg-yc-l2 {
background-color: #e0f5a3 !important
}
.bg-yc-l3 {
background-color: #d1f075 !important
}
.bg-yc-l4 {
background-color: #c2eb47 !important
}
.bg-yc-l5 {
background-color: #b3e619 !important
}
.bg-yc-l6 {
background-color: #8fb814 !important
}
.bg-yc-l7 {
background-color: #6b8a0f !important
}
.bg-yc-l8 {
background-color: #475c0a !important
}
.bg-yc-l9 {
background-color: #242e05 !important
}
.bg-yc-m1 {
background-color: #ecf2d9 !important
}
.bg-yc-m2 {
background-color: #d9e6b3 !important
}
.bg-yc-m3 {
background-color: #c6d98c !important
}
.bg-yc-m4 {
background-color: #b3cc66 !important
}
.bg-yc-m5 {
background-color: #9fbf40 !important
}
.bg-yc-m6 {
background-color: #809933 !important
}
.bg-yc-m7 {
background-color: #607326 !important
}
.bg-yc-m8 {
background-color: #404d19 !important
}
.bg-yc-m9 {
background-color: #20260d !important
}
.bg-yc-d1 {
background-color: #e8ebe0 !important
}
.bg-yc-d2 {
background-color: #d1d6c2 !important
}
.bg-yc-d3 {
background-color: #bac2a3 !important
}
.bg-yc-d4 {
background-color: #a3ad85 !important
}
.bg-yc-d5 {
background-color: #8c9966 !important
}
.bg-yc-d6 {
background-color: #707a52 !important
}
.bg-yc-d7 {
background-color: #545c3d !important
}
.bg-yc-d8 {
background-color: #383d29 !important
}
.bg-yc-d9 {
background-color: #1c1f14 !important
}
.bg-ch-l1 {
background-color: #e6fad1 !important
}
.bg-ch-l2 {
background-color: #ccf5a3 !important
}
.bg-ch-l3 {
background-color: #b3f075 !important
}
.bg-ch-l4 {
background-color: #99eb47 !important
}
.bg-ch-l5 {
background-color: #80e619 !important
}
.bg-ch-l6 {
background-color: #66b814 !important
}
.bg-ch-l7 {
background-color: #4d8a0f !important
}
.bg-ch-l8 {
background-color: #335c0a !important
}
.bg-ch-l9 {
background-color: #1a2e05 !important
}
.bg-ch-m1 {
background-color: #e6f2d9 !important
}
.bg-ch-m2 {
background-color: #cce6b3 !important
}
.bg-ch-m3 {
background-color: #b3d98c !important
}
.bg-ch-m4 {
background-color: #99cc66 !important
}
.bg-ch-m5 {
background-color: #80bf40 !important
}
.bg-ch-m6 {
background-color: #669933 !important
}
.bg-ch-m7 {
background-color: #4d7326 !important
}
.bg-ch-m8 {
background-color: #334d19 !important
}
.bg-ch-m9 {
background-color: #1a260d !important
}
.bg-ch-d1 {
background-color: #e6ebe0 !important
}
.bg-ch-d2 {
background-color: #ccd6c2 !important
}
.bg-ch-d3 {
background-color: #b3c2a3 !important
}
.bg-ch-d4 {
background-color: #99ad85 !important
}
.bg-ch-d5 {
background-color: #809966 !important
}
.bg-ch-d6 {
background-color: #667a52 !important
}
.bg-ch-d7 {
background-color: #4d5c3d !important
}
.bg-ch-d8 {
background-color: #333d29 !important
}
.bg-ch-d9 {
background-color: #191f14 !important
}
.bg-cg-l1 {
background-color: #dbfad1 !important
}
.bg-cg-l2 {
background-color: #b8f5a3 !important
}
.bg-cg-l3 {
background-color: #94f075 !important
}
.bg-cg-l4 {
background-color: #70eb47 !important
}
.bg-cg-l5 {
background-color: #4ce619 !important
}
.bg-cg-l6 {
background-color: #3db814 !important
}
.bg-cg-l7 {
background-color: #2e8a0f !important
}
.bg-cg-l8 {
background-color: #1f5c0a !important
}
.bg-cg-l9 {
background-color: #0f2e05 !important
}
.bg-cg-m1 {
background-color: #dff2d9 !important
}
.bg-cg-m2 {
background-color: #bfe6b3 !important
}
.bg-cg-m3 {
background-color: #9fd98c !important
}
.bg-cg-m4 {
background-color: #7fcc66 !important
}
.bg-cg-m5 {
background-color: #60bf40 !important
}
.bg-cg-m6 {
background-color: #4c9933 !important
}
.bg-cg-m7 {
background-color: #397326 !important
}
.bg-cg-m8 {
background-color: #264d19 !important
}
.bg-cg-m9 {
background-color: #13260d !important
}
.bg-cg-d1 {
background-color: #e3ebe0 !important
}
.bg-cg-d2 {
background-color: #c7d6c2 !important
}
.bg-cg-d3 {
background-color: #abc2a3 !important
}
.bg-cg-d4 {
background-color: #8fad85 !important
}
.bg-cg-d5 {
background-color: #739966 !important
}
.bg-cg-d6 {
background-color: #5c7a52 !important
}
.bg-cg-d7 {
background-color: #455c3d !important
}
.bg-cg-d8 {
background-color: #2e3d29 !important
}
.bg-cg-d9 {
background-color: #171f14 !important
}
.bg-gr-l1 {
background-color: #d1fad1 !important
}
.bg-gr-l2 {
background-color: #a3f5a3 !important
}
.bg-gr-l3 {
background-color: #75f075 !important
}
.bg-gr-l4 {
background-color: #47eb47 !important
}
.bg-gr-l5 {
background-color: #19e619 !important
}
.bg-gr-l6 {
background-color: #14b814 !important
}
.bg-gr-l7 {
background-color: #0f8a0f !important
}
.bg-gr-l8 {
background-color: #0a5c0a !important
}
.bg-gr-l9 {
background-color: #052e05 !important
}
.bg-gr-m1 {
background-color: #d9f2d9 !important
}
.bg-gr-m2 {
background-color: #b3e6b3 !important
}
.bg-gr-m3 {
background-color: #8cd98c !important
}
.bg-gr-m4 {
background-color: #66cc66 !important
}
.bg-gr-m5 {
background-color: #40bf40 !important
}
.bg-gr-m6 {
background-color: #339933 !important
}
.bg-gr-m7 {
background-color: #267326 !important
}
.bg-gr-m8 {
background-color: #194d19 !important
}
.bg-gr-m9 {
background-color: #0d260d !important
}
.bg-gr-d1 {
background-color: #e0ebe0 !important
}
.bg-gr-d2 {
background-color: #c2d6c2 !important
}
.bg-gr-d3 {
background-color: #a3c2a3 !important
}
.bg-gr-d4 {
background-color: #85ad85 !important
}
.bg-gr-d5 {
background-color: #669966 !important
}
.bg-gr-d6 {
background-color: #527a52 !important
}
.bg-gr-d7 {
background-color: #3d5c3d !important
}
.bg-gr-d8 {
background-color: #293d29 !important
}
.bg-gr-d9 {
background-color: #141f14 !important
}
.bg-ga-l1 {
background-color: #d1fadb !important
}
.bg-ga-l2 {
background-color: #a3f5b8 !important
}
.bg-ga-l3 {
background-color: #75f094 !important
}
.bg-ga-l4 {
background-color: #47eb70 !important
}
.bg-ga-l5 {
background-color: #19e64d !important
}
.bg-ga-l6 {
background-color: #14b83d !important
}
.bg-ga-l7 {
background-color: #0f8a2e !important
}
.bg-ga-l8 {
background-color: #0a5c1f !important
}
.bg-ga-l9 {
background-color: #052e0f !important
}
.bg-ga-m1 {
background-color: #d9f2df !important
}
.bg-ga-m2 {
background-color: #b3e6bf !important
}
.bg-ga-m3 {
background-color: #8cd99f !important
}
.bg-ga-m4 {
background-color: #66cc80 !important
}
.bg-ga-m5 {
background-color: #40bf60 !important
}
.bg-ga-m6 {
background-color: #33994d !important
}
.bg-ga-m7 {
background-color: #267339 !important
}
.bg-ga-m8 {
background-color: #194d26 !important
}
.bg-ga-m9 {
background-color: #0d2613 !important
}
.bg-ga-d1 {
background-color: #e0ebe3 !important
}
.bg-ga-d2 {
background-color: #c2d6c7 !important
}
.bg-ga-d3 {
background-color: #a3c2ab !important
}
.bg-ga-d4 {
background-color: #85ad8f !important
}
.bg-ga-d5 {
background-color: #669973 !important
}
.bg-ga-d6 {
background-color: #527a5c !important
}
.bg-ga-d7 {
background-color: #3d5c45 !important
}
.bg-ga-d8 {
background-color: #293d2e !important
}
.bg-ga-d9 {
background-color: #141f17 !important
}
.bg-aq-l1 {
background-color: #d1fae6 !important
}
.bg-aq-l2 {
background-color: #a3f5cc !important
}
.bg-aq-l3 {
background-color: #75f0b3 !important
}
.bg-aq-l4 {
background-color: #47eb99 !important
}
.bg-aq-l5 {
background-color: #19e680 !important
}
.bg-aq-l6 {
background-color: #14b866 !important
}
.bg-aq-l7 {
background-color: #0f8a4d !important
}
.bg-aq-l8 {
background-color: #0a5c33 !important
}
.bg-aq-l9 {
background-color: #052e1a !important
}
.bg-aq-m1 {
background-color: #d9f2e6 !important
}
.bg-aq-m2 {
background-color: #b3e6cc !important
}
.bg-aq-m3 {
background-color: #8cd9b3 !important
}
.bg-aq-m4 {
background-color: #66cc99 !important
}
.bg-aq-m5 {
background-color: #40bf80 !important
}
.bg-aq-m6 {
background-color: #339966 !important
}
.bg-aq-m7 {
background-color: #26734d !important
}
.bg-aq-m8 {
background-color: #194d33 !important
}
.bg-aq-m9 {
background-color: #0d261a !important
}
.bg-aq-d1 {
background-color: #e0ebe6 !important
}
.bg-aq-d2 {
background-color: #c2d6cc !important
}
.bg-aq-d3 {
background-color: #a3c2b3 !important
}
.bg-aq-d4 {
background-color: #85ad99 !important
}
.bg-aq-d5 {
background-color: #669980 !important
}
.bg-aq-d6 {
background-color: #527a66 !important
}
.bg-aq-d7 {
background-color: #3d5c4d !important
}
.bg-aq-d8 {
background-color: #293d33 !important
}
.bg-aq-d9 {
background-color: #141f19 !important
}
.bg-ac-l1 {
background-color: #d1faf0 !important
}
.bg-ac-l2 {
background-color: #a3f5e0 !important
}
.bg-ac-l3 {
background-color: #75f0d1 !important
}
.bg-ac-l4 {
background-color: #47ebc2 !important
}
.bg-ac-l5 {
background-color: #19e6b3 !important
}
.bg-ac-l6 {
background-color: #14b88f !important
}
.bg-ac-l7 {
background-color: #0f8a6b !important
}
.bg-ac-l8 {
background-color: #0a5c47 !important
}
.bg-ac-l9 {
background-color: #052e24 !important
}
.bg-ac-m1 {
background-color: #d9f2ec !important
}
.bg-ac-m2 {
background-color: #b3e6d9 !important
}
.bg-ac-m3 {
background-color: #8cd9c6 !important
}
.bg-ac-m4 {
background-color: #66ccb3 !important
}
.bg-ac-m5 {
background-color: #40bf9f !important
}
.bg-ac-m6 {
background-color: #339980 !important
}
.bg-ac-m7 {
background-color: #267360 !important
}
.bg-ac-m8 {
background-color: #194d40 !important
}
.bg-ac-m9 {
background-color: #0d2620 !important
}
.bg-ac-d1 {
background-color: #e0ebe8 !important
}
.bg-ac-d2 {
background-color: #c2d6d1 !important
}
.bg-ac-d3 {
background-color: #a3c2ba !important
}
.bg-ac-d4 {
background-color: #85ada3 !important
}
.bg-ac-d5 {
background-color: #66998c !important
}
.bg-ac-d6 {
background-color: #527a70 !important
}
.bg-ac-d7 {
background-color: #3d5c54 !important
}
.bg-ac-d8 {
background-color: #293d38 !important
}
.bg-ac-d9 {
background-color: #141f1c !important
}
.bg-cy-l1 {
background-color: #d1fafa !important
}
.bg-cy-l2 {
background-color: #a3f5f5 !important
}
.bg-cy-l3 {
background-color: #75f0f0 !important
}
.bg-cy-l4 {
background-color: #47ebeb !important
}
.bg-cy-l5 {
background-color: #19e5e6 !important
}
.bg-cy-l6 {
background-color: #14b8b8 !important
}
.bg-cy-l7 {
background-color: #0f8a8a !important
}
.bg-cy-l8 {
background-color: #0a5c5c !important
}
.bg-cy-l9 {
background-color: #052e2e !important
}
.bg-cy-m1 {
background-color: #d9f2f2 !important
}
.bg-cy-m2 {
background-color: #b3e5e6 !important
}
.bg-cy-m3 {
background-color: #8cd9d9 !important
}
.bg-cy-m4 {
background-color: #66cccc !important
}
.bg-cy-m5 {
background-color: #40bfbf !important
}
.bg-cy-m6 {
background-color: #339999 !important
}
.bg-cy-m7 {
background-color: #267373 !important
}
.bg-cy-m8 {
background-color: #194d4d !important
}
.bg-cy-m9 {
background-color: #0d2626 !important
}
.bg-cy-d1 {
background-color: #e0ebeb !important
}
.bg-cy-d2 {
background-color: #c2d6d6 !important
}
.bg-cy-d3 {
background-color: #a3c2c2 !important
}
.bg-cy-d4 {
background-color: #85adad !important
}
.bg-cy-d5 {
background-color: #669999 !important
}
.bg-cy-d6 {
background-color: #527a7a !important
}
.bg-cy-d7 {
background-color: #3d5c5c !important
}
.bg-cy-d8 {
background-color: #293d3d !important
}
.bg-cy-d9 {
background-color: #141f1f !important
}
.bg-cb-l1 {
background-color: #d1f0fa !important
}
.bg-cb-l2 {
background-color: #a3e0f5 !important
}
.bg-cb-l3 {
background-color: #75d1f0 !important
}
.bg-cb-l4 {
background-color: #47c2eb !important
}
.bg-cb-l5 {
background-color: #19b3e6 !important
}
.bg-cb-l6 {
background-color: #148fb8 !important
}
.bg-cb-l7 {
background-color: #0f6b8a !important
}
.bg-cb-l8 {
background-color: #0a475c !important
}
.bg-cb-l9 {
background-color: #05242e !important
}
.bg-cb-m1 {
background-color: #d9ecf2 !important
}
.bg-cb-m2 {
background-color: #b3d9e6 !important
}
.bg-cb-m3 {
background-color: #8cc6d9 !important
}
.bg-cb-m4 {
background-color: #66b3cc !important
}
.bg-cb-m5 {
background-color: #409fbf !important
}
.bg-cb-m6 {
background-color: #338099 !important
}
.bg-cb-m7 {
background-color: #266073 !important
}
.bg-cb-m8 {
background-color: #19404d !important
}
.bg-cb-m9 {
background-color: #0d2026 !important
}
.bg-cb-d1 {
background-color: #e0e8eb !important
}
.bg-cb-d2 {
background-color: #c2d1d6 !important
}
.bg-cb-d3 {
background-color: #a3bac2 !important
}
.bg-cb-d4 {
background-color: #85a3ad !important
}
.bg-cb-d5 {
background-color: #668c99 !important
}
.bg-cb-d6 {
background-color: #52707a !important
}
.bg-cb-d7 {
background-color: #3d545c !important
}
.bg-cb-d8 {
background-color: #29383d !important
}
.bg-cb-d9 {
background-color: #141c1f !important
}
.bg-bl-l1 {
background-color: #d1e5fa !important
}
.bg-bl-l2 {
background-color: #a3ccf5 !important
}
.bg-bl-l3 {
background-color: #75b2f0 !important
}
.bg-bl-l4 {
background-color: #4799eb !important
}
.bg-bl-l5 {
background-color: #197fe6 !important
}
.bg-bl-l6 {
background-color: #1466b8 !important
}
.bg-bl-l7 {
background-color: #0f4c8a !important
}
.bg-bl-l8 {
background-color: #0a335c !important
}
.bg-bl-l9 {
background-color: #05192e !important
}
.bg-bl-m1 {
background-color: #d9e6f2 !important
}
.bg-bl-m2 {
background-color: #b3cce6 !important
}
.bg-bl-m3 {
background-color: #8cb2d9 !important
}
.bg-bl-m4 {
background-color: #6699cc !important
}
.bg-bl-m5 {
background-color: #407fbf !important
}
.bg-bl-m6 {
background-color: #336699 !important
}
.bg-bl-m7 {
background-color: #264c73 !important
}
.bg-bl-m8 {
background-color: #19334d !important
}
.bg-bl-m9 {
background-color: #0d1926 !important
}
.bg-bl-d1 {
background-color: #e0e6eb !important
}
.bg-bl-d2 {
background-color: #c2ccd6 !important
}
.bg-bl-d3 {
background-color: #a3b3c2 !important
}
.bg-bl-d4 {
background-color: #8599ad !important
}
.bg-bl-d5 {
background-color: #667f99 !important
}
.bg-bl-d6 {
background-color: #52667a !important
}
.bg-bl-d7 {
background-color: #3d4c5c !important
}
.bg-bl-d8 {
background-color: #29333d !important
}
.bg-bl-d9 {
background-color: #14191f !important
}
.bg-bi-l1 {
background-color: #d1dbfa !important
}
.bg-bi-l2 {
background-color: #a3b8f5 !important
}
.bg-bi-l3 {
background-color: #7594f0 !important
}
.bg-bi-l4 {
background-color: #4770eb !important
}
.bg-bi-l5 {
background-color: #194ce6 !important
}
.bg-bi-l6 {
background-color: #143db8 !important
}
.bg-bi-l7 {
background-color: #0f2e8a !important
}
.bg-bi-l8 {
background-color: #0a1f5c !important
}
.bg-bi-l9 {
background-color: #050f2e !important
}
.bg-bi-m1 {
background-color: #d9dff2 !important
}
.bg-bi-m2 {
background-color: #b3bfe6 !important
}
.bg-bi-m3 {
background-color: #8c9fd9 !important
}
.bg-bi-m4 {
background-color: #667fcc !important
}
.bg-bi-m5 {
background-color: #4060bf !important
}
.bg-bi-m6 {
background-color: #334c99 !important
}
.bg-bi-m7 {
background-color: #263973 !important
}
.bg-bi-m8 {
background-color: #19264d !important
}
.bg-bi-m9 {
background-color: #0d1326 !important
}
.bg-bi-d1 {
background-color: #e0e3eb !important
}
.bg-bi-d2 {
background-color: #c2c7d6 !important
}
.bg-bi-d3 {
background-color: #a3abc2 !important
}
.bg-bi-d4 {
background-color: #858fad !important
}
.bg-bi-d5 {
background-color: #667399 !important
}
.bg-bi-d6 {
background-color: #525c7a !important
}
.bg-bi-d7 {
background-color: #3d455c !important
}
.bg-bi-d8 {
background-color: #292e3d !important
}
.bg-bi-d9 {
background-color: #14171f !important
}
.bg-in-l1 {
background-color: #d1d1fa !important
}
.bg-in-l2 {
background-color: #a3a3f5 !important
}
.bg-in-l3 {
background-color: #7575f0 !important
}
.bg-in-l4 {
background-color: #4747eb !important
}
.bg-in-l5 {
background-color: #1919e6 !important
}
.bg-in-l6 {
background-color: #1414b8 !important
}
.bg-in-l7 {
background-color: #0f0f8a !important
}
.bg-in-l8 {
background-color: #0a0a5c !important
}
.bg-in-l9 {
background-color: #05052e !important
}
.bg-in-m1 {
background-color: #d9d9f2 !important
}
.bg-in-m2 {
background-color: #b3b3e6 !important
}
.bg-in-m3 {
background-color: #8c8cd9 !important
}
.bg-in-m4 {
background-color: #6666cc !important
}
.bg-in-m5 {
background-color: #4040bf !important
}
.bg-in-m6 {
background-color: #333399 !important
}
.bg-in-m7 {
background-color: #262673 !important
}
.bg-in-m8 {
background-color: #19194d !important
}
.bg-in-m9 {
background-color: #0d0d26 !important
}
.bg-in-d1 {
background-color: #e0e0eb !important
}
.bg-in-d2 {
background-color: #c2c2d6 !important
}
.bg-in-d3 {
background-color: #a3a3c2 !important
}
.bg-in-d4 {
background-color: #8585ad !important
}
.bg-in-d5 {
background-color: #666699 !important
}
.bg-in-d6 {
background-color: #52527a !important
}
.bg-in-d7 {
background-color: #3d3d5c !important
}
.bg-in-d8 {
background-color: #29293d !important
}
.bg-in-d9 {
background-color: #14141f !important
}
.bg-ip-l1 {
background-color: #dbd1fa !important
}
.bg-ip-l2 {
background-color: #b8a3f5 !important
}
.bg-ip-l3 {
background-color: #9475f0 !important
}
.bg-ip-l4 {
background-color: #7047eb !important
}
.bg-ip-l5 {
background-color: #4d19e6 !important
}
.bg-ip-l6 {
background-color: #3d14b8 !important
}
.bg-ip-l7 {
background-color: #2e0f8a !important
}
.bg-ip-l8 {
background-color: #1f0a5c !important
}
.bg-ip-l9 {
background-color: #0f052e !important
}
.bg-ip-m1 {
background-color: #dfd9f2 !important
}
.bg-ip-m2 {
background-color: #bfb3e6 !important
}
.bg-ip-m3 {
background-color: #9f8cd9 !important
}
.bg-ip-m4 {
background-color: #8066cc !important
}
.bg-ip-m5 {
background-color: #6040bf !important
}
.bg-ip-m6 {
background-color: #4d3399 !important
}
.bg-ip-m7 {
background-color: #392673 !important
}
.bg-ip-m8 {
background-color: #26194d !important
}
.bg-ip-m9 {
background-color: #130d26 !important
}
.bg-ip-d1 {
background-color: #e3e0eb !important
}
.bg-ip-d2 {
background-color: #c7c2d6 !important
}
.bg-ip-d3 {
background-color: #aba3c2 !important
}
.bg-ip-d4 {
background-color: #8f85ad !important
}
.bg-ip-d5 {
background-color: #736699 !important
}
.bg-ip-d6 {
background-color: #5c527a !important
}
.bg-ip-d7 {
background-color: #453d5c !important
}
.bg-ip-d8 {
background-color: #2e293d !important
}
.bg-ip-d9 {
background-color: #17141f !important
}
.bg-pu-l1 {
background-color: #e5d1fa !important
}
.bg-pu-l2 {
background-color: #cca3f5 !important
}
.bg-pu-l3 {
background-color: #b275f0 !important
}
.bg-pu-l4 {
background-color: #9947eb !important
}
.bg-pu-l5 {
background-color: #7f19e6 !important
}
.bg-pu-l6 {
background-color: #6614b8 !important
}
.bg-pu-l7 {
background-color: #4c0f8a !important
}
.bg-pu-l8 {
background-color: #330a5c !important
}
.bg-pu-l9 {
background-color: #19052e !important
}
.bg-pu-m1 {
background-color: #e6d9f2 !important
}
.bg-pu-m2 {
background-color: #ccb3e6 !important
}
.bg-pu-m3 {
background-color: #b28cd9 !important
}
.bg-pu-m4 {
background-color: #9966cc !important
}
.bg-pu-m5 {
background-color: #7f40bf !important
}
.bg-pu-m6 {
background-color: #663399 !important
}
.bg-pu-m7 {
background-color: #4c2673 !important
}
.bg-pu-m8 {
background-color: #33194d !important
}
.bg-pu-m9 {
background-color: #190d26 !important
}
.bg-pu-d1 {
background-color: #e6e0eb !important
}
.bg-pu-d2 {
background-color: #ccc2d6 !important
}
.bg-pu-d3 {
background-color: #b3a3c2 !important
}
.bg-pu-d4 {
background-color: #9985ad !important
}
.bg-pu-d5 {
background-color: #7f6699 !important
}
.bg-pu-d6 {
background-color: #66527a !important
}
.bg-pu-d7 {
background-color: #4c3d5c !important
}
.bg-pu-d8 {
background-color: #33293d !important
}
.bg-pu-d9 {
background-color: #19141f !important
}
.bg-pp-l1 {
background-color: #f0d1fa !important
}
.bg-pp-l2 {
background-color: #e0a3f5 !important
}
.bg-pp-l3 {
background-color: #d175f0 !important
}
.bg-pp-l4 {
background-color: #c247eb !important
}
.bg-pp-l5 {
background-color: #b319e6 !important
}
.bg-pp-l6 {
background-color: #8f14b8 !important
}
.bg-pp-l7 {
background-color: #6b0f8a !important
}
.bg-pp-l8 {
background-color: #470a5c !important
}
.bg-pp-l9 {
background-color: #24052e !important
}
.bg-pp-m1 {
background-color: #ecd9f2 !important
}
.bg-pp-m2 {
background-color: #d9b3e6 !important
}
.bg-pp-m3 {
background-color: #c68cd9 !important
}
.bg-pp-m4 {
background-color: #b366cc !important
}
.bg-pp-m5 {
background-color: #9f40bf !important
}
.bg-pp-m6 {
background-color: #803399 !important
}
.bg-pp-m7 {
background-color: #602673 !important
}
.bg-pp-m8 {
background-color: #40194d !important
}
.bg-pp-m9 {
background-color: #200d26 !important
}
.bg-pp-d1 {
background-color: #e8e0eb !important
}
.bg-pp-d2 {
background-color: #d1c2d6 !important
}
.bg-pp-d3 {
background-color: #baa3c2 !important
}
.bg-pp-d4 {
background-color: #a385ad !important
}
.bg-pp-d5 {
background-color: #8c6699 !important
}
.bg-pp-d6 {
background-color: #70527a !important
}
.bg-pp-d7 {
background-color: #543d5c !important
}
.bg-pp-d8 {
background-color: #38293d !important
}
.bg-pp-d9 {
background-color: #1c141f !important
}
.bg-pi-l1 {
background-color: #fad1fa !important
}
.bg-pi-l2 {
background-color: #f5a3f5 !important
}
.bg-pi-l3 {
background-color: #f075f0 !important
}
.bg-pi-l4 {
background-color: #eb47eb !important
}
.bg-pi-l5 {
background-color: #e619e5 !important
}
.bg-pi-l6 {
background-color: #b814b8 !important
}
.bg-pi-l7 {
background-color: #8a0f8a !important
}
.bg-pi-l8 {
background-color: #5c0a5c !important
}
.bg-pi-l9 {
background-color: #2e052e !important
}
.bg-pi-m1 {
background-color: #f2d9f2 !important
}
.bg-pi-m2 {
background-color: #e6b3e5 !important
}
.bg-pi-m3 {
background-color: #d98cd9 !important
}
.bg-pi-m4 {
background-color: #cc66cc !important
}
.bg-pi-m5 {
background-color: #bf40bf !important
}
.bg-pi-m6 {
background-color: #993399 !important
}
.bg-pi-m7 {
background-color: #732673 !important
}
.bg-pi-m8 {
background-color: #4d194d !important
}
.bg-pi-m9 {
background-color: #260d26 !important
}
.bg-pi-d1 {
background-color: #ebe0eb !important
}
.bg-pi-d2 {
background-color: #d6c2d6 !important
}
.bg-pi-d3 {
background-color: #c2a3c2 !important
}
.bg-pi-d4 {
background-color: #ad85ad !important
}
.bg-pi-d5 {
background-color: #996699 !important
}
.bg-pi-d6 {
background-color: #7a527a !important
}
.bg-pi-d7 {
background-color: #5c3d5c !important
}
.bg-pi-d8 {
background-color: #3d293d !important
}
.bg-pi-d9 {
background-color: #1f141f !important
}
.bg-pv-l1 {
background-color: #fad1f0 !important
}
.bg-pv-l2 {
background-color: #f5a3e0 !important
}
.bg-pv-l3 {
background-color: #f075d1 !important
}
.bg-pv-l4 {
background-color: #eb47c2 !important
}
.bg-pv-l5 {
background-color: #e619b2 !important
}
.bg-pv-l6 {
background-color: #b8148f !important
}
.bg-pv-l7 {
background-color: #8a0f6b !important
}
.bg-pv-l8 {
background-color: #5c0a47 !important
}
.bg-pv-l9 {
background-color: #2e0524 !important
}
.bg-pv-m1 {
background-color: #f2d9ec !important
}
.bg-pv-m2 {
background-color: #e6b3d9 !important
}
.bg-pv-m3 {
background-color: #d98cc6 !important
}
.bg-pv-m4 {
background-color: #cc66b2 !important
}
.bg-pv-m5 {
background-color: #bf409f !important
}
.bg-pv-m6 {
background-color: #99337f !important
}
.bg-pv-m7 {
background-color: #732660 !important
}
.bg-pv-m8 {
background-color: #4d1940 !important
}
.bg-pv-m9 {
background-color: #260d20 !important
}
.bg-pv-d1 {
background-color: #ebe0e8 !important
}
.bg-pv-d2 {
background-color: #d6c2d1 !important
}
.bg-pv-d3 {
background-color: #c2a3ba !important
}
.bg-pv-d4 {
background-color: #ad85a3 !important
}
.bg-pv-d5 {
background-color: #99668c !important
}
.bg-pv-d6 {
background-color: #7a5270 !important
}
.bg-pv-d7 {
background-color: #5c3d54 !important
}
.bg-pv-d8 {
background-color: #3d2938 !important
}
.bg-pv-d9 {
background-color: #1f141c !important
}
.bg-vi-l1 {
background-color: #fad1e6 !important
}
.bg-vi-l2 {
background-color: #f5a3cc !important
}
.bg-vi-l3 {
background-color: #f075b3 !important
}
.bg-vi-l4 {
background-color: #eb4799 !important
}
.bg-vi-l5 {
background-color: #e61980 !important
}
.bg-vi-l6 {
background-color: #b81466 !important
}
.bg-vi-l7 {
background-color: #8a0f4d !important
}
.bg-vi-l8 {
background-color: #5c0a33 !important
}
.bg-vi-l9 {
background-color: #2e051a !important
}
.bg-vi-m1 {
background-color: #f2d9e6 !important
}
.bg-vi-m2 {
background-color: #e6b3cc !important
}
.bg-vi-m3 {
background-color: #d98cb3 !important
}
.bg-vi-m4 {
background-color: #cc6699 !important
}
.bg-vi-m5 {
background-color: #bf4080 !important
}
.bg-vi-m6 {
background-color: #993366 !important
}
.bg-vi-m7 {
background-color: #73264d !important
}
.bg-vi-m8 {
background-color: #4d1933 !important
}
.bg-vi-m9 {
background-color: #260d1a !important
}
.bg-vi-d1 {
background-color: #ebe0e6 !important
}
.bg-vi-d2 {
background-color: #d6c2cc !important
}
.bg-vi-d3 {
background-color: #c2a3b3 !important
}
.bg-vi-d4 {
background-color: #ad8599 !important
}
.bg-vi-d5 {
background-color: #996680 !important
}
.bg-vi-d6 {
background-color: #7a5266 !important
}
.bg-vi-d7 {
background-color: #5c3d4d !important
}
.bg-vi-d8 {
background-color: #3d2933 !important
}
.bg-vi-d9 {
background-color: #1f1419 !important
}
.bg-vr-l1 {
background-color: #fad1db !important
}
.bg-vr-l2 {
background-color: #f5a3b8 !important
}
.bg-vr-l3 {
background-color: #f07594 !important
}
.bg-vr-l4 {
background-color: #eb4770 !important
}
.bg-vr-l5 {
background-color: #e6194c !important
}
.bg-vr-l6 {
background-color: #b8143d !important
}
.bg-vr-l7 {
background-color: #8a0f2e !important
}
.bg-vr-l8 {
background-color: #5c0a1f !important
}
.bg-vr-l9 {
background-color: #2e050f !important
}
.bg-vr-m1 {
background-color: #f2d9df !important
}
.bg-vr-m2 {
background-color: #e6b3bf !important
}
.bg-vr-m3 {
background-color: #d98c9f !important
}
.bg-vr-m4 {
background-color: #cc667f !important
}
.bg-vr-m5 {
background-color: #bf4060 !important
}
.bg-vr-m6 {
background-color: #99334c !important
}
.bg-vr-m7 {
background-color: #732639 !important
}
.bg-vr-m8 {
background-color: #4d1926 !important
}
.bg-vr-m9 {
background-color: #260d13 !important
}
.bg-vr-d1 {
background-color: #ebe0e3 !important
}
.bg-vr-d2 {
background-color: #d6c2c7 !important
}
.bg-vr-d3 {
background-color: #c2a3ab !important
}
.bg-vr-d4 {
background-color: #ad858f !important
}
.bg-vr-d5 {
background-color: #996673 !important
}
.bg-vr-d6 {
background-color: #7a525c !important
}
.bg-vr-d7 {
background-color: #5c3d45 !important
}
.bg-vr-d8 {
background-color: #3d292e !important
}
.bg-vr-d9 {
background-color: #1f1417 !important
}
.bg-gy-l1 {
background-color: #f2f2f2 !important
}
.bg-gy-l2 {
background-color: #e6e6e6 !important
}
.bg-gy-l3 {
background-color: #d9d9d9 !important
}
.bg-gy-l4 {
background-color: #cccccc !important
}
.bg-gy-l5 {
background-color: #bfbfbf !important
}
.bg-gy-l6 {
background-color: #b3b3b3 !important
}
.bg-gy-l7 {
background-color: #a6a6a6 !important
}
.bg-gy-l8 {
background-color: #999999 !important
}
.bg-gy-l9 {
background-color: #8c8c8c !important
}
.bg-gy-m1 {
background-color: #b3b3b3 !important
}
.bg-gy-m2 {
background-color: #a6a6a6 !important
}
.bg-gy-m3 {
background-color: #999999 !important
}
.bg-gy-m4 {
background-color: #8c8c8c !important
}
.bg-gy-m5 {
background-color: #808080 !important
}
.bg-gy-m6 {
background-color: #737373 !important
}
.bg-gy-m7 {
background-color: #666666 !important
}
.bg-gy-m8 {
background-color: #595959 !important
}
.bg-gy-m9 {
background-color: #4d4d4d !important
}
.bg-gy-d1 {
background-color: #808080 !important
}
.bg-gy-d2 {
background-color: #737373 !important
}
.bg-gy-d3 {
background-color: #666666 !important
}
.bg-gy-d4 {
background-color: #595959 !important
}
.bg-gy-d5 {
background-color: #4d4d4d !important
}
.bg-gy-d6 {
background-color: #404040 !important
}
.bg-gy-d7 {
background-color: #333333 !important
}
.bg-gy-d8 {
background-color: #262626 !important
}
.bg-gy-d9 {
background-color: #1a1a1a !important
}
.bg-re {
background-color: #ff0000
}
.bg-ro {
background-color: #ff4000
}
.bg-or {
background-color: #ff8000
}
.bg-oy {
background-color: #ffbf00
}
.bg-ye {
background-color: #ffff00
}
.bg-yc {
background-color: #bfff00
}
.bg-ch {
background-color: #80ff00
}
.bg-cg {
background-color: #40ff00
}
.bg-gr {
background-color: #00ff00
}
.bg-ga {
background-color: #00ff40
}
.bg-aq {
background-color: #00ff80
}
.bg-ac {
background-color: #00ffbf
}
.bg-cy {
background-color: #00ffff
}
.bg-cb {
background-color: #00bfff
}
.bg-bl {
background-color: #007fff
}
.bg-bi {
background-color: #0040ff
}
.bg-in {
background-color: #0000ff
}
.bg-ip {
background-color: #4000ff
}
.bg-pu {
background-color: #7f00ff
}
.bg-pp {
background-color: #bf00ff
}
.bg-pi {
background-color: #ff00ff
}
.bg-pv {
background-color: #ff00bf
}
.bg-vi {
background-color: #ff0080
}
.bg-vr {
background-color: #ff0040
}
.bg-gy {
background-color: #000
}
.bg-wh {
background-color: #fff
}
.bg-bk {
background-color: #000
}
.bg-tr {
background-color: transparent
}
.bg-re-l {
background-color: #e61919
}
.bg-ro-l {
background-color: #e64d19
}
.bg-or-l {
background-color: #e68019
}
.bg-oy-l {
background-color: #e6b319
}
.bg-ye-l {
background-color: #e5e619
}
.bg-yc-l {
background-color: #b3e619
}
.bg-ch-l {
background-color: #80e619
}
.bg-cg-l {
background-color: #4ce619
}
.bg-gr-l {
background-color: #19e619
}
.bg-ga-l {
background-color: #19e64d
}
.bg-aq-l {
background-color: #19e680
}
.bg-ac-l {
background-color: #19e6b3
}
.bg-cy-l {
background-color: #19e5e6
}
.bg-cb-l {
background-color: #19b3e6
}
.bg-bl-l {
background-color: #197fe6
}
.bg-bi-l {
background-color: #194ce6
}
.bg-in-l {
background-color: #1919e6
}
.bg-ip-l {
background-color: #4d19e6
}
.bg-pu-l {
background-color: #7f19e6
}
.bg-pp-l {
background-color: #b319e6
}
.bg-pi-l {
background-color: #e619e5
}
.bg-pv-l {
background-color: #e619b2
}
.bg-vi-l {
background-color: #e61980
}
.bg-vr-l {
background-color: #e6194c
}
.bg-gy-l {
background-color: #bfbfbf
}
.bg-re-m {
background-color: #bf4040
}
.bg-ro-m {
background-color: #bf6040
}
.bg-or-m {
background-color: #bf8040
}
.bg-oy-m {
background-color: #bf9f40
}
.bg-ye-m {
background-color: #bfbf40
}
.bg-yc-m {
background-color: #9fbf40
}
.bg-ch-m {
background-color: #80bf40
}
.bg-cg-m {
background-color: #60bf40
}
.bg-gr-m {
background-color: #40bf40
}
.bg-ga-m {
background-color: #40bf60
}
.bg-aq-m {
background-color: #40bf80
}
.bg-ac-m {
background-color: #40bf9f
}
.bg-cy-m {
background-color: #40bfbf
}
.bg-cb-m {
background-color: #409fbf
}
.bg-bl-m {
background-color: #407fbf
}
.bg-bi-m {
background-color: #4060bf
}
.bg-in-m {
background-color: #4040bf
}
.bg-ip-m {
background-color: #6040bf
}
.bg-pu-m {
background-color: #7f40bf
}
.bg-pp-m {
background-color: #9f40bf
}
.bg-pi-m {
background-color: #bf40bf
}
.bg-pv-m {
background-color: #bf409f
}
.bg-vi-m {
background-color: #bf4080
}
.bg-vr-m {
background-color: #bf4060
}
.bg-gy-m {
background-color: #808080
}
.bg-re-d {
background-color: #996666
}
.bg-ro-d {
background-color: #997366
}
.bg-or-d {
background-color: #998066
}
.bg-oy-d {
background-color: #998c66
}
.bg-ye-d {
background-color: #999966
}
.bg-yc-d {
background-color: #8c9966
}
.bg-ch-d {
background-color: #809966
}
.bg-cg-d {
background-color: #739966
}
.bg-gr-d {
background-color: #669966
}
.bg-ga-d {
background-color: #669973
}
.bg-aq-d {
background-color: #669980
}
.bg-ac-d {
background-color: #66998c
}
.bg-cy-d {
background-color: #669999
}
.bg-cb-d {
background-color: #668c99
}
.bg-bl-d {
background-color: #667f99
}
.bg-bi-d {
background-color: #667399
}
.bg-in-d {
background-color: #666699
}
.bg-ip-d {
background-color: #736699
}
.bg-pu-d {
background-color: #7f6699
}
.bg-pp-d {
background-color: #8c6699
}
.bg-pi-d {
background-color: #996699
}
.bg-pv-d {
background-color: #99668c
}
.bg-vi-d {
background-color: #996680
}
.bg-vr-d {
background-color: #996673
}
.bg-gy-d {
background-color: #4d4d4d
}
.t-re-l1 {
color: #fad1d1 !important
}
.t-re-l2 {
color: #f5a3a3 !important
}
.t-re-l3 {
color: #f07575 !important
}
.t-re-l4 {
color: #eb4747 !important
}
.t-re-l5 {
color: #e61919 !important
}
.t-re-l6 {
color: #b81414 !important
}
.t-re-l7 {
color: #8a0f0f !important
}
.t-re-l8 {
color: #5c0a0a !important
}
.t-re-l9 {
color: #2e0505 !important
}
.t-re-m1 {
color: #f2d9d9 !important
}
.t-re-m2 {
color: #e6b3b3 !important
}
.t-re-m3 {
color: #d98c8c !important
}
.t-re-m4 {
color: #cc6666 !important
}
.t-re-m5 {
color: #bf4040 !important
}
.t-re-m6 {
color: #993333 !important
}
.t-re-m7 {
color: #732626 !important
}
.t-re-m8 {
color: #4d1919 !important
}
.t-re-m9 {
color: #260d0d !important
}
.t-re-d1 {
color: #ebe0e0 !important
}
.t-re-d2 {
color: #d6c2c2 !important
}
.t-re-d3 {
color: #c2a3a3 !important
}
.t-re-d4 {
color: #ad8585 !important
}
.t-re-d5 {
color: #996666 !important
}
.t-re-d6 {
color: #7a5252 !important
}
.t-re-d7 {
color: #5c3d3d !important
}
.t-re-d8 {
color: #3d2929 !important
}
.t-re-d9 {
color: #1f1414 !important
}
.t-re-l1 {
color: #fad1d1 !important
}
.t-re-l2 {
color: #f5a3a3 !important
}
.t-re-l3 {
color: #f07575 !important
}
.t-re-l4 {
color: #eb4747 !important
}
.t-re-l5 {
color: #e61919 !important
}
.t-re-l6 {
color: #b81414 !important
}
.t-re-l7 {
color: #8a0f0f !important
}
.t-re-l8 {
color: #5c0a0a !important
}
.t-re-l9 {
color: #2e0505 !important
}
.t-re-m1 {
color: #f2d9d9 !important
}
.t-re-m2 {
color: #e6b3b3 !important
}
.t-re-m3 {
color: #d98c8c !important
}
.t-re-m4 {
color: #cc6666 !important
}
.t-re-m5 {
color: #bf4040 !important
}
.t-re-m6 {
color: #993333 !important
}
.t-re-m7 {
color: #732626 !important
}
.t-re-m8 {
color: #4d1919 !important
}
.t-re-m9 {
color: #260d0d !important
}
.t-re-d1 {
color: #ebe0e0 !important
}
.t-re-d2 {
color: #d6c2c2 !important
}
.t-re-d3 {
color: #c2a3a3 !important
}
.t-re-d4 {
color: #ad8585 !important
}
.t-re-d5 {
color: #996666 !important
}
.t-re-d6 {
color: #7a5252 !important
}
.t-re-d7 {
color: #5c3d3d !important
}
.t-re-d8 {
color: #3d2929 !important
}
.t-re-d9 {
color: #1f1414 !important
}
.t-ro-l1 {
color: #fadbd1 !important
}
.t-ro-l2 {
color: #f5b8a3 !important
}
.t-ro-l3 {
color: #f09475 !important
}
.t-ro-l4 {
color: #eb7047 !important
}
.t-ro-l5 {
color: #e64d19 !important
}
.t-ro-l6 {
color: #b83d14 !important
}
.t-ro-l7 {
color: #8a2e0f !important
}
.t-ro-l8 {
color: #5c1f0a !important
}
.t-ro-l9 {
color: #2e0f05 !important
}
.t-ro-m1 {
color: #f2dfd9 !important
}
.t-ro-m2 {
color: #e6bfb3 !important
}
.t-ro-m3 {
color: #d99f8c !important
}
.t-ro-m4 {
color: #cc7f66 !important
}
.t-ro-m5 {
color: #bf6040 !important
}
.t-ro-m6 {
color: #994d33 !important
}
.t-ro-m7 {
color: #733926 !important
}
.t-ro-m8 {
color: #4d2619 !important
}
.t-ro-m9 {
color: #26130d !important
}
.t-ro-d1 {
color: #ebe3e0 !important
}
.t-ro-d2 {
color: #d6c7c2 !important
}
.t-ro-d3 {
color: #c2aba3 !important
}
.t-ro-d4 {
color: #ad8f85 !important
}
.t-ro-d5 {
color: #997366 !important
}
.t-ro-d6 {
color: #7a5c52 !important
}
.t-ro-d7 {
color: #5c453d !important
}
.t-ro-d8 {
color: #3d2e29 !important
}
.t-ro-d9 {
color: #1f1714 !important
}
.t-or-l1 {
color: #fae6d1 !important
}
.t-or-l2 {
color: #f5cca3 !important
}
.t-or-l3 {
color: #f0b375 !important
}
.t-or-l4 {
color: #eb9947 !important
}
.t-or-l5 {
color: #e68019 !important
}
.t-or-l6 {
color: #b86614 !important
}
.t-or-l7 {
color: #8a4d0f !important
}
.t-or-l8 {
color: #5c330a !important
}
.t-or-l9 {
color: #2e1905 !important
}
.t-or-m1 {
color: #f2e6d9 !important
}
.t-or-m2 {
color: #e6ccb3 !important
}
.t-or-m3 {
color: #d9b38c !important
}
.t-or-m4 {
color: #cc9966 !important
}
.t-or-m5 {
color: #bf8040 !important
}
.t-or-m6 {
color: #996633 !important
}
.t-or-m7 {
color: #734d26 !important
}
.t-or-m8 {
color: #4d3319 !important
}
.t-or-m9 {
color: #26190d !important
}
.t-or-d1 {
color: #ebe6e0 !important
}
.t-or-d2 {
color: #d6ccc2 !important
}
.t-or-d3 {
color: #c2b3a3 !important
}
.t-or-d4 {
color: #ad9985 !important
}
.t-or-d5 {
color: #998066 !important
}
.t-or-d6 {
color: #7a6652 !important
}
.t-or-d7 {
color: #5c4d3d !important
}
.t-or-d8 {
color: #3d3329 !important
}
.t-or-d9 {
color: #1f1914 !important
}
.t-oy-l1 {
color: #faf0d1 !important
}
.t-oy-l2 {
color: #f5e0a3 !important
}
.t-oy-l3 {
color: #f0d175 !important
}
.t-oy-l4 {
color: #ebc247 !important
}
.t-oy-l5 {
color: #e6b319 !important
}
.t-oy-l6 {
color: #b88f14 !important
}
.t-oy-l7 {
color: #8a6b0f !important
}
.t-oy-l8 {
color: #5c470a !important
}
.t-oy-l9 {
color: #2e2405 !important
}
.t-oy-m1 {
color: #f2ecd9 !important
}
.t-oy-m2 {
color: #e6d9b3 !important
}
.t-oy-m3 {
color: #d9c68c !important
}
.t-oy-m4 {
color: #ccb366 !important
}
.t-oy-m5 {
color: #bf9f40 !important
}
.t-oy-m6 {
color: #998033 !important
}
.t-oy-m7 {
color: #736026 !important
}
.t-oy-m8 {
color: #4d4019 !important
}
.t-oy-m9 {
color: #26200d !important
}
.t-oy-d1 {
color: #ebe8e0 !important
}
.t-oy-d2 {
color: #d6d1c2 !important
}
.t-oy-d3 {
color: #c2baa3 !important
}
.t-oy-d4 {
color: #ada385 !important
}
.t-oy-d5 {
color: #998c66 !important
}
.t-oy-d6 {
color: #7a7052 !important
}
.t-oy-d7 {
color: #5c543d !important
}
.t-oy-d8 {
color: #3d3829 !important
}
.t-oy-d9 {
color: #1f1c14 !important
}
.t-ye-l1 {
color: #fafad1 !important
}
.t-ye-l2 {
color: #f5f5a3 !important
}
.t-ye-l3 {
color: #f0f075 !important
}
.t-ye-l4 {
color: #ebeb47 !important
}
.t-ye-l5 {
color: #e5e619 !important
}
.t-ye-l6 {
color: #b8b814 !important
}
.t-ye-l7 {
color: #8a8a0f !important
}
.t-ye-l8 {
color: #5c5c0a !important
}
.t-ye-l9 {
color: #2e2e05 !important
}
.t-ye-m1 {
color: #f2f2d9 !important
}
.t-ye-m2 {
color: #e5e6b3 !important
}
.t-ye-m3 {
color: #d9d98c !important
}
.t-ye-m4 {
color: #cccc66 !important
}
.t-ye-m5 {
color: #bfbf40 !important
}
.t-ye-m6 {
color: #999933 !important
}
.t-ye-m7 {
color: #737326 !important
}
.t-ye-m8 {
color: #4d4d19 !important
}
.t-ye-m9 {
color: #26260d !important
}
.t-ye-d1 {
color: #ebebe0 !important
}
.t-ye-d2 {
color: #d6d6c2 !important
}
.t-ye-d3 {
color: #c2c2a3 !important
}
.t-ye-d4 {
color: #adad85 !important
}
.t-ye-d5 {
color: #999966 !important
}
.t-ye-d6 {
color: #7a7a52 !important
}
.t-ye-d7 {
color: #5c5c3d !important
}
.t-ye-d8 {
color: #3d3d29 !important
}
.t-ye-d9 {
color: #1f1f14 !important
}
.t-yc-l1 {
color: #f0fad1 !important
}
.t-yc-l2 {
color: #e0f5a3 !important
}
.t-yc-l3 {
color: #d1f075 !important
}
.t-yc-l4 {
color: #c2eb47 !important
}
.t-yc-l5 {
color: #b3e619 !important
}
.t-yc-l6 {
color: #8fb814 !important
}
.t-yc-l7 {
color: #6b8a0f !important
}
.t-yc-l8 {
color: #475c0a !important
}
.t-yc-l9 {
color: #242e05 !important
}
.t-yc-m1 {
color: #ecf2d9 !important
}
.t-yc-m2 {
color: #d9e6b3 !important
}
.t-yc-m3 {
color: #c6d98c !important
}
.t-yc-m4 {
color: #b3cc66 !important
}
.t-yc-m5 {
color: #9fbf40 !important
}
.t-yc-m6 {
color: #809933 !important
}
.t-yc-m7 {
color: #607326 !important
}
.t-yc-m8 {
color: #404d19 !important
}
.t-yc-m9 {
color: #20260d !important
}
.t-yc-d1 {
color: #e8ebe0 !important
}
.t-yc-d2 {
color: #d1d6c2 !important
}
.t-yc-d3 {
color: #bac2a3 !important
}
.t-yc-d4 {
color: #a3ad85 !important
}
.t-yc-d5 {
color: #8c9966 !important
}
.t-yc-d6 {
color: #707a52 !important
}
.t-yc-d7 {
color: #545c3d !important
}
.t-yc-d8 {
color: #383d29 !important
}
.t-yc-d9 {
color: #1c1f14 !important
}
.t-ch-l1 {
color: #e6fad1 !important
}
.t-ch-l2 {
color: #ccf5a3 !important
}
.t-ch-l3 {
color: #b3f075 !important
}
.t-ch-l4 {
color: #99eb47 !important
}
.t-ch-l5 {
color: #80e619 !important
}
.t-ch-l6 {
color: #66b814 !important
}
.t-ch-l7 {
color: #4d8a0f !important
}
.t-ch-l8 {
color: #335c0a !important
}
.t-ch-l9 {
color: #1a2e05 !important
}
.t-ch-m1 {
color: #e6f2d9 !important
}
.t-ch-m2 {
color: #cce6b3 !important
}
.t-ch-m3 {
color: #b3d98c !important
}
.t-ch-m4 {
color: #99cc66 !important
}
.t-ch-m5 {
color: #80bf40 !important
}
.t-ch-m6 {
color: #669933 !important
}
.t-ch-m7 {
color: #4d7326 !important
}
.t-ch-m8 {
color: #334d19 !important
}
.t-ch-m9 {
color: #1a260d !important
}
.t-ch-d1 {
color: #e6ebe0 !important
}
.t-ch-d2 {
color: #ccd6c2 !important
}
.t-ch-d3 {
color: #b3c2a3 !important
}
.t-ch-d4 {
color: #99ad85 !important
}
.t-ch-d5 {
color: #809966 !important
}
.t-ch-d6 {
color: #667a52 !important
}
.t-ch-d7 {
color: #4d5c3d !important
}
.t-ch-d8 {
color: #333d29 !important
}
.t-ch-d9 {
color: #191f14 !important
}
.t-cg-l1 {
color: #dbfad1 !important
}
.t-cg-l2 {
color: #b8f5a3 !important
}
.t-cg-l3 {
color: #94f075 !important
}
.t-cg-l4 {
color: #70eb47 !important
}
.t-cg-l5 {
color: #4ce619 !important
}
.t-cg-l6 {
color: #3db814 !important
}
.t-cg-l7 {
color: #2e8a0f !important
}
.t-cg-l8 {
color: #1f5c0a !important
}
.t-cg-l9 {
color: #0f2e05 !important
}
.t-cg-m1 {
color: #dff2d9 !important
}
.t-cg-m2 {
color: #bfe6b3 !important
}
.t-cg-m3 {
color: #9fd98c !important
}
.t-cg-m4 {
color: #7fcc66 !important
}
.t-cg-m5 {
color: #60bf40 !important
}
.t-cg-m6 {
color: #4c9933 !important
}
.t-cg-m7 {
color: #397326 !important
}
.t-cg-m8 {
color: #264d19 !important
}
.t-cg-m9 {
color: #13260d !important
}
.t-cg-d1 {
color: #e3ebe0 !important
}
.t-cg-d2 {
color: #c7d6c2 !important
}
.t-cg-d3 {
color: #abc2a3 !important
}
.t-cg-d4 {
color: #8fad85 !important
}
.t-cg-d5 {
color: #739966 !important
}
.t-cg-d6 {
color: #5c7a52 !important
}
.t-cg-d7 {
color: #455c3d !important
}
.t-cg-d8 {
color: #2e3d29 !important
}
.t-cg-d9 {
color: #171f14 !important
}
.t-gr-l1 {
color: #d1fad1 !important
}
.t-gr-l2 {
color: #a3f5a3 !important
}
.t-gr-l3 {
color: #75f075 !important
}
.t-gr-l4 {
color: #47eb47 !important
}
.t-gr-l5 {
color: #19e619 !important
}
.t-gr-l6 {
color: #14b814 !important
}
.t-gr-l7 {
color: #0f8a0f !important
}
.t-gr-l8 {
color: #0a5c0a !important
}
.t-gr-l9 {
color: #052e05 !important
}
.t-gr-m1 {
color: #d9f2d9 !important
}
.t-gr-m2 {
color: #b3e6b3 !important
}
.t-gr-m3 {
color: #8cd98c !important
}
.t-gr-m4 {
color: #66cc66 !important
}
.t-gr-m5 {
color: #40bf40 !important
}
.t-gr-m6 {
color: #339933 !important
}
.t-gr-m7 {
color: #267326 !important
}
.t-gr-m8 {
color: #194d19 !important
}
.t-gr-m9 {
color: #0d260d !important
}
.t-gr-d1 {
color: #e0ebe0 !important
}
.t-gr-d2 {
color: #c2d6c2 !important
}
.t-gr-d3 {
color: #a3c2a3 !important
}
.t-gr-d4 {
color: #85ad85 !important
}
.t-gr-d5 {
color: #669966 !important
}
.t-gr-d6 {
color: #527a52 !important
}
.t-gr-d7 {
color: #3d5c3d !important
}
.t-gr-d8 {
color: #293d29 !important
}
.t-gr-d9 {
color: #141f14 !important
}
.t-ga-l1 {
color: #d1fadb !important
}
.t-ga-l2 {
color: #a3f5b8 !important
}
.t-ga-l3 {
color: #75f094 !important
}
.t-ga-l4 {
color: #47eb70 !important
}
.t-ga-l5 {
color: #19e64d !important
}
.t-ga-l6 {
color: #14b83d !important
}
.t-ga-l7 {
color: #0f8a2e !important
}
.t-ga-l8 {
color: #0a5c1f !important
}
.t-ga-l9 {
color: #052e0f !important
}
.t-ga-m1 {
color: #d9f2df !important
}
.t-ga-m2 {
color: #b3e6bf !important
}
.t-ga-m3 {
color: #8cd99f !important
}
.t-ga-m4 {
color: #66cc80 !important
}
.t-ga-m5 {
color: #40bf60 !important
}
.t-ga-m6 {
color: #33994d !important
}
.t-ga-m7 {
color: #267339 !important
}
.t-ga-m8 {
color: #194d26 !important
}
.t-ga-m9 {
color: #0d2613 !important
}
.t-ga-d1 {
color: #e0ebe3 !important
}
.t-ga-d2 {
color: #c2d6c7 !important
}
.t-ga-d3 {
color: #a3c2ab !important
}
.t-ga-d4 {
color: #85ad8f !important
}
.t-ga-d5 {
color: #669973 !important
}
.t-ga-d6 {
color: #527a5c !important
}
.t-ga-d7 {
color: #3d5c45 !important
}
.t-ga-d8 {
color: #293d2e !important
}
.t-ga-d9 {
color: #141f17 !important
}
.t-aq-l1 {
color: #d1fae6 !important
}
.t-aq-l2 {
color: #a3f5cc !important
}
.t-aq-l3 {
color: #75f0b3 !important
}
.t-aq-l4 {
color: #47eb99 !important
}
.t-aq-l5 {
color: #19e680 !important
}
.t-aq-l6 {
color: #14b866 !important
}
.t-aq-l7 {
color: #0f8a4d !important
}
.t-aq-l8 {
color: #0a5c33 !important
}
.t-aq-l9 {
color: #052e1a !important
}
.t-aq-m1 {
color: #d9f2e6 !important
}
.t-aq-m2 {
color: #b3e6cc !important
}
.t-aq-m3 {
color: #8cd9b3 !important
}
.t-aq-m4 {
color: #66cc99 !important
}
.t-aq-m5 {
color: #40bf80 !important
}
.t-aq-m6 {
color: #339966 !important
}
.t-aq-m7 {
color: #26734d !important
}
.t-aq-m8 {
color: #194d33 !important
}
.t-aq-m9 {
color: #0d261a !important
}
.t-aq-d1 {
color: #e0ebe6 !important
}
.t-aq-d2 {
color: #c2d6cc !important
}
.t-aq-d3 {
color: #a3c2b3 !important
}
.t-aq-d4 {
color: #85ad99 !important
}
.t-aq-d5 {
color: #669980 !important
}
.t-aq-d6 {
color: #527a66 !important
}
.t-aq-d7 {
color: #3d5c4d !important
}
.t-aq-d8 {
color: #293d33 !important
}
.t-aq-d9 {
color: #141f19 !important
}
.t-ac-l1 {
color: #d1faf0 !important
}
.t-ac-l2 {
color: #a3f5e0 !important
}
.t-ac-l3 {
color: #75f0d1 !important
}
.t-ac-l4 {
color: #47ebc2 !important
}
.t-ac-l5 {
color: #19e6b3 !important
}
.t-ac-l6 {
color: #14b88f !important
}
.t-ac-l7 {
color: #0f8a6b !important
}
.t-ac-l8 {
color: #0a5c47 !important
}
.t-ac-l9 {
color: #052e24 !important
}
.t-ac-m1 {
color: #d9f2ec !important
}
.t-ac-m2 {
color: #b3e6d9 !important
}
.t-ac-m3 {
color: #8cd9c6 !important
}
.t-ac-m4 {
color: #66ccb3 !important
}
.t-ac-m5 {
color: #40bf9f !important
}
.t-ac-m6 {
color: #339980 !important
}
.t-ac-m7 {
color: #267360 !important
}
.t-ac-m8 {
color: #194d40 !important
}
.t-ac-m9 {
color: #0d2620 !important
}
.t-ac-d1 {
color: #e0ebe8 !important
}
.t-ac-d2 {
color: #c2d6d1 !important
}
.t-ac-d3 {
color: #a3c2ba !important
}
.t-ac-d4 {
color: #85ada3 !important
}
.t-ac-d5 {
color: #66998c !important
}
.t-ac-d6 {
color: #527a70 !important
}
.t-ac-d7 {
color: #3d5c54 !important
}
.t-ac-d8 {
color: #293d38 !important
}
.t-ac-d9 {
color: #141f1c !important
}
.t-cy-l1 {
color: #d1fafa !important
}
.t-cy-l2 {
color: #a3f5f5 !important
}
.t-cy-l3 {
color: #75f0f0 !important
}
.t-cy-l4 {
color: #47ebeb !important
}
.t-cy-l5 {
color: #19e5e6 !important
}
.t-cy-l6 {
color: #14b8b8 !important
}
.t-cy-l7 {
color: #0f8a8a !important
}
.t-cy-l8 {
color: #0a5c5c !important
}
.t-cy-l9 {
color: #052e2e !important
}
.t-cy-m1 {
color: #d9f2f2 !important
}
.t-cy-m2 {
color: #b3e5e6 !important
}
.t-cy-m3 {
color: #8cd9d9 !important
}
.t-cy-m4 {
color: #66cccc !important
}
.t-cy-m5 {
color: #40bfbf !important
}
.t-cy-m6 {
color: #339999 !important
}
.t-cy-m7 {
color: #267373 !important
}
.t-cy-m8 {
color: #194d4d !important
}
.t-cy-m9 {
color: #0d2626 !important
}
.t-cy-d1 {
color: #e0ebeb !important
}
.t-cy-d2 {
color: #c2d6d6 !important
}
.t-cy-d3 {
color: #a3c2c2 !important
}
.t-cy-d4 {
color: #85adad !important
}
.t-cy-d5 {
color: #669999 !important
}
.t-cy-d6 {
color: #527a7a !important
}
.t-cy-d7 {
color: #3d5c5c !important
}
.t-cy-d8 {
color: #293d3d !important
}
.t-cy-d9 {
color: #141f1f !important
}
.t-cb-l1 {
color: #d1f0fa !important
}
.t-cb-l2 {
color: #a3e0f5 !important
}
.t-cb-l3 {
color: #75d1f0 !important
}
.t-cb-l4 {
color: #47c2eb !important
}
.t-cb-l5 {
color: #19b3e6 !important
}
.t-cb-l6 {
color: #148fb8 !important
}
.t-cb-l7 {
color: #0f6b8a !important
}
.t-cb-l8 {
color: #0a475c !important
}
.t-cb-l9 {
color: #05242e !important
}
.t-cb-m1 {
color: #d9ecf2 !important
}
.t-cb-m2 {
color: #b3d9e6 !important
}
.t-cb-m3 {
color: #8cc6d9 !important
}
.t-cb-m4 {
color: #66b3cc !important
}
.t-cb-m5 {
color: #409fbf !important
}
.t-cb-m6 {
color: #338099 !important
}
.t-cb-m7 {
color: #266073 !important
}
.t-cb-m8 {
color: #19404d !important
}
.t-cb-m9 {
color: #0d2026 !important
}
.t-cb-d1 {
color: #e0e8eb !important
}
.t-cb-d2 {
color: #c2d1d6 !important
}
.t-cb-d3 {
color: #a3bac2 !important
}
.t-cb-d4 {
color: #85a3ad !important
}
.t-cb-d5 {
color: #668c99 !important
}
.t-cb-d6 {
color: #52707a !important
}
.t-cb-d7 {
color: #3d545c !important
}
.t-cb-d8 {
color: #29383d !important
}
.t-cb-d9 {
color: #141c1f !important
}
.t-bl-l1 {
color: #d1e5fa !important
}
.t-bl-l2 {
color: #a3ccf5 !important
}
.t-bl-l3 {
color: #75b2f0 !important
}
.t-bl-l4 {
color: #4799eb !important
}
.t-bl-l5 {
color: #197fe6 !important
}
.t-bl-l6 {
color: #1466b8 !important
}
.t-bl-l7 {
color: #0f4c8a !important
}
.t-bl-l8 {
color: #0a335c !important
}
.t-bl-l9 {
color: #05192e !important
}
.t-bl-m1 {
color: #d9e6f2 !important
}
.t-bl-m2 {
color: #b3cce6 !important
}
.t-bl-m3 {
color: #8cb2d9 !important
}
.t-bl-m4 {
color: #6699cc !important
}
.t-bl-m5 {
color: #407fbf !important
}
.t-bl-m6 {
color: #336699 !important
}
.t-bl-m7 {
color: #264c73 !important
}
.t-bl-m8 {
color: #19334d !important
}
.t-bl-m9 {
color: #0d1926 !important
}
.t-bl-d1 {
color: #e0e6eb !important
}
.t-bl-d2 {
color: #c2ccd6 !important
}
.t-bl-d3 {
color: #a3b3c2 !important
}
.t-bl-d4 {
color: #8599ad !important
}
.t-bl-d5 {
color: #667f99 !important
}
.t-bl-d6 {
color: #52667a !important
}
.t-bl-d7 {
color: #3d4c5c !important
}
.t-bl-d8 {
color: #29333d !important
}
.t-bl-d9 {
color: #14191f !important
}
.t-bi-l1 {
color: #d1dbfa !important
}
.t-bi-l2 {
color: #a3b8f5 !important
}
.t-bi-l3 {
color: #7594f0 !important
}
.t-bi-l4 {
color: #4770eb !important
}
.t-bi-l5 {
color: #194ce6 !important
}
.t-bi-l6 {
color: #143db8 !important
}
.t-bi-l7 {
color: #0f2e8a !important
}
.t-bi-l8 {
color: #0a1f5c !important
}
.t-bi-l9 {
color: #050f2e !important
}
.t-bi-m1 {
color: #d9dff2 !important
}
.t-bi-m2 {
color: #b3bfe6 !important
}
.t-bi-m3 {
color: #8c9fd9 !important
}
.t-bi-m4 {
color: #667fcc !important
}
.t-bi-m5 {
color: #4060bf !important
}
.t-bi-m6 {
color: #334c99 !important
}
.t-bi-m7 {
color: #263973 !important
}
.t-bi-m8 {
color: #19264d !important
}
.t-bi-m9 {
color: #0d1326 !important
}
.t-bi-d1 {
color: #e0e3eb !important
}
.t-bi-d2 {
color: #c2c7d6 !important
}
.t-bi-d3 {
color: #a3abc2 !important
}
.t-bi-d4 {
color: #858fad !important
}
.t-bi-d5 {
color: #667399 !important
}
.t-bi-d6 {
color: #525c7a !important
}
.t-bi-d7 {
color: #3d455c !important
}
.t-bi-d8 {
color: #292e3d !important
}
.t-bi-d9 {
color: #14171f !important
}
.t-in-l1 {
color: #d1d1fa !important
}
.t-in-l2 {
color: #a3a3f5 !important
}
.t-in-l3 {
color: #7575f0 !important
}
.t-in-l4 {
color: #4747eb !important
}
.t-in-l5 {
color: #1919e6 !important
}
.t-in-l6 {
color: #1414b8 !important
}
.t-in-l7 {
color: #0f0f8a !important
}
.t-in-l8 {
color: #0a0a5c !important
}
.t-in-l9 {
color: #05052e !important
}
.t-in-m1 {
color: #d9d9f2 !important
}
.t-in-m2 {
color: #b3b3e6 !important
}
.t-in-m3 {
color: #8c8cd9 !important
}
.t-in-m4 {
color: #6666cc !important
}
.t-in-m5 {
color: #4040bf !important
}
.t-in-m6 {
color: #333399 !important
}
.t-in-m7 {
color: #262673 !important
}
.t-in-m8 {
color: #19194d !important
}
.t-in-m9 {
color: #0d0d26 !important
}
.t-in-d1 {
color: #e0e0eb !important
}
.t-in-d2 {
color: #c2c2d6 !important
}
.t-in-d3 {
color: #a3a3c2 !important
}
.t-in-d4 {
color: #8585ad !important
}
.t-in-d5 {
color: #666699 !important
}
.t-in-d6 {
color: #52527a !important
}
.t-in-d7 {
color: #3d3d5c !important
}
.t-in-d8 {
color: #29293d !important
}
.t-in-d9 {
color: #14141f !important
}
.t-ip-l1 {
color: #dbd1fa !important
}
.t-ip-l2 {
color: #b8a3f5 !important
}
.t-ip-l3 {
color: #9475f0 !important
}
.t-ip-l4 {
color: #7047eb !important
}
.t-ip-l5 {
color: #4d19e6 !important
}
.t-ip-l6 {
color: #3d14b8 !important
}
.t-ip-l7 {
color: #2e0f8a !important
}
.t-ip-l8 {
color: #1f0a5c !important
}
.t-ip-l9 {
color: #0f052e !important
}
.t-ip-m1 {
color: #dfd9f2 !important
}
.t-ip-m2 {
color: #bfb3e6 !important
}
.t-ip-m3 {
color: #9f8cd9 !important
}
.t-ip-m4 {
color: #8066cc !important
}
.t-ip-m5 {
color: #6040bf !important
}
.t-ip-m6 {
color: #4d3399 !important
}
.t-ip-m7 {
color: #392673 !important
}
.t-ip-m8 {
color: #26194d !important
}
.t-ip-m9 {
color: #130d26 !important
}
.t-ip-d1 {
color: #e3e0eb !important
}
.t-ip-d2 {
color: #c7c2d6 !important
}
.t-ip-d3 {
color: #aba3c2 !important
}
.t-ip-d4 {
color: #8f85ad !important
}
.t-ip-d5 {
color: #736699 !important
}
.t-ip-d6 {
color: #5c527a !important
}
.t-ip-d7 {
color: #453d5c !important
}
.t-ip-d8 {
color: #2e293d !important
}
.t-ip-d9 {
color: #17141f !important
}
.t-pu-l1 {
color: #e5d1fa !important
}
.t-pu-l2 {
color: #cca3f5 !important
}
.t-pu-l3 {
color: #b275f0 !important
}
.t-pu-l4 {
color: #9947eb !important
}
.t-pu-l5 {
color: #7f19e6 !important
}
.t-pu-l6 {
color: #6614b8 !important
}
.t-pu-l7 {
color: #4c0f8a !important
}
.t-pu-l8 {
color: #330a5c !important
}
.t-pu-l9 {
color: #19052e !important
}
.t-pu-m1 {
color: #e6d9f2 !important
}
.t-pu-m2 {
color: #ccb3e6 !important
}
.t-pu-m3 {
color: #b28cd9 !important
}
.t-pu-m4 {
color: #9966cc !important
}
.t-pu-m5 {
color: #7f40bf !important
}
.t-pu-m6 {
color: #663399 !important
}
.t-pu-m7 {
color: #4c2673 !important
}
.t-pu-m8 {
color: #33194d !important
}
.t-pu-m9 {
color: #190d26 !important
}
.t-pu-d1 {
color: #e6e0eb !important
}
.t-pu-d2 {
color: #ccc2d6 !important
}
.t-pu-d3 {
color: #b3a3c2 !important
}
.t-pu-d4 {
color: #9985ad !important
}
.t-pu-d5 {
color: #7f6699 !important
}
.t-pu-d6 {
color: #66527a !important
}
.t-pu-d7 {
color: #4c3d5c !important
}
.t-pu-d8 {
color: #33293d !important
}
.t-pu-d9 {
color: #19141f !important
}
.t-pp-l1 {
color: #f0d1fa !important
}
.t-pp-l2 {
color: #e0a3f5 !important
}
.t-pp-l3 {
color: #d175f0 !important
}
.t-pp-l4 {
color: #c247eb !important
}
.t-pp-l5 {
color: #b319e6 !important
}
.t-pp-l6 {
color: #8f14b8 !important
}
.t-pp-l7 {
color: #6b0f8a !important
}
.t-pp-l8 {
color: #470a5c !important
}
.t-pp-l9 {
color: #24052e !important
}
.t-pp-m1 {
color: #ecd9f2 !important
}
.t-pp-m2 {
color: #d9b3e6 !important
}
.t-pp-m3 {
color: #c68cd9 !important
}
.t-pp-m4 {
color: #b366cc !important
}
.t-pp-m5 {
color: #9f40bf !important
}
.t-pp-m6 {
color: #803399 !important
}
.t-pp-m7 {
color: #602673 !important
}
.t-pp-m8 {
color: #40194d !important
}
.t-pp-m9 {
color: #200d26 !important
}
.t-pp-d1 {
color: #e8e0eb !important
}
.t-pp-d2 {
color: #d1c2d6 !important
}
.t-pp-d3 {
color: #baa3c2 !important
}
.t-pp-d4 {
color: #a385ad !important
}
.t-pp-d5 {
color: #8c6699 !important
}
.t-pp-d6 {
color: #70527a !important
}
.t-pp-d7 {
color: #543d5c !important
}
.t-pp-d8 {
color: #38293d !important
}
.t-pp-d9 {
color: #1c141f !important
}
.t-pi-l1 {
color: #fad1fa !important
}
.t-pi-l2 {
color: #f5a3f5 !important
}
.t-pi-l3 {
color: #f075f0 !important
}
.t-pi-l4 {
color: #eb47eb !important
}
.t-pi-l5 {
color: #e619e5 !important
}
.t-pi-l6 {
color: #b814b8 !important
}
.t-pi-l7 {
color: #8a0f8a !important
}
.t-pi-l8 {
color: #5c0a5c !important
}
.t-pi-l9 {
color: #2e052e !important
}
.t-pi-m1 {
color: #f2d9f2 !important
}
.t-pi-m2 {
color: #e6b3e5 !important
}
.t-pi-m3 {
color: #d98cd9 !important
}
.t-pi-m4 {
color: #cc66cc !important
}
.t-pi-m5 {
color: #bf40bf !important
}
.t-pi-m6 {
color: #993399 !important
}
.t-pi-m7 {
color: #732673 !important
}
.t-pi-m8 {
color: #4d194d !important
}
.t-pi-m9 {
color: #260d26 !important
}
.t-pi-d1 {
color: #ebe0eb !important
}
.t-pi-d2 {
color: #d6c2d6 !important
}
.t-pi-d3 {
color: #c2a3c2 !important
}
.t-pi-d4 {
color: #ad85ad !important
}
.t-pi-d5 {
color: #996699 !important
}
.t-pi-d6 {
color: #7a527a !important
}
.t-pi-d7 {
color: #5c3d5c !important
}
.t-pi-d8 {
color: #3d293d !important
}
.t-pi-d9 {
color: #1f141f !important
}
.t-pv-l1 {
color: #fad1f0 !important
}
.t-pv-l2 {
color: #f5a3e0 !important
}
.t-pv-l3 {
color: #f075d1 !important
}
.t-pv-l4 {
color: #eb47c2 !important
}
.t-pv-l5 {
color: #e619b2 !important
}
.t-pv-l6 {
color: #b8148f !important
}
.t-pv-l7 {
color: #8a0f6b !important
}
.t-pv-l8 {
color: #5c0a47 !important
}
.t-pv-l9 {
color: #2e0524 !important
}
.t-pv-m1 {
color: #f2d9ec !important
}
.t-pv-m2 {
color: #e6b3d9 !important
}
.t-pv-m3 {
color: #d98cc6 !important
}
.t-pv-m4 {
color: #cc66b2 !important
}
.t-pv-m5 {
color: #bf409f !important
}
.t-pv-m6 {
color: #99337f !important
}
.t-pv-m7 {
color: #732660 !important
}
.t-pv-m8 {
color: #4d1940 !important
}
.t-pv-m9 {
color: #260d20 !important
}
.t-pv-d1 {
color: #ebe0e8 !important
}
.t-pv-d2 {
color: #d6c2d1 !important
}
.t-pv-d3 {
color: #c2a3ba !important
}
.t-pv-d4 {
color: #ad85a3 !important
}
.t-pv-d5 {
color: #99668c !important
}
.t-pv-d6 {
color: #7a5270 !important
}
.t-pv-d7 {
color: #5c3d54 !important
}
.t-pv-d8 {
color: #3d2938 !important
}
.t-pv-d9 {
color: #1f141c !important
}
.t-vi-l1 {
color: #fad1e6 !important
}
.t-vi-l2 {
color: #f5a3cc !important
}
.t-vi-l3 {
color: #f075b3 !important
}
.t-vi-l4 {
color: #eb4799 !important
}
.t-vi-l5 {
color: #e61980 !important
}
.t-vi-l6 {
color: #b81466 !important
}
.t-vi-l7 {
color: #8a0f4d !important
}
.t-vi-l8 {
color: #5c0a33 !important
}
.t-vi-l9 {
color: #2e051a !important
}
.t-vi-m1 {
color: #f2d9e6 !important
}
.t-vi-m2 {
color: #e6b3cc !important
}
.t-vi-m3 {
color: #d98cb3 !important
}
.t-vi-m4 {
color: #cc6699 !important
}
.t-vi-m5 {
color: #bf4080 !important
}
.t-vi-m6 {
color: #993366 !important
}
.t-vi-m7 {
color: #73264d !important
}
.t-vi-m8 {
color: #4d1933 !important
}
.t-vi-m9 {
color: #260d1a !important
}
.t-vi-d1 {
color: #ebe0e6 !important
}
.t-vi-d2 {
color: #d6c2cc !important
}
.t-vi-d3 {
color: #c2a3b3 !important
}
.t-vi-d4 {
color: #ad8599 !important
}
.t-vi-d5 {
color: #996680 !important
}
.t-vi-d6 {
color: #7a5266 !important
}
.t-vi-d7 {
color: #5c3d4d !important
}
.t-vi-d8 {
color: #3d2933 !important
}
.t-vi-d9 {
color: #1f1419 !important
}
.t-vr-l1 {
color: #fad1db !important
}
.t-vr-l2 {
color: #f5a3b8 !important
}
.t-vr-l3 {
color: #f07594 !important
}
.t-vr-l4 {
color: #eb4770 !important
}
.t-vr-l5 {
color: #e6194c !important
}
.t-vr-l6 {
color: #b8143d !important
}
.t-vr-l7 {
color: #8a0f2e !important
}
.t-vr-l8 {
color: #5c0a1f !important
}
.t-vr-l9 {
color: #2e050f !important
}
.t-vr-m1 {
color: #f2d9df !important
}
.t-vr-m2 {
color: #e6b3bf !important
}
.t-vr-m3 {
color: #d98c9f !important
}
.t-vr-m4 {
color: #cc667f !important
}
.t-vr-m5 {
color: #bf4060 !important
}
.t-vr-m6 {
color: #99334c !important
}
.t-vr-m7 {
color: #732639 !important
}
.t-vr-m8 {
color: #4d1926 !important
}
.t-vr-m9 {
color: #260d13 !important
}
.t-vr-d1 {
color: #ebe0e3 !important
}
.t-vr-d2 {
color: #d6c2c7 !important
}
.t-vr-d3 {
color: #c2a3ab !important
}
.t-vr-d4 {
color: #ad858f !important
}
.t-vr-d5 {
color: #996673 !important
}
.t-vr-d6 {
color: #7a525c !important
}
.t-vr-d7 {
color: #5c3d45 !important
}
.t-vr-d8 {
color: #3d292e !important
}
.t-vr-d9 {
color: #1f1417 !important
}
.t-gy-l1 {
color: #f2f2f2 !important
}
.t-gy-l2 {
color: #e6e6e6 !important
}
.t-gy-l3 {
color: #d9d9d9 !important
}
.t-gy-l4 {
color: #cccccc !important
}
.t-gy-l5 {
color: #bfbfbf !important
}
.t-gy-l6 {
color: #b3b3b3 !important
}
.t-gy-l7 {
color: #a6a6a6 !important
}
.t-gy-l8 {
color: #999999 !important
}
.t-gy-l9 {
color: #8c8c8c !important
}
.t-gy-m1 {
color: #b3b3b3 !important
}
.t-gy-m2 {
color: #a6a6a6 !important
}
.t-gy-m3 {
color: #999999 !important
}
.t-gy-m4 {
color: #8c8c8c !important
}
.t-gy-m5 {
color: #808080 !important
}
.t-gy-m6 {
color: #737373 !important
}
.t-gy-m7 {
color: #666666 !important
}
.t-gy-m8 {
color: #595959 !important
}
.t-gy-m9 {
color: #4d4d4d !important
}
.t-gy-d1 {
color: #808080 !important
}
.t-gy-d2 {
color: #737373 !important
}
.t-gy-d3 {
color: #666666 !important
}
.t-gy-d4 {
color: #595959 !important
}
.t-gy-d5 {
color: #4d4d4d !important
}
.t-gy-d6 {
color: #404040 !important
}
.t-gy-d7 {
color: #333333 !important
}
.t-gy-d8 {
color: #262626 !important
}
.t-gy-d9 {
color: #1a1a1a !important
}
.t-re {
color: #ff0000 !important
}
.t-ro {
color: #ff4000 !important
}
.t-or {
color: #ff8000 !important
}
.t-oy {
color: #ffbf00 !important
}
.t-ye {
color: #ffff00 !important
}
.t-yc {
color: #bfff00 !important
}
.t-ch {
color: #80ff00 !important
}
.t-cg {
color: #40ff00 !important
}
.t-gr {
color: #00ff00 !important
}
.t-ga {
color: #00ff40 !important
}
.t-aq {
color: #00ff80 !important
}
.t-ac {
color: #00ffbf !important
}
.t-cy {
color: #00ffff !important
}
.t-cb {
color: #00bfff !important
}
.t-bl {
color: #007fff !important
}
.t-bi {
color: #0040ff !important
}
.t-in {
color: #0000ff !important
}
.t-ip {
color: #4000ff !important
}
.t-pu {
color: #7f00ff !important
}
.t-pp {
color: #bf00ff !important
}
.t-pi {
color: #ff00ff !important
}
.t-pv {
color: #ff00bf !important
}
.t-vi {
color: #ff0080 !important
}
.t-vr {
color: #ff0040 !important
}
.t-gy {
color: #000 !important
}
.t-wh {
color: #fff !important
}
.t-bk {
color: #000 !important
}
.t-tr {
color: transparent !important
}
.t-re-l {
color: #e61919 !important
}
.t-ro-l {
color: #e64d19 !important
}
.t-or-l {
color: #e68019 !important
}
.t-oy-l {
color: #e6b319 !important
}
.t-ye-l {
color: #e5e619 !important
}
.t-yc-l {
color: #b3e619 !important
}
.t-ch-l {
color: #80e619 !important
}
.t-cg-l {
color: #4ce619 !important
}
.t-gr-l {
color: #19e619 !important
}
.t-ga-l {
color: #19e64d !important
}
.t-aq-l {
color: #19e680 !important
}
.t-ac-l {
color: #19e6b3 !important
}
.t-cy-l {
color: #19e5e6 !important
}
.t-cb-l {
color: #19b3e6 !important
}
.t-bl-l {
color: #197fe6 !important
}
.t-bi-l {
color: #194ce6 !important
}
.t-in-l {
color: #1919e6 !important
}
.t-ip-l {
color: #4d19e6 !important
}
.t-pu-l {
color: #7f19e6 !important
}
.t-pp-l {
color: #b319e6 !important
}
.t-pi-l {
color: #e619e5 !important
}
.t-pv-l {
color: #e619b2 !important
}
.t-vi-l {
color: #e61980 !important
}
.t-vr-l {
color: #e6194c !important
}
.t-gy-l {
color: #bfbfbf !important
}
.t-re-m {
color: #bf4040 !important
}
.t-ro-m {
color: #bf6040 !important
}
.t-or-m {
color: #bf8040 !important
}
.t-oy-m {
color: #bf9f40 !important
}
.t-ye-m {
color: #bfbf40 !important
}
.t-yc-m {
color: #9fbf40 !important
}
.t-ch-m {
color: #80bf40 !important
}
.t-cg-m {
color: #60bf40 !important
}
.t-gr-m {
color: #40bf40 !important
}
.t-ga-m {
color: #40bf60 !important
}
.t-aq-m {
color: #40bf80 !important
}
.t-ac-m {
color: #40bf9f !important
}
.t-cy-m {
color: #40bfbf !important
}
.t-cb-m {
color: #409fbf !important
}
.t-bl-m {
color: #407fbf !important
}
.t-bi-m {
color: #4060bf !important
}
.t-in-m {
color: #4040bf !important
}
.t-ip-m {
color: #6040bf !important
}
.t-pu-m {
color: #7f40bf !important
}
.t-pp-m {
color: #9f40bf !important
}
.t-pi-m {
color: #bf40bf !important
}
.t-pv-m {
color: #bf409f !important
}
.t-vi-m {
color: #bf4080 !important
}
.t-vr-m {
color: #bf4060 !important
}
.t-gy-m {
color: #808080 !important
}
.t-re-d {
color: #996666 !important
}
.t-ro-d {
color: #997366 !important
}
.t-or-d {
color: #998066 !important
}
.t-oy-d {
color: #998c66 !important
}
.t-ye-d {
color: #999966 !important
}
.t-yc-d {
color: #8c9966 !important
}
.t-ch-d {
color: #809966 !important
}
.t-cg-d {
color: #739966 !important
}
.t-gr-d {
color: #669966 !important
}
.t-ga-d {
color: #669973 !important
}
.t-aq-d {
color: #669980 !important
}
.t-ac-d {
color: #66998c !important
}
.t-cy-d {
color: #669999 !important
}
.t-cb-d {
color: #668c99 !important
}
.t-bl-d {
color: #667f99 !important
}
.t-bi-d {
color: #667399 !important
}
.t-in-d {
color: #666699 !important
}
.t-ip-d {
color: #736699 !important
}
.t-pu-d {
color: #7f6699 !important
}
.t-pp-d {
color: #8c6699 !important
}
.t-pi-d {
color: #996699 !important
}
.t-pv-d {
color: #99668c !important
}
.t-vi-d {
color: #996680 !important
}
.t-vr-d {
color: #996673 !important
}
.t-gy-d {
color: #4d4d4d !important
}
.bg-re-hl1 {
background-color: #fad1df !important
}
.bg-re-hl2 {
background-color: #f5a3b8 !important
}
.bg-re-hl3 {
background-color: #f0758a !important
}
.bg-re-hl4 {
background-color: #eb4755 !important
}
.bg-re-hl5 {
background-color: #e61919 !important
}
.bg-re-hl6 {
background-color: #b82214 !important
}
.bg-re-hl7 {
background-color: #8a240f !important
}
.bg-re-hl8 {
background-color: #5c1f0a !important
}
.bg-re-hl9 {
background-color: #2e1305 !important
}
.bg-re-hm1 {
background-color: #f2d9e1 !important
}
.bg-re-hm2 {
background-color: #e6b3bf !important
}
.bg-re-hm3 {
background-color: #d98c99 !important
}
.bg-re-hm4 {
background-color: #cc666e !important
}
.bg-re-hm5 {
background-color: #bf4040 !important
}
.bg-re-hm6 {
background-color: #993b33 !important
}
.bg-re-hm7 {
background-color: #733326 !important
}
.bg-re-hm8 {
background-color: #4d2619 !important
}
.bg-re-hm9 {
background-color: #26150d !important
}
.bg-re-hd1 {
background-color: #ebe0e4 !important
}
.bg-re-hd2 {
background-color: #d6c2c7 !important
}
.bg-re-hd3 {
background-color: #c2a3a8 !important
}
.bg-re-hd4 {
background-color: #ad8588 !important
}
.bg-re-hd5 {
background-color: #996666 !important
}
.bg-re-hd6 {
background-color: #7a5552 !important
}
.bg-re-hd7 {
background-color: #5c423d !important
}
.bg-re-hd8 {
background-color: #3d2e29 !important
}
.bg-re-hd9 {
background-color: #1f1814 !important
}
.bg-ro-hl1 {
background-color: #fad1d4 !important
}
.bg-ro-hl2 {
background-color: #f5a3a3 !important
}
.bg-ro-hl3 {
background-color: #f07f75 !important
}
.bg-ro-hl4 {
background-color: #eb6347 !important
}
.bg-ro-hl5 {
background-color: #e64d19 !important
}
.bg-ro-hl6 {
background-color: #b84b14 !important
}
.bg-ro-hl7 {
background-color: #8a420f !important
}
.bg-ro-hl8 {
background-color: #5c330a !important
}
.bg-ro-hl9 {
background-color: #2e1d05 !important
}
.bg-ro-hm1 {
background-color: #f2d9db !important
}
.bg-ro-hm2 {
background-color: #e6b3b3 !important
}
.bg-ro-hm3 {
background-color: #d9938c !important
}
.bg-ro-hm4 {
background-color: #cc7766 !important
}
.bg-ro-hm5 {
background-color: #bf6040 !important
}
.bg-ro-hm6 {
background-color: #995533 !important
}
.bg-ro-hm7 {
background-color: #734626 !important
}
.bg-ro-hm8 {
background-color: #4d3319 !important
}
.bg-ro-hm9 {
background-color: #261c0d !important
}
.bg-ro-hd1 {
background-color: #ebe0e1 !important
}
.bg-ro-hd2 {
background-color: #d6c2c2 !important
}
.bg-ro-hd3 {
background-color: #c2a6a3 !important
}
.bg-ro-hd4 {
background-color: #ad8b85 !important
}
.bg-ro-hd5 {
background-color: #997366 !important
}
.bg-ro-hd6 {
background-color: #7a5f52 !important
}
.bg-ro-hd7 {
background-color: #5c4a3d !important
}
.bg-ro-hd8 {
background-color: #3d3329 !important
}
.bg-ro-hd9 {
background-color: #1f1a14 !important
}
.bg-or-hl1 {
background-color: #fad8d1 !important
}
.bg-or-hl2 {
background-color: #f5b8a3 !important
}
.bg-or-hl3 {
background-color: #f09e75 !important
}
.bg-or-hl4 {
background-color: #eb8b47 !important
}
.bg-or-hl5 {
background-color: #e68019 !important
}
.bg-or-hl6 {
background-color: #b87414 !important
}
.bg-or-hl7 {
background-color: #8a610f !important
}
.bg-or-hl8 {
background-color: #5c470a !important
}
.bg-or-hl9 {
background-color: #2e2705 !important
}
.bg-or-hm1 {
background-color: #f2ddd9 !important
}
.bg-or-hm2 {
background-color: #e6bfb3 !important
}
.bg-or-hm3 {
background-color: #d9a68c !important
}
.bg-or-hm4 {
background-color: #cc9166 !important
}
.bg-or-hm5 {
background-color: #bf8040 !important
}
.bg-or-hm6 {
background-color: #996f33 !important
}
.bg-or-hm7 {
background-color: #735926 !important
}
.bg-or-hm8 {
background-color: #4d4019 !important
}
.bg-or-hm9 {
background-color: #26220d !important
}
.bg-or-hd1 {
background-color: #ebe2e0 !important
}
.bg-or-hd2 {
background-color: #d6c7c2 !important
}
.bg-or-hd3 {
background-color: #c2ada3 !important
}
.bg-or-hd4 {
background-color: #ad9685 !important
}
.bg-or-hd5 {
background-color: #998066 !important
}
.bg-or-hd6 {
background-color: #7a6952 !important
}
.bg-or-hd7 {
background-color: #5c523d !important
}
.bg-or-hd8 {
background-color: #3d3829 !important
}
.bg-or-hd9 {
background-color: #1f1d14 !important
}
.bg-oy-hl1 {
background-color: #fae2d1 !important
}
.bg-oy-hl2 {
background-color: #f5cca3 !important
}
.bg-oy-hl3 {
background-color: #f0bd75 !important
}
.bg-oy-hl4 {
background-color: #ebb447 !important
}
.bg-oy-hl5 {
background-color: #e6b319 !important
}
.bg-oy-hl6 {
background-color: #b89c14 !important
}
.bg-oy-hl7 {
background-color: #8a800f !important
}
.bg-oy-hl8 {
background-color: #5c5c0a !important
}
.bg-oy-hl9 {
background-color: #2b2e05 !important
}
.bg-oy-hm1 {
background-color: #f2e3d9 !important
}
.bg-oy-hm2 {
background-color: #e6ccb3 !important
}
.bg-oy-hm3 {
background-color: #d9b98c !important
}
.bg-oy-hm4 {
background-color: #ccaa66 !important
}
.bg-oy-hm5 {
background-color: #bf9f40 !important
}
.bg-oy-hm6 {
background-color: #998833 !important
}
.bg-oy-hm7 {
background-color: #736c26 !important
}
.bg-oy-hm8 {
background-color: #4d4d19 !important
}
.bg-oy-hm9 {
background-color: #24260d !important
}
.bg-oy-hd1 {
background-color: #ebe5e0 !important
}
.bg-oy-hd2 {
background-color: #d6ccc2 !important
}
.bg-oy-hd3 {
background-color: #c2b5a3 !important
}
.bg-oy-hd4 {
background-color: #ada085 !important
}
.bg-oy-hd5 {
background-color: #998c66 !important
}
.bg-oy-hd6 {
background-color: #7a7452 !important
}
.bg-oy-hd7 {
background-color: #5c593d !important
}
.bg-oy-hd8 {
background-color: #3d3d29 !important
}
.bg-oy-hd9 {
background-color: #1e1f14 !important
}
.bg-ye-hl1 {
background-color: #faecd1 !important
}
.bg-ye-hl2 {
background-color: #f5e0a3 !important
}
.bg-ye-hl3 {
background-color: #f0db75 !important
}
.bg-ye-hl4 {
background-color: #ebdd47 !important
}
.bg-ye-hl5 {
background-color: #e5e619 !important
}
.bg-ye-hl6 {
background-color: #aab814 !important
}
.bg-ye-hl7 {
background-color: #758a0f !important
}
.bg-ye-hl8 {
background-color: #475c0a !important
}
.bg-ye-hl9 {
background-color: #202e05 !important
}
.bg-ye-hm1 {
background-color: #f2ead9 !important
}
.bg-ye-hm2 {
background-color: #e6d9b3 !important
}
.bg-ye-hm3 {
background-color: #d9cc8c !important
}
.bg-ye-hm4 {
background-color: #ccc466 !important
}
.bg-ye-hm5 {
background-color: #bfbf40 !important
}
.bg-ye-hm6 {
background-color: #909933 !important
}
.bg-ye-hm7 {
background-color: #667326 !important
}
.bg-ye-hm8 {
background-color: #404d19 !important
}
.bg-ye-hm9 {
background-color: #1e260d !important
}
.bg-ye-hd1 {
background-color: #ebe7e0 !important
}
.bg-ye-hd2 {
background-color: #d6d1c2 !important
}
.bg-ye-hd3 {
background-color: #c2bda3 !important
}
.bg-ye-hd4 {
background-color: #adaa85 !important
}
.bg-ye-hd5 {
background-color: #999966 !important
}
.bg-ye-hd6 {
background-color: #777a52 !important
}
.bg-ye-hd7 {
background-color: #575c3d !important
}
.bg-ye-hd8 {
background-color: #383d29 !important
}
.bg-ye-hd9 {
background-color: #1b1f14 !important
}
.bg-yc-hl1 {
background-color: #faf7d1 !important
}
.bg-yc-hl2 {
background-color: #f5f5a3 !important
}
.bg-yc-hl3 {
background-color: #e6f075 !important
}
.bg-yc-hl4 {
background-color: #cfeb47 !important
}
.bg-yc-hl5 {
background-color: #b3e619 !important
}
.bg-yc-hl6 {
background-color: #81b814 !important
}
.bg-yc-hl7 {
background-color: #578a0f !important
}
.bg-yc-hl8 {
background-color: #335c0a !important
}
.bg-yc-hl9 {
background-color: #162e05 !important
}
.bg-yc-hm1 {
background-color: #f2f0d9 !important
}
.bg-yc-hm2 {
background-color: #e5e6b3 !important
}
.bg-yc-hm3 {
background-color: #d2d98c !important
}
.bg-yc-hm4 {
background-color: #bbcc66 !important
}
.bg-yc-hm5 {
background-color: #9fbf40 !important
}
.bg-yc-hm6 {
background-color: #779933 !important
}
.bg-yc-hm7 {
background-color: #537326 !important
}
.bg-yc-hm8 {
background-color: #334d19 !important
}
.bg-yc-hm9 {
background-color: #17260d !important
}
.bg-yc-hd1 {
background-color: #ebeae0 !important
}
.bg-yc-hd2 {
background-color: #d6d6c2 !important
}
.bg-yc-hd3 {
background-color: #bfc2a3 !important
}
.bg-yc-hd4 {
background-color: #a7ad85 !important
}
.bg-yc-hd5 {
background-color: #8c9966 !important
}
.bg-yc-hd6 {
background-color: #6d7a52 !important
}
.bg-yc-hd7 {
background-color: #4f5c3d !important
}
.bg-yc-hd8 {
background-color: #333d29 !important
}
.bg-yc-hd9 {
background-color: #191f14 !important
}
.bg-ch-hl1 {
background-color: #f3fad1 !important
}
.bg-ch-hl2 {
background-color: #e0f5a3 !important
}
.bg-ch-hl3 {
background-color: #c7f075 !important
}
.bg-ch-hl4 {
background-color: #a7eb47 !important
}
.bg-ch-hl5 {
background-color: #80e619 !important
}
.bg-ch-hl6 {
background-color: #58b814 !important
}
.bg-ch-hl7 {
background-color: #388a0f !important
}
.bg-ch-hl8 {
background-color: #1f5c0a !important
}
.bg-ch-hl9 {
background-color: #0c2e05 !important
}
.bg-ch-hm1 {
background-color: #eef2d9 !important
}
.bg-ch-hm2 {
background-color: #d9e6b3 !important
}
.bg-ch-hm3 {
background-color: #bfd98c !important
}
.bg-ch-hm4 {
background-color: #a2cc66 !important
}
.bg-ch-hm5 {
background-color: #80bf40 !important
}
.bg-ch-hm6 {
background-color: #5e9933 !important
}
.bg-ch-hm7 {
background-color: #407326 !important
}
.bg-ch-hm8 {
background-color: #264d19 !important
}
.bg-ch-hm9 {
background-color: #11260d !important
}
.bg-ch-hd1 {
background-color: #e9ebe0 !important
}
.bg-ch-hd2 {
background-color: #d1d6c2 !important
}
.bg-ch-hd3 {
background-color: #b8c2a3 !important
}
.bg-ch-hd4 {
background-color: #9cad85 !important
}
.bg-ch-hd5 {
background-color: #809966 !important
}
.bg-ch-hd6 {
background-color: #637a52 !important
}
.bg-ch-hd7 {
background-color: #475c3d !important
}
.bg-ch-hd8 {
background-color: #2e3d29 !important
}
.bg-ch-hd9 {
background-color: #161f14 !important
}
.bg-cg-hl1 {
background-color: #e9fad1 !important
}
.bg-cg-hl2 {
background-color: #ccf5a3 !important
}
.bg-cg-hl3 {
background-color: #a8f075 !important
}
.bg-cg-hl4 {
background-color: #7eeb47 !important
}
.bg-cg-hl5 {
background-color: #4ce619 !important
}
.bg-cg-hl6 {
background-color: #30b814 !important
}
.bg-cg-hl7 {
background-color: #1a8a0f !important
}
.bg-cg-hl8 {
background-color: #0a5c0a !important
}
.bg-cg-hl9 {
background-color: #052e09 !important
}
.bg-cg-hm1 {
background-color: #e8f2d9 !important
}
.bg-cg-hm2 {
background-color: #cce6b3 !important
}
.bg-cg-hm3 {
background-color: #acd98c !important
}
.bg-cg-hm4 {
background-color: #88cc66 !important
}
.bg-cg-hm5 {
background-color: #60bf40 !important
}
.bg-cg-hm6 {
background-color: #449933 !important
}
.bg-cg-hm7 {
background-color: #2d7326 !important
}
.bg-cg-hm8 {
background-color: #194d19 !important
}
.bg-cg-hm9 {
background-color: #0d260f !important
}
.bg-cg-hd1 {
background-color: #e6ebe0 !important
}
.bg-cg-hd2 {
background-color: #ccd6c2 !important
}
.bg-cg-hd3 {
background-color: #b0c2a3 !important
}
.bg-cg-hd4 {
background-color: #92ad85 !important
}
.bg-cg-hd5 {
background-color: #739966 !important
}
.bg-cg-hd6 {
background-color: #587a52 !important
}
.bg-cg-hd7 {
background-color: #405c3d !important
}
.bg-cg-hd8 {
background-color: #293d29 !important
}
.bg-cg-hd9 {
background-color: #141f15 !important
}
.bg-gr-hl1 {
background-color: #dffad1 !important
}
.bg-gr-hl2 {
background-color: #b8f5a3 !important
}
.bg-gr-hl3 {
background-color: #8af075 !important
}
.bg-gr-hl4 {
background-color: #55eb47 !important
}
.bg-gr-hl5 {
background-color: #19e619 !important
}
.bg-gr-hl6 {
background-color: #14b822 !important
}
.bg-gr-hl7 {
background-color: #0f8a24 !important
}
.bg-gr-hl8 {
background-color: #0a5c1f !important
}
.bg-gr-hl9 {
background-color: #052e13 !important
}
.bg-gr-hm1 {
background-color: #e1f2d9 !important
}
.bg-gr-hm2 {
background-color: #bfe6b3 !important
}
.bg-gr-hm3 {
background-color: #99d98c !important
}
.bg-gr-hm4 {
background-color: #6fcc66 !important
}
.bg-gr-hm5 {
background-color: #40bf40 !important
}
.bg-gr-hm6 {
background-color: #33993c !important
}
.bg-gr-hm7 {
background-color: #267333 !important
}
.bg-gr-hm8 {
background-color: #194d26 !important
}
.bg-gr-hm9 {
background-color: #0d2615 !important
}
.bg-gr-hd1 {
background-color: #e4ebe0 !important
}
.bg-gr-hd2 {
background-color: #c7d6c2 !important
}
.bg-gr-hd3 {
background-color: #a8c2a3 !important
}
.bg-gr-hd4 {
background-color: #88ad85 !important
}
.bg-gr-hd5 {
background-color: #669966 !important
}
.bg-gr-hd6 {
background-color: #527a55 !important
}
.bg-gr-hd7 {
background-color: #3d5c42 !important
}
.bg-gr-hd8 {
background-color: #293d2e !important
}
.bg-gr-hd9 {
background-color: #141f18 !important
}
.bg-ga-hl1 {
background-color: #d5fad1 !important
}
.bg-ga-hl2 {
background-color: #a3f5a3 !important
}
.bg-ga-hl3 {
background-color: #75f080 !important
}
.bg-ga-hl4 {
background-color: #47eb63 !important
}
.bg-ga-hl5 {
background-color: #19e64d !important
}
.bg-ga-hl6 {
background-color: #14b84b !important
}
.bg-ga-hl7 {
background-color: #0f8a42 !important
}
.bg-ga-hl8 {
background-color: #0a5c33 !important
}
.bg-ga-hl9 {
background-color: #052e1d !important
}
.bg-ga-hm1 {
background-color: #dbf2d9 !important
}
.bg-ga-hm2 {
background-color: #b3e6b3 !important
}
.bg-ga-hm3 {
background-color: #8cd993 !important
}
.bg-ga-hm4 {
background-color: #66cc77 !important
}
.bg-ga-hm5 {
background-color: #40bf60 !important
}
.bg-ga-hm6 {
background-color: #339955 !important
}
.bg-ga-hm7 {
background-color: #267346 !important
}
.bg-ga-hm8 {
background-color: #194d33 !important
}
.bg-ga-hm9 {
background-color: #0d261c !important
}
.bg-ga-hd1 {
background-color: #e1ebe0 !important
}
.bg-ga-hd2 {
background-color: #c2d6c2 !important
}
.bg-ga-hd3 {
background-color: #a3c2a6 !important
}
.bg-ga-hd4 {
background-color: #85ad8b !important
}
.bg-ga-hd5 {
background-color: #669973 !important
}
.bg-ga-hd6 {
background-color: #527a5f !important
}
.bg-ga-hd7 {
background-color: #3d5c4a !important
}
.bg-ga-hd8 {
background-color: #293d33 !important
}
.bg-ga-hd9 {
background-color: #141f1a !important
}
.bg-aq-hl1 {
background-color: #d1fad8 !important
}
.bg-aq-hl2 {
background-color: #a3f5b8 !important
}
.bg-aq-hl3 {
background-color: #75f09e !important
}
.bg-aq-hl4 {
background-color: #47eb8b !important
}
.bg-aq-hl5 {
background-color: #19e680 !important
}
.bg-aq-hl6 {
background-color: #14b874 !important
}
.bg-aq-hl7 {
background-color: #0f8a61 !important
}
.bg-aq-hl8 {
background-color: #0a5c47 !important
}
.bg-aq-hl9 {
background-color: #052e27 !important
}
.bg-aq-hm1 {
background-color: #d9f2dd !important
}
.bg-aq-hm2 {
background-color: #b3e6bf !important
}
.bg-aq-hm3 {
background-color: #8cd9a6 !important
}
.bg-aq-hm4 {
background-color: #66cc91 !important
}
.bg-aq-hm5 {
background-color: #40bf80 !important
}
.bg-aq-hm6 {
background-color: #33996f !important
}
.bg-aq-hm7 {
background-color: #267359 !important
}
.bg-aq-hm8 {
background-color: #194d40 !important
}
.bg-aq-hm9 {
background-color: #0d2622 !important
}
.bg-aq-hd1 {
background-color: #e0ebe2 !important
}
.bg-aq-hd2 {
background-color: #c2d6c7 !important
}
.bg-aq-hd3 {
background-color: #a3c2ad !important
}
.bg-aq-hd4 {
background-color: #85ad96 !important
}
.bg-aq-hd5 {
background-color: #669980 !important
}
.bg-aq-hd6 {
background-color: #527a69 !important
}
.bg-aq-hd7 {
background-color: #3d5c52 !important
}
.bg-aq-hd8 {
background-color: #293d38 !important
}
.bg-aq-hd9 {
background-color: #141f1d !important
}
.bg-ac-hl1 {
background-color: #d1fae2 !important
}
.bg-ac-hl2 {
background-color: #a3f5cc !important
}
.bg-ac-hl3 {
background-color: #75f0bd !important
}
.bg-ac-hl4 {
background-color: #47ebb4 !important
}
.bg-ac-hl5 {
background-color: #19e6b3 !important
}
.bg-ac-hl6 {
background-color: #14b89c !important
}
.bg-ac-hl7 {
background-color: #0f8a80 !important
}
.bg-ac-hl8 {
background-color: #0a5c5c !important
}
.bg-ac-hl9 {
background-color: #052b2e !important
}
.bg-ac-hm1 {
background-color: #d9f2e3 !important
}
.bg-ac-hm2 {
background-color: #b3e6cc !important
}
.bg-ac-hm3 {
background-color: #8cd9b9 !important
}
.bg-ac-hm4 {
background-color: #66ccaa !important
}
.bg-ac-hm5 {
background-color: #40bf9f !important
}
.bg-ac-hm6 {
background-color: #339988 !important
}
.bg-ac-hm7 {
background-color: #26736c !important
}
.bg-ac-hm8 {
background-color: #194d4d !important
}
.bg-ac-hm9 {
background-color: #0d2426 !important
}
.bg-ac-hd1 {
background-color: #e0ebe5 !important
}
.bg-ac-hd2 {
background-color: #c2d6cc !important
}
.bg-ac-hd3 {
background-color: #a3c2b5 !important
}
.bg-ac-hd4 {
background-color: #85ada0 !important
}
.bg-ac-hd5 {
background-color: #66998c !important
}
.bg-ac-hd6 {
background-color: #527a74 !important
}
.bg-ac-hd7 {
background-color: #3d5c59 !important
}
.bg-ac-hd8 {
background-color: #293d3d !important
}
.bg-ac-hd9 {
background-color: #141e1f !important
}
.bg-cy-hl1 {
background-color: #d1faec !important
}
.bg-cy-hl2 {
background-color: #a3f5e0 !important
}
.bg-cy-hl3 {
background-color: #75f0db !important
}
.bg-cy-hl4 {
background-color: #47ebdd !important
}
.bg-cy-hl5 {
background-color: #19e5e6 !important
}
.bg-cy-hl6 {
background-color: #14aab8 !important
}
.bg-cy-hl7 {
background-color: #0f758a !important
}
.bg-cy-hl8 {
background-color: #0a475c !important
}
.bg-cy-hl9 {
background-color: #05202e !important
}
.bg-cy-hm1 {
background-color: #d9f2ea !important
}
.bg-cy-hm2 {
background-color: #b3e6d9 !important
}
.bg-cy-hm3 {
background-color: #8cd9cc !important
}
.bg-cy-hm4 {
background-color: #66ccc4 !important
}
.bg-cy-hm5 {
background-color: #40bfbf !important
}
.bg-cy-hm6 {
background-color: #339199 !important
}
.bg-cy-hm7 {
background-color: #266673 !important
}
.bg-cy-hm8 {
background-color: #19404d !important
}
.bg-cy-hm9 {
background-color: #0d1e26 !important
}
.bg-cy-hd1 {
background-color: #e0ebe7 !important
}
.bg-cy-hd2 {
background-color: #c2d6d1 !important
}
.bg-cy-hd3 {
background-color: #a3c2bd !important
}
.bg-cy-hd4 {
background-color: #85adaa !important
}
.bg-cy-hd5 {
background-color: #669999 !important
}
.bg-cy-hd6 {
background-color: #52777a !important
}
.bg-cy-hd7 {
background-color: #3d575c !important
}
.bg-cy-hd8 {
background-color: #29383d !important
}
.bg-cy-hd9 {
background-color: #141b1f !important
}
.bg-cb-hl1 {
background-color: #d1faf7 !important
}
.bg-cb-hl2 {
background-color: #a3f5f5 !important
}
.bg-cb-hl3 {
background-color: #75e6f0 !important
}
.bg-cb-hl4 {
background-color: #47cfeb !important
}
.bg-cb-hl5 {
background-color: #19b3e6 !important
}
.bg-cb-hl6 {
background-color: #1481b8 !important
}
.bg-cb-hl7 {
background-color: #0f578a !important
}
.bg-cb-hl8 {
background-color: #0a335c !important
}
.bg-cb-hl9 {
background-color: #05162e !important
}
.bg-cb-hm1 {
background-color: #d9f2f0 !important
}
.bg-cb-hm2 {
background-color: #b3e5e6 !important
}
.bg-cb-hm3 {
background-color: #8cd2d9 !important
}
.bg-cb-hm4 {
background-color: #66bbcc !important
}
.bg-cb-hm5 {
background-color: #409fbf !important
}
.bg-cb-hm6 {
background-color: #337799 !important
}
.bg-cb-hm7 {
background-color: #265373 !important
}
.bg-cb-hm8 {
background-color: #19334d !important
}
.bg-cb-hm9 {
background-color: #0d1726 !important
}
.bg-cb-hd1 {
background-color: #e0ebea !important
}
.bg-cb-hd2 {
background-color: #c2d6d6 !important
}
.bg-cb-hd3 {
background-color: #a3bfc2 !important
}
.bg-cb-hd4 {
background-color: #85a7ad !important
}
.bg-cb-hd5 {
background-color: #668c99 !important
}
.bg-cb-hd6 {
background-color: #526d7a !important
}
.bg-cb-hd7 {
background-color: #3d4f5c !important
}
.bg-cb-hd8 {
background-color: #29333d !important
}
.bg-cb-hd9 {
background-color: #14191f !important
}
.bg-bl-hl1 {
background-color: #d1f3fa !important
}
.bg-bl-hl2 {
background-color: #a3e0f5 !important
}
.bg-bl-hl3 {
background-color: #75c7f0 !important
}
.bg-bl-hl4 {
background-color: #47a7eb !important
}
.bg-bl-hl5 {
background-color: #197fe6 !important
}
.bg-bl-hl6 {
background-color: #1458b8 !important
}
.bg-bl-hl7 {
background-color: #0f388a !important
}
.bg-bl-hl8 {
background-color: #0a1f5c !important
}
.bg-bl-hl9 {
background-color: #050c2e !important
}
.bg-bl-hm1 {
background-color: #d9eef2 !important
}
.bg-bl-hm2 {
background-color: #b3d9e6 !important
}
.bg-bl-hm3 {
background-color: #8cbfd9 !important
}
.bg-bl-hm4 {
background-color: #66a1cc !important
}
.bg-bl-hm5 {
background-color: #407fbf !important
}
.bg-bl-hm6 {
background-color: #335d99 !important
}
.bg-bl-hm7 {
background-color: #264073 !important
}
.bg-bl-hm8 {
background-color: #19264d !important
}
.bg-bl-hm9 {
background-color: #0d1126 !important
}
.bg-bl-hd1 {
background-color: #e0e9eb !important
}
.bg-bl-hd2 {
background-color: #c2d1d6 !important
}
.bg-bl-hd3 {
background-color: #a3b8c2 !important
}
.bg-bl-hd4 {
background-color: #859cad !important
}
.bg-bl-hd5 {
background-color: #667f99 !important
}
.bg-bl-hd6 {
background-color: #52637a !important
}
.bg-bl-hd7 {
background-color: #3d475c !important
}
.bg-bl-hd8 {
background-color: #292e3d !important
}
.bg-bl-hd9 {
background-color: #14161f !important
}
.bg-bi-hl1 {
background-color: #d1e9fa !important
}
.bg-bi-hl2 {
background-color: #a3ccf5 !important
}
.bg-bi-hl3 {
background-color: #75a8f0 !important
}
.bg-bi-hl4 {
background-color: #477eeb !important
}
.bg-bi-hl5 {
background-color: #194ce6 !important
}
.bg-bi-hl6 {
background-color: #1430b8 !important
}
.bg-bi-hl7 {
background-color: #0f198a !important
}
.bg-bi-hl8 {
background-color: #0a0a5c !important
}
.bg-bi-hl9 {
background-color: #08052e !important
}
.bg-bi-hm1 {
background-color: #d9e8f2 !important
}
.bg-bi-hm2 {
background-color: #b3cce6 !important
}
.bg-bi-hm3 {
background-color: #8cacd9 !important
}
.bg-bi-hm4 {
background-color: #6688cc !important
}
.bg-bi-hm5 {
background-color: #4060bf !important
}
.bg-bi-hm6 {
background-color: #334499 !important
}
.bg-bi-hm7 {
background-color: #262d73 !important
}
.bg-bi-hm8 {
background-color: #19194d !important
}
.bg-bi-hm9 {
background-color: #0f0d26 !important
}
.bg-bi-hd1 {
background-color: #e0e6eb !important
}
.bg-bi-hd2 {
background-color: #c2ccd6 !important
}
.bg-bi-hd3 {
background-color: #a3b0c2 !important
}
.bg-bi-hd4 {
background-color: #8592ad !important
}
.bg-bi-hd5 {
background-color: #667399 !important
}
.bg-bi-hd6 {
background-color: #52587a !important
}
.bg-bi-hd7 {
background-color: #3d405c !important
}
.bg-bi-hd8 {
background-color: #29293d !important
}
.bg-bi-hd9 {
background-color: #15141f !important
}
.bg-in-hl1 {
background-color: #d1dffa !important
}
.bg-in-hl2 {
background-color: #a3b8f5 !important
}
.bg-in-hl3 {
background-color: #758af0 !important
}
.bg-in-hl4 {
background-color: #4755eb !important
}
.bg-in-hl5 {
background-color: #1919e6 !important
}
.bg-in-hl6 {
background-color: #2214b8 !important
}
.bg-in-hl7 {
background-color: #240f8a !important
}
.bg-in-hl8 {
background-color: #1f0a5c !important
}
.bg-in-hl9 {
background-color: #13052e !important
}
.bg-in-hm1 {
background-color: #d9e1f2 !important
}
.bg-in-hm2 {
background-color: #b3bfe6 !important
}
.bg-in-hm3 {
background-color: #8c99d9 !important
}
.bg-in-hm4 {
background-color: #666ecc !important
}
.bg-in-hm5 {
background-color: #4040bf !important
}
.bg-in-hm6 {
background-color: #3b3399 !important
}
.bg-in-hm7 {
background-color: #332673 !important
}
.bg-in-hm8 {
background-color: #26194d !important
}
.bg-in-hm9 {
background-color: #150d26 !important
}
.bg-in-hd1 {
background-color: #e0e4eb !important
}
.bg-in-hd2 {
background-color: #c2c7d6 !important
}
.bg-in-hd3 {
background-color: #a3a8c2 !important
}
.bg-in-hd4 {
background-color: #8588ad !important
}
.bg-in-hd5 {
background-color: #666699 !important
}
.bg-in-hd6 {
background-color: #55527a !important
}
.bg-in-hd7 {
background-color: #423d5c !important
}
.bg-in-hd8 {
background-color: #2e293d !important
}
.bg-in-hd9 {
background-color: #18141f !important
}
.bg-ip-hl1 {
background-color: #d1d4fa !important
}
.bg-ip-hl2 {
background-color: #a3a3f5 !important
}
.bg-ip-hl3 {
background-color: #8075f0 !important
}
.bg-ip-hl4 {
background-color: #6347eb !important
}
.bg-ip-hl5 {
background-color: #4d19e6 !important
}
.bg-ip-hl6 {
background-color: #4b14b8 !important
}
.bg-ip-hl7 {
background-color: #420f8a !important
}
.bg-ip-hl8 {
background-color: #330a5c !important
}
.bg-ip-hl9 {
background-color: #1d052e !important
}
.bg-ip-hm1 {
background-color: #d9dbf2 !important
}
.bg-ip-hm2 {
background-color: #b3b3e6 !important
}
.bg-ip-hm3 {
background-color: #938cd9 !important
}
.bg-ip-hm4 {
background-color: #7766cc !important
}
.bg-ip-hm5 {
background-color: #6040bf !important
}
.bg-ip-hm6 {
background-color: #553399 !important
}
.bg-ip-hm7 {
background-color: #462673 !important
}
.bg-ip-hm8 {
background-color: #33194d !important
}
.bg-ip-hm9 {
background-color: #1c0d26 !important
}
.bg-ip-hd1 {
background-color: #e0e1eb !important
}
.bg-ip-hd2 {
background-color: #c2c2d6 !important
}
.bg-ip-hd3 {
background-color: #a6a3c2 !important
}
.bg-ip-hd4 {
background-color: #8b85ad !important
}
.bg-ip-hd5 {
background-color: #736699 !important
}
.bg-ip-hd6 {
background-color: #5f527a !important
}
.bg-ip-hd7 {
background-color: #4a3d5c !important
}
.bg-ip-hd8 {
background-color: #33293d !important
}
.bg-ip-hd9 {
background-color: #1a141f !important
}
.bg-pu-hl1 {
background-color: #d8d1fa !important
}
.bg-pu-hl2 {
background-color: #b8a3f5 !important
}
.bg-pu-hl3 {
background-color: #9e75f0 !important
}
.bg-pu-hl4 {
background-color: #8b47eb !important
}
.bg-pu-hl5 {
background-color: #7f19e6 !important
}
.bg-pu-hl6 {
background-color: #7414b8 !important
}
.bg-pu-hl7 {
background-color: #610f8a !important
}
.bg-pu-hl8 {
background-color: #470a5c !important
}
.bg-pu-hl9 {
background-color: #27052e !important
}
.bg-pu-hm1 {
background-color: #ddd9f2 !important
}
.bg-pu-hm2 {
background-color: #bfb3e6 !important
}
.bg-pu-hm3 {
background-color: #a68cd9 !important
}
.bg-pu-hm4 {
background-color: #9066cc !important
}
.bg-pu-hm5 {
background-color: #7f40bf !important
}
.bg-pu-hm6 {
background-color: #6e3399 !important
}
.bg-pu-hm7 {
background-color: #592673 !important
}
.bg-pu-hm8 {
background-color: #40194d !important
}
.bg-pu-hm9 {
background-color: #220d26 !important
}
.bg-pu-hd1 {
background-color: #e2e0eb !important
}
.bg-pu-hd2 {
background-color: #c7c2d6 !important
}
.bg-pu-hd3 {
background-color: #ada3c2 !important
}
.bg-pu-hd4 {
background-color: #9685ad !important
}
.bg-pu-hd5 {
background-color: #7f6699 !important
}
.bg-pu-hd6 {
background-color: #69527a !important
}
.bg-pu-hd7 {
background-color: #523d5c !important
}
.bg-pu-hd8 {
background-color: #38293d !important
}
.bg-pu-hd9 {
background-color: #1d141f !important
}
.bg-pp-hl1 {
background-color: #e2d1fa !important
}
.bg-pp-hl2 {
background-color: #cca3f5 !important
}
.bg-pp-hl3 {
background-color: #bd75f0 !important
}
.bg-pp-hl4 {
background-color: #b447eb !important
}
.bg-pp-hl5 {
background-color: #b319e6 !important
}
.bg-pp-hl6 {
background-color: #9c14b8 !important
}
.bg-pp-hl7 {
background-color: #7f0f8a !important
}
.bg-pp-hl8 {
background-color: #5c0a5c !important
}
.bg-pp-hl9 {
background-color: #2e052b !important
}
.bg-pp-hm1 {
background-color: #e3d9f2 !important
}
.bg-pp-hm2 {
background-color: #ccb3e6 !important
}
.bg-pp-hm3 {
background-color: #b98cd9 !important
}
.bg-pp-hm4 {
background-color: #aa66cc !important
}
.bg-pp-hm5 {
background-color: #9f40bf !important
}
.bg-pp-hm6 {
background-color: #883399 !important
}
.bg-pp-hm7 {
background-color: #6c2673 !important
}
.bg-pp-hm8 {
background-color: #4d194d !important
}
.bg-pp-hm9 {
background-color: #260d24 !important
}
.bg-pp-hd1 {
background-color: #e5e0eb !important
}
.bg-pp-hd2 {
background-color: #ccc2d6 !important
}
.bg-pp-hd3 {
background-color: #b5a3c2 !important
}
.bg-pp-hd4 {
background-color: #a085ad !important
}
.bg-pp-hd5 {
background-color: #8c6699 !important
}
.bg-pp-hd6 {
background-color: #74527a !important
}
.bg-pp-hd7 {
background-color: #593d5c !important
}
.bg-pp-hd8 {
background-color: #3d293d !important
}
.bg-pp-hd9 {
background-color: #1f141e !important
}
.bg-pi-hl1 {
background-color: #ecd1fa !important
}
.bg-pi-hl2 {
background-color: #e0a3f5 !important
}
.bg-pi-hl3 {
background-color: #db75f0 !important
}
.bg-pi-hl4 {
background-color: #dd47eb !important
}
.bg-pi-hl5 {
background-color: #e619e5 !important
}
.bg-pi-hl6 {
background-color: #b814aa !important
}
.bg-pi-hl7 {
background-color: #8a0f75 !important
}
.bg-pi-hl8 {
background-color: #5c0a47 !important
}
.bg-pi-hl9 {
background-color: #2e0520 !important
}
.bg-pi-hm1 {
background-color: #ead9f2 !important
}
.bg-pi-hm2 {
background-color: #d9b3e6 !important
}
.bg-pi-hm3 {
background-color: #cc8cd9 !important
}
.bg-pi-hm4 {
background-color: #c366cc !important
}
.bg-pi-hm5 {
background-color: #bf40bf !important
}
.bg-pi-hm6 {
background-color: #993391 !important
}
.bg-pi-hm7 {
background-color: #732666 !important
}
.bg-pi-hm8 {
background-color: #4d1940 !important
}
.bg-pi-hm9 {
background-color: #260d1e !important
}
.bg-pi-hd1 {
background-color: #e7e0eb !important
}
.bg-pi-hd2 {
background-color: #d1c2d6 !important
}
.bg-pi-hd3 {
background-color: #bda3c2 !important
}
.bg-pi-hd4 {
background-color: #aa85ad !important
}
.bg-pi-hd5 {
background-color: #996699 !important
}
.bg-pi-hd6 {
background-color: #7a5277 !important
}
.bg-pi-hd7 {
background-color: #5c3d57 !important
}
.bg-pi-hd8 {
background-color: #3d2938 !important
}
.bg-pi-hd9 {
background-color: #1f141b !important
}
.bg-pv-hl1 {
background-color: #f7d1fa !important
}
.bg-pv-hl2 {
background-color: #f5a3f5 !important
}
.bg-pv-hl3 {
background-color: #f075e5 !important
}
.bg-pv-hl4 {
background-color: #eb47cf !important
}
.bg-pv-hl5 {
background-color: #e619b2 !important
}
.bg-pv-hl6 {
background-color: #b81481 !important
}
.bg-pv-hl7 {
background-color: #8a0f57 !important
}
.bg-pv-hl8 {
background-color: #5c0a33 !important
}
.bg-pv-hl9 {
background-color: #2e0516 !important
}
.bg-pv-hm1 {
background-color: #f0d9f2 !important
}
.bg-pv-hm2 {
background-color: #e6b3e5 !important
}
.bg-pv-hm3 {
background-color: #d98cd2 !important
}
.bg-pv-hm4 {
background-color: #cc66bb !important
}
.bg-pv-hm5 {
background-color: #bf409f !important
}
.bg-pv-hm6 {
background-color: #993377 !important
}
.bg-pv-hm7 {
background-color: #732653 !important
}
.bg-pv-hm8 {
background-color: #4d1933 !important
}
.bg-pv-hm9 {
background-color: #260d17 !important
}
.bg-pv-hd1 {
background-color: #eae0eb !important
}
.bg-pv-hd2 {
background-color: #d6c2d6 !important
}
.bg-pv-hd3 {
background-color: #c2a3bf !important
}
.bg-pv-hd4 {
background-color: #ad85a7 !important
}
.bg-pv-hd5 {
background-color: #99668c !important
}
.bg-pv-hd6 {
background-color: #7a526d !important
}
.bg-pv-hd7 {
background-color: #5c3d4f !important
}
.bg-pv-hd8 {
background-color: #3d2933 !important
}
.bg-pv-hd9 {
background-color: #1f1419 !important
}
.bg-vi-hl1 {
background-color: #fad1f3 !important
}
.bg-vi-hl2 {
background-color: #f5a3e0 !important
}
.bg-vi-hl3 {
background-color: #f075c7 !important
}
.bg-vi-hl4 {
background-color: #eb47a7 !important
}
.bg-vi-hl5 {
background-color: #e61980 !important
}
.bg-vi-hl6 {
background-color: #b81458 !important
}
.bg-vi-hl7 {
background-color: #8a0f38 !important
}
.bg-vi-hl8 {
background-color: #5c0a1f !important
}
.bg-vi-hl9 {
background-color: #2e050c !important
}
.bg-vi-hm1 {
background-color: #f2d9ee !important
}
.bg-vi-hm2 {
background-color: #e6b3d9 !important
}
.bg-vi-hm3 {
background-color: #d98cbf !important
}
.bg-vi-hm4 {
background-color: #cc66a2 !important
}
.bg-vi-hm5 {
background-color: #bf4080 !important
}
.bg-vi-hm6 {
background-color: #99335d !important
}
.bg-vi-hm7 {
background-color: #732640 !important
}
.bg-vi-hm8 {
background-color: #4d1926 !important
}
.bg-vi-hm9 {
background-color: #260d11 !important
}
.bg-vi-hd1 {
background-color: #ebe0e9 !important
}
.bg-vi-hd2 {
background-color: #d6c2d1 !important
}
.bg-vi-hd3 {
background-color: #c2a3b8 !important
}
.bg-vi-hd4 {
background-color: #ad859c !important
}
.bg-vi-hd5 {
background-color: #996680 !important
}
.bg-vi-hd6 {
background-color: #7a5263 !important
}
.bg-vi-hd7 {
background-color: #5c3d47 !important
}
.bg-vi-hd8 {
background-color: #3d292e !important
}
.bg-vi-hd9 {
background-color: #1f1416 !important
}
.bg-vr-hl1 {
background-color: #fad1e9 !important
}
.bg-vr-hl2 {
background-color: #f5a3cc !important
}
.bg-vr-hl3 {
background-color: #f075a8 !important
}
.bg-vr-hl4 {
background-color: #eb477e !important
}
.bg-vr-hl5 {
background-color: #e6194c !important
}
.bg-vr-hl6 {
background-color: #b81430 !important
}
.bg-vr-hl7 {
background-color: #8a0f19 !important
}
.bg-vr-hl8 {
background-color: #5c0a0a !important
}
.bg-vr-hl9 {
background-color: #2e0805 !important
}
.bg-vr-hm1 {
background-color: #f2d9e8 !important
}
.bg-vr-hm2 {
background-color: #e6b3cc !important
}
.bg-vr-hm3 {
background-color: #d98cac !important
}
.bg-vr-hm4 {
background-color: #cc6688 !important
}
.bg-vr-hm5 {
background-color: #bf4060 !important
}
.bg-vr-hm6 {
background-color: #993344 !important
}
.bg-vr-hm7 {
background-color: #73262d !important
}
.bg-vr-hm8 {
background-color: #4d1919 !important
}
.bg-vr-hm9 {
background-color: #260f0d !important
}
.bg-vr-hd1 {
background-color: #ebe0e6 !important
}
.bg-vr-hd2 {
background-color: #d6c2cc !important
}
.bg-vr-hd3 {
background-color: #c2a3b0 !important
}
.bg-vr-hd4 {
background-color: #ad8592 !important
}
.bg-vr-hd5 {
background-color: #996673 !important
}
.bg-vr-hd6 {
background-color: #7a5258 !important
}
.bg-vr-hd7 {
background-color: #5c3d40 !important
}
.bg-vr-hd8 {
background-color: #3d2929 !important
}
.bg-vr-hd9 {
background-color: #1f1514 !important
}
.t-re-hl1 {
color: #fad1df !important
}
.t-re-hl2 {
color: #f5a3b8 !important
}
.t-re-hl3 {
color: #f0758a !important
}
.t-re-hl4 {
color: #eb4755 !important
}
.t-re-hl5 {
color: #e61919 !important
}
.t-re-hl6 {
color: #b82214 !important
}
.t-re-hl7 {
color: #8a240f !important
}
.t-re-hl8 {
color: #5c1f0a !important
}
.t-re-hl9 {
color: #2e1305 !important
}
.t-re-hm1 {
color: #f2d9e1 !important
}
.t-re-hm2 {
color: #e6b3bf !important
}
.t-re-hm3 {
color: #d98c99 !important
}
.t-re-hm4 {
color: #cc666e !important
}
.t-re-hm5 {
color: #bf4040 !important
}
.t-re-hm6 {
color: #993b33 !important
}
.t-re-hm7 {
color: #733326 !important
}
.t-re-hm8 {
color: #4d2619 !important
}
.t-re-hm9 {
color: #26150d !important
}
.t-re-hd1 {
color: #ebe0e4 !important
}
.t-re-hd2 {
color: #d6c2c7 !important
}
.t-re-hd3 {
color: #c2a3a8 !important
}
.t-re-hd4 {
color: #ad8588 !important
}
.t-re-hd5 {
color: #996666 !important
}
.t-re-hd6 {
color: #7a5552 !important
}
.t-re-hd7 {
color: #5c423d !important
}
.t-re-hd8 {
color: #3d2e29 !important
}
.t-re-hd9 {
color: #1f1814 !important
}
.t-ro-hl1 {
color: #fad1d4 !important
}
.t-ro-hl2 {
color: #f5a3a3 !important
}
.t-ro-hl3 {
color: #f07f75 !important
}
.t-ro-hl4 {
color: #eb6347 !important
}
.t-ro-hl5 {
color: #e64d19 !important
}
.t-ro-hl6 {
color: #b84b14 !important
}
.t-ro-hl7 {
color: #8a420f !important
}
.t-ro-hl8 {
color: #5c330a !important
}
.t-ro-hl9 {
color: #2e1d05 !important
}
.t-ro-hm1 {
color: #f2d9db !important
}
.t-ro-hm2 {
color: #e6b3b3 !important
}
.t-ro-hm3 {
color: #d9938c !important
}
.t-ro-hm4 {
color: #cc7766 !important
}
.t-ro-hm5 {
color: #bf6040 !important
}
.t-ro-hm6 {
color: #995533 !important
}
.t-ro-hm7 {
color: #734626 !important
}
.t-ro-hm8 {
color: #4d3319 !important
}
.t-ro-hm9 {
color: #261c0d !important
}
.t-ro-hd1 {
color: #ebe0e1 !important
}
.t-ro-hd2 {
color: #d6c2c2 !important
}
.t-ro-hd3 {
color: #c2a6a3 !important
}
.t-ro-hd4 {
color: #ad8b85 !important
}
.t-ro-hd5 {
color: #997366 !important
}
.t-ro-hd6 {
color: #7a5f52 !important
}
.t-ro-hd7 {
color: #5c4a3d !important
}
.t-ro-hd8 {
color: #3d3329 !important
}
.t-ro-hd9 {
color: #1f1a14 !important
}
.t-or-hl1 {
color: #fad8d1 !important
}
.t-or-hl2 {
color: #f5b8a3 !important
}
.t-or-hl3 {
color: #f09e75 !important
}
.t-or-hl4 {
color: #eb8b47 !important
}
.t-or-hl5 {
color: #e68019 !important
}
.t-or-hl6 {
color: #b87414 !important
}
.t-or-hl7 {
color: #8a610f !important
}
.t-or-hl8 {
color: #5c470a !important
}
.t-or-hl9 {
color: #2e2705 !important
}
.t-or-hm1 {
color: #f2ddd9 !important
}
.t-or-hm2 {
color: #e6bfb3 !important
}
.t-or-hm3 {
color: #d9a68c !important
}
.t-or-hm4 {
color: #cc9166 !important
}
.t-or-hm5 {
color: #bf8040 !important
}
.t-or-hm6 {
color: #996f33 !important
}
.t-or-hm7 {
color: #735926 !important
}
.t-or-hm8 {
color: #4d4019 !important
}
.t-or-hm9 {
color: #26220d !important
}
.t-or-hd1 {
color: #ebe2e0 !important
}
.t-or-hd2 {
color: #d6c7c2 !important
}
.t-or-hd3 {
color: #c2ada3 !important
}
.t-or-hd4 {
color: #ad9685 !important
}
.t-or-hd5 {
color: #998066 !important
}
.t-or-hd6 {
color: #7a6952 !important
}
.t-or-hd7 {
color: #5c523d !important
}
.t-or-hd8 {
color: #3d3829 !important
}
.t-or-hd9 {
color: #1f1d14 !important
}
.t-oy-hl1 {
color: #fae2d1 !important
}
.t-oy-hl2 {
color: #f5cca3 !important
}
.t-oy-hl3 {
color: #f0bd75 !important
}
.t-oy-hl4 {
color: #ebb447 !important
}
.t-oy-hl5 {
color: #e6b319 !important
}
.t-oy-hl6 {
color: #b89c14 !important
}
.t-oy-hl7 {
color: #8a800f !important
}
.t-oy-hl8 {
color: #5c5c0a !important
}
.t-oy-hl9 {
color: #2b2e05 !important
}
.t-oy-hm1 {
color: #f2e3d9 !important
}
.t-oy-hm2 {
color: #e6ccb3 !important
}
.t-oy-hm3 {
color: #d9b98c !important
}
.t-oy-hm4 {
color: #ccaa66 !important
}
.t-oy-hm5 {
color: #bf9f40 !important
}
.t-oy-hm6 {
color: #998833 !important
}
.t-oy-hm7 {
color: #736c26 !important
}
.t-oy-hm8 {
color: #4d4d19 !important
}
.t-oy-hm9 {
color: #24260d !important
}
.t-oy-hd1 {
color: #ebe5e0 !important
}
.t-oy-hd2 {
color: #d6ccc2 !important
}
.t-oy-hd3 {
color: #c2b5a3 !important
}
.t-oy-hd4 {
color: #ada085 !important
}
.t-oy-hd5 {
color: #998c66 !important
}
.t-oy-hd6 {
color: #7a7452 !important
}
.t-oy-hd7 {
color: #5c593d !important
}
.t-oy-hd8 {
color: #3d3d29 !important
}
.t-oy-hd9 {
color: #1e1f14 !important
}
.t-ye-hl1 {
color: #faecd1 !important
}
.t-ye-hl2 {
color: #f5e0a3 !important
}
.t-ye-hl3 {
color: #f0db75 !important
}
.t-ye-hl4 {
color: #ebdd47 !important
}
.t-ye-hl5 {
color: #e5e619 !important
}
.t-ye-hl6 {
color: #aab814 !important
}
.t-ye-hl7 {
color: #758a0f !important
}
.t-ye-hl8 {
color: #475c0a !important
}
.t-ye-hl9 {
color: #202e05 !important
}
.t-ye-hm1 {
color: #f2ead9 !important
}
.t-ye-hm2 {
color: #e6d9b3 !important
}
.t-ye-hm3 {
color: #d9cc8c !important
}
.t-ye-hm4 {
color: #ccc466 !important
}
.t-ye-hm5 {
color: #bfbf40 !important
}
.t-ye-hm6 {
color: #909933 !important
}
.t-ye-hm7 {
color: #667326 !important
}
.t-ye-hm8 {
color: #404d19 !important
}
.t-ye-hm9 {
color: #1e260d !important
}
.t-ye-hd1 {
color: #ebe7e0 !important
}
.t-ye-hd2 {
color: #d6d1c2 !important
}
.t-ye-hd3 {
color: #c2bda3 !important
}
.t-ye-hd4 {
color: #adaa85 !important
}
.t-ye-hd5 {
color: #999966 !important
}
.t-ye-hd6 {
color: #777a52 !important
}
.t-ye-hd7 {
color: #575c3d !important
}
.t-ye-hd8 {
color: #383d29 !important
}
.t-ye-hd9 {
color: #1b1f14 !important
}
.t-yc-hl1 {
color: #faf7d1 !important
}
.t-yc-hl2 {
color: #f5f5a3 !important
}
.t-yc-hl3 {
color: #e6f075 !important
}
.t-yc-hl4 {
color: #cfeb47 !important
}
.t-yc-hl5 {
color: #b3e619 !important
}
.t-yc-hl6 {
color: #81b814 !important
}
.t-yc-hl7 {
color: #578a0f !important
}
.t-yc-hl8 {
color: #335c0a !important
}
.t-yc-hl9 {
color: #162e05 !important
}
.t-yc-hm1 {
color: #f2f0d9 !important
}
.t-yc-hm2 {
color: #e5e6b3 !important
}
.t-yc-hm3 {
color: #d2d98c !important
}
.t-yc-hm4 {
color: #bbcc66 !important
}
.t-yc-hm5 {
color: #9fbf40 !important
}
.t-yc-hm6 {
color: #779933 !important
}
.t-yc-hm7 {
color: #537326 !important
}
.t-yc-hm8 {
color: #334d19 !important
}
.t-yc-hm9 {
color: #17260d !important
}
.t-yc-hd1 {
color: #ebeae0 !important
}
.t-yc-hd2 {
color: #d6d6c2 !important
}
.t-yc-hd3 {
color: #bfc2a3 !important
}
.t-yc-hd4 {
color: #a7ad85 !important
}
.t-yc-hd5 {
color: #8c9966 !important
}
.t-yc-hd6 {
color: #6d7a52 !important
}
.t-yc-hd7 {
color: #4f5c3d !important
}
.t-yc-hd8 {
color: #333d29 !important
}
.t-yc-hd9 {
color: #191f14 !important
}
.t-ch-hl1 {
color: #f3fad1 !important
}
.t-ch-hl2 {
color: #e0f5a3 !important
}
.t-ch-hl3 {
color: #c7f075 !important
}
.t-ch-hl4 {
color: #a7eb47 !important
}
.t-ch-hl5 {
color: #80e619 !important
}
.t-ch-hl6 {
color: #58b814 !important
}
.t-ch-hl7 {
color: #388a0f !important
}
.t-ch-hl8 {
color: #1f5c0a !important
}
.t-ch-hl9 {
color: #0c2e05 !important
}
.t-ch-hm1 {
color: #eef2d9 !important
}
.t-ch-hm2 {
color: #d9e6b3 !important
}
.t-ch-hm3 {
color: #bfd98c !important
}
.t-ch-hm4 {
color: #a2cc66 !important
}
.t-ch-hm5 {
color: #80bf40 !important
}
.t-ch-hm6 {
color: #5e9933 !important
}
.t-ch-hm7 {
color: #407326 !important
}
.t-ch-hm8 {
color: #264d19 !important
}
.t-ch-hm9 {
color: #11260d !important
}
.t-ch-hd1 {
color: #e9ebe0 !important
}
.t-ch-hd2 {
color: #d1d6c2 !important
}
.t-ch-hd3 {
color: #b8c2a3 !important
}
.t-ch-hd4 {
color: #9cad85 !important
}
.t-ch-hd5 {
color: #809966 !important
}
.t-ch-hd6 {
color: #637a52 !important
}
.t-ch-hd7 {
color: #475c3d !important
}
.t-ch-hd8 {
color: #2e3d29 !important
}
.t-ch-hd9 {
color: #161f14 !important
}
.t-cg-hl1 {
color: #e9fad1 !important
}
.t-cg-hl2 {
color: #ccf5a3 !important
}
.t-cg-hl3 {
color: #a8f075 !important
}
.t-cg-hl4 {
color: #7eeb47 !important
}
.t-cg-hl5 {
color: #4ce619 !important
}
.t-cg-hl6 {
color: #30b814 !important
}
.t-cg-hl7 {
color: #1a8a0f !important
}
.t-cg-hl8 {
color: #0a5c0a !important
}
.t-cg-hl9 {
color: #052e09 !important
}
.t-cg-hm1 {
color: #e8f2d9 !important
}
.t-cg-hm2 {
color: #cce6b3 !important
}
.t-cg-hm3 {
color: #acd98c !important
}
.t-cg-hm4 {
color: #88cc66 !important
}
.t-cg-hm5 {
color: #60bf40 !important
}
.t-cg-hm6 {
color: #449933 !important
}
.t-cg-hm7 {
color: #2d7326 !important
}
.t-cg-hm8 {
color: #194d19 !important
}
.t-cg-hm9 {
color: #0d260f !important
}
.t-cg-hd1 {
color: #e6ebe0 !important
}
.t-cg-hd2 {
color: #ccd6c2 !important
}
.t-cg-hd3 {
color: #b0c2a3 !important
}
.t-cg-hd4 {
color: #92ad85 !important
}
.t-cg-hd5 {
color: #739966 !important
}
.t-cg-hd6 {
color: #587a52 !important
}
.t-cg-hd7 {
color: #405c3d !important
}
.t-cg-hd8 {
color: #293d29 !important
}
.t-cg-hd9 {
color: #141f15 !important
}
.t-gr-hl1 {
color: #dffad1 !important
}
.t-gr-hl2 {
color: #b8f5a3 !important
}
.t-gr-hl3 {
color: #8af075 !important
}
.t-gr-hl4 {
color: #55eb47 !important
}
.t-gr-hl5 {
color: #19e619 !important
}
.t-gr-hl6 {
color: #14b822 !important
}
.t-gr-hl7 {
color: #0f8a24 !important
}
.t-gr-hl8 {
color: #0a5c1f !important
}
.t-gr-hl9 {
color: #052e13 !important
}
.t-gr-hm1 {
color: #e1f2d9 !important
}
.t-gr-hm2 {
color: #bfe6b3 !important
}
.t-gr-hm3 {
color: #99d98c !important
}
.t-gr-hm4 {
color: #6fcc66 !important
}
.t-gr-hm5 {
color: #40bf40 !important
}
.t-gr-hm6 {
color: #33993c !important
}
.t-gr-hm7 {
color: #267333 !important
}
.t-gr-hm8 {
color: #194d26 !important
}
.t-gr-hm9 {
color: #0d2615 !important
}
.t-gr-hd1 {
color: #e4ebe0 !important
}
.t-gr-hd2 {
color: #c7d6c2 !important
}
.t-gr-hd3 {
color: #a8c2a3 !important
}
.t-gr-hd4 {
color: #88ad85 !important
}
.t-gr-hd5 {
color: #669966 !important
}
.t-gr-hd6 {
color: #527a55 !important
}
.t-gr-hd7 {
color: #3d5c42 !important
}
.t-gr-hd8 {
color: #293d2e !important
}
.t-gr-hd9 {
color: #141f18 !important
}
.t-ga-hl1 {
color: #d5fad1 !important
}
.t-ga-hl2 {
color: #a3f5a3 !important
}
.t-ga-hl3 {
color: #75f080 !important
}
.t-ga-hl4 {
color: #47eb63 !important
}
.t-ga-hl5 {
color: #19e64d !important
}
.t-ga-hl6 {
color: #14b84b !important
}
.t-ga-hl7 {
color: #0f8a42 !important
}
.t-ga-hl8 {
color: #0a5c33 !important
}
.t-ga-hl9 {
color: #052e1d !important
}
.t-ga-hm1 {
color: #dbf2d9 !important
}
.t-ga-hm2 {
color: #b3e6b3 !important
}
.t-ga-hm3 {
color: #8cd993 !important
}
.t-ga-hm4 {
color: #66cc77 !important
}
.t-ga-hm5 {
color: #40bf60 !important
}
.t-ga-hm6 {
color: #339955 !important
}
.t-ga-hm7 {
color: #267346 !important
}
.t-ga-hm8 {
color: #194d33 !important
}
.t-ga-hm9 {
color: #0d261c !important
}
.t-ga-hd1 {
color: #e1ebe0 !important
}
.t-ga-hd2 {
color: #c2d6c2 !important
}
.t-ga-hd3 {
color: #a3c2a6 !important
}
.t-ga-hd4 {
color: #85ad8b !important
}
.t-ga-hd5 {
color: #669973 !important
}
.t-ga-hd6 {
color: #527a5f !important
}
.t-ga-hd7 {
color: #3d5c4a !important
}
.t-ga-hd8 {
color: #293d33 !important
}
.t-ga-hd9 {
color: #141f1a !important
}
.t-aq-hl1 {
color: #d1fad8 !important
}
.t-aq-hl2 {
color: #a3f5b8 !important
}
.t-aq-hl3 {
color: #75f09e !important
}
.t-aq-hl4 {
color: #47eb8b !important
}
.t-aq-hl5 {
color: #19e680 !important
}
.t-aq-hl6 {
color: #14b874 !important
}
.t-aq-hl7 {
color: #0f8a61 !important
}
.t-aq-hl8 {
color: #0a5c47 !important
}
.t-aq-hl9 {
color: #052e27 !important
}
.t-aq-hm1 {
color: #d9f2dd !important
}
.t-aq-hm2 {
color: #b3e6bf !important
}
.t-aq-hm3 {
color: #8cd9a6 !important
}
.t-aq-hm4 {
color: #66cc91 !important
}
.t-aq-hm5 {
color: #40bf80 !important
}
.t-aq-hm6 {
color: #33996f !important
}
.t-aq-hm7 {
color: #267359 !important
}
.t-aq-hm8 {
color: #194d40 !important
}
.t-aq-hm9 {
color: #0d2622 !important
}
.t-aq-hd1 {
color: #e0ebe2 !important
}
.t-aq-hd2 {
color: #c2d6c7 !important
}
.t-aq-hd3 {
color: #a3c2ad !important
}
.t-aq-hd4 {
color: #85ad96 !important
}
.t-aq-hd5 {
color: #669980 !important
}
.t-aq-hd6 {
color: #527a69 !important
}
.t-aq-hd7 {
color: #3d5c52 !important
}
.t-aq-hd8 {
color: #293d38 !important
}
.t-aq-hd9 {
color: #141f1d !important
}
.t-ac-hl1 {
color: #d1fae2 !important
}
.t-ac-hl2 {
color: #a3f5cc !important
}
.t-ac-hl3 {
color: #75f0bd !important
}
.t-ac-hl4 {
color: #47ebb4 !important
}
.t-ac-hl5 {
color: #19e6b3 !important
}
.t-ac-hl6 {
color: #14b89c !important
}
.t-ac-hl7 {
color: #0f8a80 !important
}
.t-ac-hl8 {
color: #0a5c5c !important
}
.t-ac-hl9 {
color: #052b2e !important
}
.t-ac-hm1 {
color: #d9f2e3 !important
}
.t-ac-hm2 {
color: #b3e6cc !important
}
.t-ac-hm3 {
color: #8cd9b9 !important
}
.t-ac-hm4 {
color: #66ccaa !important
}
.t-ac-hm5 {
color: #40bf9f !important
}
.t-ac-hm6 {
color: #339988 !important
}
.t-ac-hm7 {
color: #26736c !important
}
.t-ac-hm8 {
color: #194d4d !important
}
.t-ac-hm9 {
color: #0d2426 !important
}
.t-ac-hd1 {
color: #e0ebe5 !important
}
.t-ac-hd2 {
color: #c2d6cc !important
}
.t-ac-hd3 {
color: #a3c2b5 !important
}
.t-ac-hd4 {
color: #85ada0 !important
}
.t-ac-hd5 {
color: #66998c !important
}
.t-ac-hd6 {
color: #527a74 !important
}
.t-ac-hd7 {
color: #3d5c59 !important
}
.t-ac-hd8 {
color: #293d3d !important
}
.t-ac-hd9 {
color: #141e1f !important
}
.t-cy-hl1 {
color: #d1faec !important
}
.t-cy-hl2 {
color: #a3f5e0 !important
}
.t-cy-hl3 {
color: #75f0db !important
}
.t-cy-hl4 {
color: #47ebdd !important
}
.t-cy-hl5 {
color: #19e5e6 !important
}
.t-cy-hl6 {
color: #14aab8 !important
}
.t-cy-hl7 {
color: #0f758a !important
}
.t-cy-hl8 {
color: #0a475c !important
}
.t-cy-hl9 {
color: #05202e !important
}
.t-cy-hm1 {
color: #d9f2ea !important
}
.t-cy-hm2 {
color: #b3e6d9 !important
}
.t-cy-hm3 {
color: #8cd9cc !important
}
.t-cy-hm4 {
color: #66ccc4 !important
}
.t-cy-hm5 {
color: #40bfbf !important
}
.t-cy-hm6 {
color: #339199 !important
}
.t-cy-hm7 {
color: #266673 !important
}
.t-cy-hm8 {
color: #19404d !important
}
.t-cy-hm9 {
color: #0d1e26 !important
}
.t-cy-hd1 {
color: #e0ebe7 !important
}
.t-cy-hd2 {
color: #c2d6d1 !important
}
.t-cy-hd3 {
color: #a3c2bd !important
}
.t-cy-hd4 {
color: #85adaa !important
}
.t-cy-hd5 {
color: #669999 !important
}
.t-cy-hd6 {
color: #52777a !important
}
.t-cy-hd7 {
color: #3d575c !important
}
.t-cy-hd8 {
color: #29383d !important
}
.t-cy-hd9 {
color: #141b1f !important
}
.t-cb-hl1 {
color: #d1faf7 !important
}
.t-cb-hl2 {
color: #a3f5f5 !important
}
.t-cb-hl3 {
color: #75e6f0 !important
}
.t-cb-hl4 {
color: #47cfeb !important
}
.t-cb-hl5 {
color: #19b3e6 !important
}
.t-cb-hl6 {
color: #1481b8 !important
}
.t-cb-hl7 {
color: #0f578a !important
}
.t-cb-hl8 {
color: #0a335c !important
}
.t-cb-hl9 {
color: #05162e !important
}
.t-cb-hm1 {
color: #d9f2f0 !important
}
.t-cb-hm2 {
color: #b3e5e6 !important
}
.t-cb-hm3 {
color: #8cd2d9 !important
}
.t-cb-hm4 {
color: #66bbcc !important
}
.t-cb-hm5 {
color: #409fbf !important
}
.t-cb-hm6 {
color: #337799 !important
}
.t-cb-hm7 {
color: #265373 !important
}
.t-cb-hm8 {
color: #19334d !important
}
.t-cb-hm9 {
color: #0d1726 !important
}
.t-cb-hd1 {
color: #e0ebea !important
}
.t-cb-hd2 {
color: #c2d6d6 !important
}
.t-cb-hd3 {
color: #a3bfc2 !important
}
.t-cb-hd4 {
color: #85a7ad !important
}
.t-cb-hd5 {
color: #668c99 !important
}
.t-cb-hd6 {
color: #526d7a !important
}
.t-cb-hd7 {
color: #3d4f5c !important
}
.t-cb-hd8 {
color: #29333d !important
}
.t-cb-hd9 {
color: #14191f !important
}
.t-bl-hl1 {
color: #d1f3fa !important
}
.t-bl-hl2 {
color: #a3e0f5 !important
}
.t-bl-hl3 {
color: #75c7f0 !important
}
.t-bl-hl4 {
color: #47a7eb !important
}
.t-bl-hl5 {
color: #197fe6 !important
}
.t-bl-hl6 {
color: #1458b8 !important
}
.t-bl-hl7 {
color: #0f388a !important
}
.t-bl-hl8 {
color: #0a1f5c !important
}
.t-bl-hl9 {
color: #050c2e !important
}
.t-bl-hm1 {
color: #d9eef2 !important
}
.t-bl-hm2 {
color: #b3d9e6 !important
}
.t-bl-hm3 {
color: #8cbfd9 !important
}
.t-bl-hm4 {
color: #66a1cc !important
}
.t-bl-hm5 {
color: #407fbf !important
}
.t-bl-hm6 {
color: #335d99 !important
}
.t-bl-hm7 {
color: #264073 !important
}
.t-bl-hm8 {
color: #19264d !important
}
.t-bl-hm9 {
color: #0d1126 !important
}
.t-bl-hd1 {
color: #e0e9eb !important
}
.t-bl-hd2 {
color: #c2d1d6 !important
}
.t-bl-hd3 {
color: #a3b8c2 !important
}
.t-bl-hd4 {
color: #859cad !important
}
.t-bl-hd5 {
color: #667f99 !important
}
.t-bl-hd6 {
color: #52637a !important
}
.t-bl-hd7 {
color: #3d475c !important
}
.t-bl-hd8 {
color: #292e3d !important
}
.t-bl-hd9 {
color: #14161f !important
}
.t-bi-hl1 {
color: #d1e9fa !important
}
.t-bi-hl2 {
color: #a3ccf5 !important
}
.t-bi-hl3 {
color: #75a8f0 !important
}
.t-bi-hl4 {
color: #477eeb !important
}
.t-bi-hl5 {
color: #194ce6 !important
}
.t-bi-hl6 {
color: #1430b8 !important
}
.t-bi-hl7 {
color: #0f198a !important
}
.t-bi-hl8 {
color: #0a0a5c !important
}
.t-bi-hl9 {
color: #08052e !important
}
.t-bi-hm1 {
color: #d9e8f2 !important
}
.t-bi-hm2 {
color: #b3cce6 !important
}
.t-bi-hm3 {
color: #8cacd9 !important
}
.t-bi-hm4 {
color: #6688cc !important
}
.t-bi-hm5 {
color: #4060bf !important
}
.t-bi-hm6 {
color: #334499 !important
}
.t-bi-hm7 {
color: #262d73 !important
}
.t-bi-hm8 {
color: #19194d !important
}
.t-bi-hm9 {
color: #0f0d26 !important
}
.t-bi-hd1 {
color: #e0e6eb !important
}
.t-bi-hd2 {
color: #c2ccd6 !important
}
.t-bi-hd3 {
color: #a3b0c2 !important
}
.t-bi-hd4 {
color: #8592ad !important
}
.t-bi-hd5 {
color: #667399 !important
}
.t-bi-hd6 {
color: #52587a !important
}
.t-bi-hd7 {
color: #3d405c !important
}
.t-bi-hd8 {
color: #29293d !important
}
.t-bi-hd9 {
color: #15141f !important
}
.t-in-hl1 {
color: #d1dffa !important
}
.t-in-hl2 {
color: #a3b8f5 !important
}
.t-in-hl3 {
color: #758af0 !important
}
.t-in-hl4 {
color: #4755eb !important
}
.t-in-hl5 {
color: #1919e6 !important
}
.t-in-hl6 {
color: #2214b8 !important
}
.t-in-hl7 {
color: #240f8a !important
}
.t-in-hl8 {
color: #1f0a5c !important
}
.t-in-hl9 {
color: #13052e !important
}
.t-in-hm1 {
color: #d9e1f2 !important
}
.t-in-hm2 {
color: #b3bfe6 !important
}
.t-in-hm3 {
color: #8c99d9 !important
}
.t-in-hm4 {
color: #666ecc !important
}
.t-in-hm5 {
color: #4040bf !important
}
.t-in-hm6 {
color: #3b3399 !important
}
.t-in-hm7 {
color: #332673 !important
}
.t-in-hm8 {
color: #26194d !important
}
.t-in-hm9 {
color: #150d26 !important
}
.t-in-hd1 {
color: #e0e4eb !important
}
.t-in-hd2 {
color: #c2c7d6 !important
}
.t-in-hd3 {
color: #a3a8c2 !important
}
.t-in-hd4 {
color: #8588ad !important
}
.t-in-hd5 {
color: #666699 !important
}
.t-in-hd6 {
color: #55527a !important
}
.t-in-hd7 {
color: #423d5c !important
}
.t-in-hd8 {
color: #2e293d !important
}
.t-in-hd9 {
color: #18141f !important
}
.t-ip-hl1 {
color: #d1d4fa !important
}
.t-ip-hl2 {
color: #a3a3f5 !important
}
.t-ip-hl3 {
color: #8075f0 !important
}
.t-ip-hl4 {
color: #6347eb !important
}
.t-ip-hl5 {
color: #4d19e6 !important
}
.t-ip-hl6 {
color: #4b14b8 !important
}
.t-ip-hl7 {
color: #420f8a !important
}
.t-ip-hl8 {
color: #330a5c !important
}
.t-ip-hl9 {
color: #1d052e !important
}
.t-ip-hm1 {
color: #d9dbf2 !important
}
.t-ip-hm2 {
color: #b3b3e6 !important
}
.t-ip-hm3 {
color: #938cd9 !important
}
.t-ip-hm4 {
color: #7766cc !important
}
.t-ip-hm5 {
color: #6040bf !important
}
.t-ip-hm6 {
color: #553399 !important
}
.t-ip-hm7 {
color: #462673 !important
}
.t-ip-hm8 {
color: #33194d !important
}
.t-ip-hm9 {
color: #1c0d26 !important
}
.t-ip-hd1 {
color: #e0e1eb !important
}
.t-ip-hd2 {
color: #c2c2d6 !important
}
.t-ip-hd3 {
color: #a6a3c2 !important
}
.t-ip-hd4 {
color: #8b85ad !important
}
.t-ip-hd5 {
color: #736699 !important
}
.t-ip-hd6 {
color: #5f527a !important
}
.t-ip-hd7 {
color: #4a3d5c !important
}
.t-ip-hd8 {
color: #33293d !important
}
.t-ip-hd9 {
color: #1a141f !important
}
.t-pu-hl1 {
color: #d8d1fa !important
}
.t-pu-hl2 {
color: #b8a3f5 !important
}
.t-pu-hl3 {
color: #9e75f0 !important
}
.t-pu-hl4 {
color: #8b47eb !important
}
.t-pu-hl5 {
color: #7f19e6 !important
}
.t-pu-hl6 {
color: #7414b8 !important
}
.t-pu-hl7 {
color: #610f8a !important
}
.t-pu-hl8 {
color: #470a5c !important
}
.t-pu-hl9 {
color: #27052e !important
}
.t-pu-hm1 {
color: #ddd9f2 !important
}
.t-pu-hm2 {
color: #bfb3e6 !important
}
.t-pu-hm3 {
color: #a68cd9 !important
}
.t-pu-hm4 {
color: #9066cc !important
}
.t-pu-hm5 {
color: #7f40bf !important
}
.t-pu-hm6 {
color: #6e3399 !important
}
.t-pu-hm7 {
color: #592673 !important
}
.t-pu-hm8 {
color: #40194d !important
}
.t-pu-hm9 {
color: #220d26 !important
}
.t-pu-hd1 {
color: #e2e0eb !important
}
.t-pu-hd2 {
color: #c7c2d6 !important
}
.t-pu-hd3 {
color: #ada3c2 !important
}
.t-pu-hd4 {
color: #9685ad !important
}
.t-pu-hd5 {
color: #7f6699 !important
}
.t-pu-hd6 {
color: #69527a !important
}
.t-pu-hd7 {
color: #523d5c !important
}
.t-pu-hd8 {
color: #38293d !important
}
.t-pu-hd9 {
color: #1d141f !important
}
.t-pp-hl1 {
color: #e2d1fa !important
}
.t-pp-hl2 {
color: #cca3f5 !important
}
.t-pp-hl3 {
color: #bd75f0 !important
}
.t-pp-hl4 {
color: #b447eb !important
}
.t-pp-hl5 {
color: #b319e6 !important
}
.t-pp-hl6 {
color: #9c14b8 !important
}
.t-pp-hl7 {
color: #7f0f8a !important
}
.t-pp-hl8 {
color: #5c0a5c !important
}
.t-pp-hl9 {
color: #2e052b !important
}
.t-pp-hm1 {
color: #e3d9f2 !important
}
.t-pp-hm2 {
color: #ccb3e6 !important
}
.t-pp-hm3 {
color: #b98cd9 !important
}
.t-pp-hm4 {
color: #aa66cc !important
}
.t-pp-hm5 {
color: #9f40bf !important
}
.t-pp-hm6 {
color: #883399 !important
}
.t-pp-hm7 {
color: #6c2673 !important
}
.t-pp-hm8 {
color: #4d194d !important
}
.t-pp-hm9 {
color: #260d24 !important
}
.t-pp-hd1 {
color: #e5e0eb !important
}
.t-pp-hd2 {
color: #ccc2d6 !important
}
.t-pp-hd3 {
color: #b5a3c2 !important
}
.t-pp-hd4 {
color: #a085ad !important
}
.t-pp-hd5 {
color: #8c6699 !important
}
.t-pp-hd6 {
color: #74527a !important
}
.t-pp-hd7 {
color: #593d5c !important
}
.t-pp-hd8 {
color: #3d293d !important
}
.t-pp-hd9 {
color: #1f141e !important
}
.t-pi-hl1 {
color: #ecd1fa !important
}
.t-pi-hl2 {
color: #e0a3f5 !important
}
.t-pi-hl3 {
color: #db75f0 !important
}
.t-pi-hl4 {
color: #dd47eb !important
}
.t-pi-hl5 {
color: #e619e5 !important
}
.t-pi-hl6 {
color: #b814aa !important
}
.t-pi-hl7 {
color: #8a0f75 !important
}
.t-pi-hl8 {
color: #5c0a47 !important
}
.t-pi-hl9 {
color: #2e0520 !important
}
.t-pi-hm1 {
color: #ead9f2 !important
}
.t-pi-hm2 {
color: #d9b3e6 !important
}
.t-pi-hm3 {
color: #cc8cd9 !important
}
.t-pi-hm4 {
color: #c366cc !important
}
.t-pi-hm5 {
color: #bf40bf !important
}
.t-pi-hm6 {
color: #993391 !important
}
.t-pi-hm7 {
color: #732666 !important
}
.t-pi-hm8 {
color: #4d1940 !important
}
.t-pi-hm9 {
color: #260d1e !important
}
.t-pi-hd1 {
color: #e7e0eb !important
}
.t-pi-hd2 {
color: #d1c2d6 !important
}
.t-pi-hd3 {
color: #bda3c2 !important
}
.t-pi-hd4 {
color: #aa85ad !important
}
.t-pi-hd5 {
color: #996699 !important
}
.t-pi-hd6 {
color: #7a5277 !important
}
.t-pi-hd7 {
color: #5c3d57 !important
}
.t-pi-hd8 {
color: #3d2938 !important
}
.t-pi-hd9 {
color: #1f141b !important
}
.t-pv-hl1 {
color: #f7d1fa !important
}
.t-pv-hl2 {
color: #f5a3f5 !important
}
.t-pv-hl3 {
color: #f075e5 !important
}
.t-pv-hl4 {
color: #eb47cf !important
}
.t-pv-hl5 {
color: #e619b2 !important
}
.t-pv-hl6 {
color: #b81481 !important
}
.t-pv-hl7 {
color: #8a0f57 !important
}
.t-pv-hl8 {
color: #5c0a33 !important
}
.t-pv-hl9 {
color: #2e0516 !important
}
.t-pv-hm1 {
color: #f0d9f2 !important
}
.t-pv-hm2 {
color: #e6b3e5 !important
}
.t-pv-hm3 {
color: #d98cd2 !important
}
.t-pv-hm4 {
color: #cc66bb !important
}
.t-pv-hm5 {
color: #bf409f !important
}
.t-pv-hm6 {
color: #993377 !important
}
.t-pv-hm7 {
color: #732653 !important
}
.t-pv-hm8 {
color: #4d1933 !important
}
.t-pv-hm9 {
color: #260d17 !important
}
.t-pv-hd1 {
color: #eae0eb !important
}
.t-pv-hd2 {
color: #d6c2d6 !important
}
.t-pv-hd3 {
color: #c2a3bf !important
}
.t-pv-hd4 {
color: #ad85a7 !important
}
.t-pv-hd5 {
color: #99668c !important
}
.t-pv-hd6 {
color: #7a526d !important
}
.t-pv-hd7 {
color: #5c3d4f !important
}
.t-pv-hd8 {
color: #3d2933 !important
}
.t-pv-hd9 {
color: #1f1419 !important
}
.t-vi-hl1 {
color: #fad1f3 !important
}
.t-vi-hl2 {
color: #f5a3e0 !important
}
.t-vi-hl3 {
color: #f075c7 !important
}
.t-vi-hl4 {
color: #eb47a7 !important
}
.t-vi-hl5 {
color: #e61980 !important
}
.t-vi-hl6 {
color: #b81458 !important
}
.t-vi-hl7 {
color: #8a0f38 !important
}
.t-vi-hl8 {
color: #5c0a1f !important
}
.t-vi-hl9 {
color: #2e050c !important
}
.t-vi-hm1 {
color: #f2d9ee !important
}
.t-vi-hm2 {
color: #e6b3d9 !important
}
.t-vi-hm3 {
color: #d98cbf !important
}
.t-vi-hm4 {
color: #cc66a2 !important
}
.t-vi-hm5 {
color: #bf4080 !important
}
.t-vi-hm6 {
color: #99335d !important
}
.t-vi-hm7 {
color: #732640 !important
}
.t-vi-hm8 {
color: #4d1926 !important
}
.t-vi-hm9 {
color: #260d11 !important
}
.t-vi-hd1 {
color: #ebe0e9 !important
}
.t-vi-hd2 {
color: #d6c2d1 !important
}
.t-vi-hd3 {
color: #c2a3b8 !important
}
.t-vi-hd4 {
color: #ad859c !important
}
.t-vi-hd5 {
color: #996680 !important
}
.t-vi-hd6 {
color: #7a5263 !important
}
.t-vi-hd7 {
color: #5c3d47 !important
}
.t-vi-hd8 {
color: #3d292e !important
}
.t-vi-hd9 {
color: #1f1416 !important
}
.t-vr-hl1 {
color: #fad1e9 !important
}
.t-vr-hl2 {
color: #f5a3cc !important
}
.t-vr-hl3 {
color: #f075a8 !important
}
.t-vr-hl4 {
color: #eb477e !important
}
.t-vr-hl5 {
color: #e6194c !important
}
.t-vr-hl6 {
color: #b81430 !important
}
.t-vr-hl7 {
color: #8a0f19 !important
}
.t-vr-hl8 {
color: #5c0a0a !important
}
.t-vr-hl9 {
color: #2e0805 !important
}
.t-vr-hm1 {
color: #f2d9e8 !important
}
.t-vr-hm2 {
color: #e6b3cc !important
}
.t-vr-hm3 {
color: #d98cac !important
}
.t-vr-hm4 {
color: #cc6688 !important
}
.t-vr-hm5 {
color: #bf4060 !important
}
.t-vr-hm6 {
color: #993344 !important
}
.t-vr-hm7 {
color: #73262d !important
}
.t-vr-hm8 {
color: #4d1919 !important
}
.t-vr-hm9 {
color: #260f0d !important
}
.t-vr-hd1 {
color: #ebe0e6 !important
}
.t-vr-hd2 {
color: #d6c2cc !important
}
.t-vr-hd3 {
color: #c2a3b0 !important
}
.t-vr-hd4 {
color: #ad8592 !important
}
.t-vr-hd5 {
color: #996673 !important
}
.t-vr-hd6 {
color: #7a5258 !important
}
.t-vr-hd7 {
color: #5c3d40 !important
}
.t-vr-hd8 {
color: #3d2929 !important
}
.t-vr-hd9 {
color: #1f1514 !important
}
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s
}
.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s
}
@-webkit-keyframes bounce {
20%, 53%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0)
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0)
}
}
@keyframes bounce {
20%, 53%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0)
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0)
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0)
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom
}
@-webkit-keyframes flash {
50%, from, to {
opacity: 1
}
25%, 75% {
opacity: 0
}
}
@keyframes flash {
50%, from, to {
opacity: 1
}
25%, 75% {
opacity: 0
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash
}
@-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1)
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1)
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1)
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1)
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1)
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1)
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg)
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg)
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg)
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg)
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg)
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg)
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0)
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg)
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg)
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg)
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg)
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg)
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg)
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg)
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
10%, 20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada
}
@-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
}
to {
-webkit-transform: none;
transform: none
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble
}
@-webkit-keyframes jello {
11.1%, from, to {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
}
@keyframes jello {
11.1%, from, to {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes bounceIn {
20%, 40%, 60%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
@keyframes bounceIn {
20%, 40%, 60%, 80%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03)
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97)
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0)
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInDown {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0)
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0)
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInLeft {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0)
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0)
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0)
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
@keyframes bounceInRight {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0)
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0)
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0)
}
to {
-webkit-transform: none;
transform: none
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes bounceInUp {
60%, 75%, 90%, from, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0)
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9)
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0)
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0)
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadeIn {
from {
opacity: 0
}
to {
opacity: 1
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig
}
@-webkit-keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0
}
}
@keyframes fadeOut {
from {
opacity: 1
}
to {
opacity: 0
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@keyframes fadeOutDown {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0)
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
@keyframes fadeOutLeft {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0)
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@keyframes fadeOutRight {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0)
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
@keyframes fadeOutUp {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0)
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px)
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
to {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1
}
to {
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0
}
}
@keyframes lightSpeedOut {
from {
opacity: 1
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge
}
@-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
}
to {
opacity: 1;
-webkit-transform: none;
transform: none
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn
}
@-webkit-keyframes rollOut {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
@keyframes rollOut {
from {
opacity: 1
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
50% {
opacity: 1
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
50% {
opacity: 1
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
to {
opacity: 0
}
}
@keyframes zoomOut {
from {
opacity: 1
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3)
}
to {
opacity: 0
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0)
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0)
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp
}
.fixfloat:after {
content: ".";
height: 0;
display: block;
visibility: hidden;
clear: both
}
.fullbox {
top: 0;
right: 0;
bottom: 0;
left: 0
}
.fae {
display: inline-block;
font-family: 'Font Awesome 5 Pro';
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
.thidden {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}
.block-group {
display: table
}
.block-group li {
display: table-cell;
width: 1%
}
.block-group li .mui-btn {
width: 100%
}
.fix-cx {
transform: translateX(-50%)
}
.fix-cy {
transform: translateY(-50%)
}
.fix-c {
transform: translateX(-50%) translateY(-50%)
}
img {
border-radius: 2px
}
.tooltip .tooltip-inner {
white-space: nowrap
}
.mCustomScrollbar {
overflow: visible !important
}
.mCustomScrollbar .mCSB_inside > .mCSB_container {
margin-right: 0
}
.mCustomScrollbar .mCSB_inside .mCSB_scrollTools_vertical {
width: 5px
}
.desktop .center-stage {
position: absolute;
left: 50%;
top: 50%;
margin-left: -500px;
margin-top: -300px;
width: 1000px;
height: 600px
}
.desktop .full-box {
width: 2000px;
height: 1100px;
position: fixed;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -550px
}
.desktop .full-box .full-bg {
width: 100%;
height: 100%
}
.center-stage .logo-wrapper {
margin: 0 auto;
height: 120px;
width: 120px;
position: relative
}
.center-stage .logo-wrapper .logo {
height: 120px
}
.center-stage .logo-wrapper .desc {
text-align: right
}
.center-stage .logo-wrapper .chs {
color: #fff;
font-size: 2rem;
font-family: SimHei;
font-weight: bold;
padding-top: 5px
}
.center-stage .logo-wrapper .site {
color: #fff;
font-size: 1.35rem;
font-family: arial
}
.center-stage .logo-wrapper .donate-us {
right: -120px;
top: 25px;
font-size: 1.2rem;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
cursor: pointer;
position: absolute;
z-index: 9;
background-color: #b81414;
color: #fff;
border-radius: 0 100px 100px 0;
text-align: center;
width: 120px;
height: 50px;
line-height: 48px
}
.center-stage .logo-wrapper .donate-us .fa {
margin-right: 5px
}
.center-stage .logo-wrapper .donate-us:before {
content: " ";
position: absolute;
left: 0;
top: -25px;
height: 100px;
width: 2px;
background: linear-gradient(rgba(0, 0, 0, 0), #000000, rgba(0, 0, 0, 0))
}
.center-stage .logo-wrapper .donate-us:hover {
background-color: #e61919
}
.center-stage .copyright {
font-size: 1rem;
color: rgba(255, 255, 255, 0.3);
line-height: 2rem
}
.center-stage .copyright .fr {
float: right
}
.aniin {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .col-mark {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .col-mark:hover {
transform: scale(1.08)
}
.desktop .box-mark {
background-color: #197fe6;
margin: 15px 0;
padding: 15px;
color: #fff;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.desktop .box-mark p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.desktop .box-mark p.desc {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.desktop .box-mark .fa, .desktop .box-mark .fab, .desktop .box-mark .fal {
font-size: 3rem;
position: absolute;
bottom: 10px;
right: 10px;
color: rgba(255, 255, 255, 0.4)
}
.desktop .box-mark.box-h1 {
height: 130px
}
.desktop .box-mark.box-h2 {
height: 290px
}
.desktop .box-mark.box-min {
height: 50px
}
.desktop .box-mark.box-min-1st {
margin-bottom: 30px
}
.desktop .box-mark.box-n1 {
background-color: #7fcc66
}
.desktop .box-mark.box-n1 .fa {
font-size: 6rem;
right: 25px;
bottom: 25px
}
.desktop .box-mark.box-n1 .fab {
font-size: 2rem;
bottom: 60px;
right: 39px
}
.desktop .box-mark.box-n1 img {
opacity: 0;
width: 127px;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0
}
.desktop .box-mark.box-n1:hover img {
opacity: 1
}
.desktop .box-mark.box-n2 {
background-position: center center;
background-color: #eb9947
}
.desktop .box-mark.box-n2 .title {
/*text-align: center*/
}
.desktop .box-mark.box-n2 .fa {
font-size: 4rem;
bottom: 20px;
right: 54px;
color: rgba(255, 255, 255, 0.8)
}
.desktop .box-mark.box-n2 .fab {
font-size: 1.5rem;
bottom: 43px;
right: 64px;
color: rgba(255, 255, 255, 0.8)
}
.desktop .box-mark.box-n2 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n2:hover img {
opacity: 1
}
.desktop .box-mark.box-n3 {
background-color: #66cccc
}
.desktop .box-mark.box-n3 .title {
font-size: 1.1rem
}
.desktop .box-mark.box-n3 .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n3:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-nx {
background-color: #6699cc
}
.desktop .box-mark.box-nx .title {
font-size: 1.1rem
}
.desktop .box-mark.box-nx .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-nx:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n4 {
background-color: #8f85ad;
padding-right: 150px
}
.desktop .box-mark.box-n4 .fa {
font-size: 5.5rem;
right: 30px;
bottom: 30px
}
.desktop .box-mark.box-n4:hover .fa {
-webkit-animation-name: pulse;
animation-name: pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n5 {
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-color: #4799eb;
background-color: #148fb8;
position: relative
}
.desktop .box-mark.box-n5 .fal {
position: absolute;
left: 50%;
top: 25%;
font-size: 4rem;
color: #fff;
transform: translateX(-50%);
bottom: auto;
right: auto;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5 .titlechs {
position: absolute;
left: 50%;
top: 48%;
font-size: 1.6rem;
color: #fff;
transform: translateX(-50%);
white-space: nowrap;
text-align: center;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5 .titlechs .eng {
display: block;
padding-top: 10px
}
.desktop .box-mark.box-n5 .desc {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5:before {
content: " ";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s
}
.desktop .box-mark.box-n5:hover:before {
opacity: 1
}
.desktop .box-mark.box-n5:hover .desc {
opacity: 0
}
.desktop .box-mark.box-n5:hover .fal, .desktop .box-mark.box-n5:hover .titlechs {
color: #000
}
.desktop .box-mark.box-n6 {
background-color: #eb4747
}
.desktop .box-mark.box-n6 .desc {
white-space: nowrap;
font-size: 0.9rem
}
.desktop .box-mark.box-n6 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n6:hover img {
opacity: 1
}
.desktop .box-mark.box-n7 {
background-color: #40bf80
}
.desktop .box-mark.box-n7 img {
opacity: 0;
width: 100%;
height: 100%;
border-radius: 8px;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0
}
.desktop .box-mark.box-n7:hover img {
opacity: 1
}
.desktop .box-mark.box-n8 {
background-color: #0f4c8a;
padding-right: 100px
}
.desktop .box-mark.box-n8 .fab {
font-size: 5rem;
bottom: 30px;
right: 30px
}
.desktop .box-mark.box-n8:hover .fa, .desktop .box-mark.box-n8:hover .fab {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n9 {
background-color: #eb7047;
background-position: center center
}
.desktop .box-mark.box-n9 .fab {
font-size: 6rem;
bottom: 25px;
right: 30px
}
.desktop .box-mark.box-n9:hover .fa, .desktop .box-mark.box-n9:hover .fab {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n10 {
background-color: #197fe6
}
.desktop .box-mark.box-n10 .mail {
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
background-color: #197fe6;
z-index: 10;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center
}
.desktop .box-mark.box-n10 .mail .fa {
position: relative;
display: block;
bottom: auto;
right: auto;
margin: 10px 0
}
.desktop .box-mark.box-n10 .fa {
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n10:hover .mail {
opacity: 1
}
.desktop .box-mark.box-n10:hover .mail .fa, .desktop .box-mark.box-n10:hover .mail .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n11 {
background-color: #cc66cc
}
.desktop .box-mark.box-n11 .title {
font-size: 1.1rem
}
.desktop .box-mark.box-n11 .fa {
font-size: 2rem;
bottom: 10px;
right: 10px
}
.desktop .box-mark.box-n11:hover .fa {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.desktop .box-mark.box-n12 {
background-color: #262673
}
.desktop .box-mark.box-n12 .title {
opacity: 0
}
.desktop .box-mark.box-n12 img {
height: 40px;
position: absolute;
top: 5px;
left: 40px
}
.desktop .box-mark.box-n12:hover img {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile body {
background-image: none !important;
background-color: #333333
}
.mobile .full-box .full-bg {
display: none
}
.mobile .center-stage {
padding: 20px;
max-width: 450px;
margin: 0 auto
}
.mobile .center-stage .logo-wrapper {
margin: 10px 0 0 10px
}
.mobile .center-stage .logo-wrapper .logo {
height: 80px;
margin: 10px 0 0 20px
}
.mobile .center-stage .logo-wrapper .donate-us {
right: -100px
}
.mobile .col-mark {
padding: 10px
}
.mobile .box-mark {
background-color: #197fe6;
padding: 15px;
color: #fff;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.mobile .box-mark p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.mobile .box-mark p.desc {
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.mobile .box-mark .fa, .mobile .box-mark .fab, .mobile .box-mark .fal {
font-size: 3rem;
position: absolute;
bottom: 10px;
right: 10px;
color: rgba(255, 255, 255, 0.4)
}
.mobile .box-mark.box-h1 {
height: 130px
}
.mobile .box-mark.box-h2 {
height: 290px
}
.mobile .box-mark.box-min {
height: 50px
}
.mobile .box-mark.box-min-1st {
margin-bottom: 30px
}
.mobile .box-mark.box-n1 {
background-position: right center;
background-repeat: no-repeat;
background-color: #81cb6b
}
.mobile .box-mark.box-n1 .fa {
font-size: 5.5rem;
right: 40px;
bottom: 27px;
color: rgba(255, 255, 255, 0.6)
}
.mobile .box-mark.box-n3 {
background-color: #66cccc;
background-color: #eb7047
}
.mobile .box-mark.box-n3 .title {
font-size: 1.3rem
}
.mobile .box-mark.box-n3 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n3:hover .fa, .mobile .box-mark.box-n3:hover .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n4 {
background-color: #9475f0;
padding-right: 150px
}
.mobile .box-mark.box-n4 .fa {
font-size: 5.5rem;
right: 30px;
bottom: 30px
}
.mobile .box-mark.box-n4:hover .fa {
-webkit-animation-name: pulse;
animation-name: pulse;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n5 {
background-color: #4799eb;
background-color: #148fb8;
position: relative;
background-size: 100% auto;
background-position: center center
}
.mobile .box-mark.box-n6 {
background-color: #eb4747
}
.mobile .box-mark.box-n6 .desc {
white-space: nowrap;
font-size: 0.9rem
}
.mobile .box-mark.box-n7 {
background-color: #40bf80
}
.mobile .box-mark.box-n10 {
background-color: #197fe6
}
.mobile .box-mark.box-n10 .mail {
opacity: 0;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
background-color: #197fe6;
z-index: 10;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center
}
.mobile .box-mark.box-n10 .mail .fa {
position: relative;
display: block;
bottom: auto;
right: auto;
margin: 10px 0
}
.mobile .box-mark.box-n10 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n10:hover .mail {
opacity: 1
}
.mobile .box-mark.box-n10:hover .mail .fa, .mobile .box-mark.box-n10:hover .mail .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n11 {
background-color: #cc66cc
}
.mobile .box-mark.box-n11 .fa {
bottom: 10px;
right: 10px
}
.mobile .box-mark.box-n11:hover .fa, .mobile .box-mark.box-n11:hover .fab {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-fill-mode: both;
animation-fill-mode: both
}
.mobile .box-mark.box-n12 {
background-color: #262673
}
.mobile .box-mark.box-n12 .title {
position: absolute;
bottom: 10px;
left: 0;
right: 0;
text-align: center
}
.mobile .box-mark.box-n12 img {
height: 80px;
position: absolute;
top: 5px;
left: 50%;
transform: translateX(-50%)
}
.donate-us {
height: auto !important
}
.donate-us .ui-limit {
width: 1000px;
margin: 0 auto
}
.donate-us .ui-header {
padding: 0 0 40px
}
.donate-us .ui-header .logo-wrapper {
margin: 0 auto;
height: 120px;
width: 223px;
position: relative
}
.donate-us .ui-header .logo-wrapper .logo {
height: 100px;
margin-top: 20px
}
.donate-us .ui-content {
padding: 40px 0;
position: relative;
background-color: rgba(0, 0, 0, 0.5)
}
.donate-us .ui-content .desc-wrapper p {
color: #fff;
font-size: 1.2rem;
margin-bottom: 20px
}
.donate-us .ui-content .desc-wrapper p.title {
font-size: 1.8rem;
font-weight: bold
}
.donate-us .ui-content .desc-wrapper p:last-child {
margin-bottom: 0
}
.donate-us .ui-content .desc-wrapper p a {
font-size: 1.4rem;
margin: 20px 20px 0 0
}
.donate-us .ui-content .row-table {
padding: 20px 0
}
.donate-us .ui-block {
padding: 40px 0
}
.donate-us .ui-block .main-title {
font-size: 1.4rem;
color: #fff;
margin-bottom: 40px
}
.donate-us .ui-block .row .col-mark2 .box-location {
background-color: #fff;
padding: 15px;
color: #000;
position: relative;
overflow: hidden;
border-radius: 8px;
cursor: pointer
}
.donate-us .ui-block .row .col-mark2 .box-location .title {
font-size: 1.8rem
}
.donate-us .ui-block .row .col-mark2 .box-location .desc {
word-break: break-all;
margin-right: 100px
}
.donate-us .ui-block .row .col-mark2 .box-location textarea {
border: none;
resize: none
}
.donate-us .ui-block .row .col-mark2 .box-location .logo {
width: 80px;
height: 80px;
position: absolute;
right: 15px;
top: 15px
}
.donate-us .ui-block .row .col-mark2 .box-location .qrc {
width: 150px;
height: 150px;
display: block;
margin: 60px auto
}
.mobile .donate-us .ui-limit {
width: 100%;
padding: 0 20px
}
.mobile .donate-us .ui-content .row-table .col-md-3 {
margin-bottom: 40px
}
.mobile .donate-us .ui-block .row .col-mark2 .box-location {
margin-bottom: 20px
}
@media (max-width: 1201px) {
.desktop .donate-us .ui-limit {
width: 100%;
padding: 0 20px
}
.desktop .donate-us .ui-content .row-table .col-md-3 {
margin-bottom: 40px
}
.desktop .donate-us .ui-block .row .col-mark2 .box-location {
margin-bottom: 20px
}
}
@media (max-width: 321px) {
.mobile .center-stage .logo-wrapper {
width: 200px;
margin: 0
}
.mobile .center-stage .logo-wrapper .logo {
height: 70px
}
.mobile .center-stage .logo-wrapper .donate-us {
right: -80px;
width: 100px
}
}
.color-white{
background-color: white;
margin: 15px 0;
padding: 15px;
position: relative;
overflow: hidden;
border-radius: 8px;
/*cursor: pointer*/
}
.color-white p.title {
font-size: 1.3rem;
white-space: nowrap;
font-weight: bold;
transition: all 0.5s cubic-bezier(0.78, 0.02, 0.2, 1), z-index 0s 0.12s;
position: relative
}
.min-height-500 {
min-height: 500px;
} | 0.239438 | 0.082586 |
@import url('https://fonts.googleapis.com/css?family=Roboto:100,400,700');
input::placeholder, textarea::placeholder {
opacity: 1;
transition: opacity .2s;
color: inherit;
}
input:focus::placeholder, textarea:focus::placeholder {
opacity: .2;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
opacity: 1;
transition: opacity .2s;
color: inherit;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
opacity: .2;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
::-moz-focus-inner {
border: 0;
}
::-moz-selection {
color: #FFFFFF;
background: #000;
}
::selection {
color: #FFFFFF;
background: #000;
}
* {
box-sizing: border-box;
outline: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent !important;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
-webkit-touch-callout: none;
font-family: "Roboto", sans-serif;
letter-spacing: 0;
}
body {
background-color: #FAFAFA;
color: #5c616c;
margin: 0;
font-size: 13px;
cursor: default;
user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
a:link, a:visited, a:active, a {
color: #367bf0;
font-weight: bold;
text-decoration: none;
cursor: pointer;
}
a:link:hover, a:visited:hover, a:active:hover, a:hover {
text-decoration: underline
}
label {
cursor: pointer;
display: inline-block;
padding: .56em 0;
}
h1, h2, h3, h4, h5, h6 { line-height: 1.5em; }
h1 {
font-size: 4em;
font-weight: lighter;
margin: .7em 0;
}
h2 {
font-size: 3em;
font-weight: lighter;
margin: .8em 0;
}
h3 {
font-size: 2.5em;
font-weight: lighter;
margin: .9em 0;
}
h4 {
font-size: 2em;
font-weight: lighter;
margin: 1em 0;
}
h5 {
margin: .5em 0;
font-size: 1.2em;
font-weight: normal;
}
h6 {
margin: 1em 0 1em 1.4em;
font-size: 1em;
font-weight: bold;
}
section, article, .section, .article, .paper {
line-height: 2em;
word-wrap: break-word;
word-break: normal;
line-height: 2em;
}
hr {
width: 50%;
border: 3px solid #5c616c;
background-color: #5c616c;
border-radius: 4px;
}
code, pre {
padding: 5px 10px;
border-radius: 4px;
overflow: auto;
box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .05);
}
code { background: #E6E6E6; }
pre {
background: white;
margin: 40px 0;
}
code, pre {
font-size: 12px;
font-family: monospace;
line-height: 2em;
cursor: auto;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
}
blockquote {
background-color: #FFF;
padding: 5px 10px;
border-radius: 4px;
box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .05);
border-left: 6px solid #49AEE6;
}
input:not([type=submit]):not([type=reset]):not([type=radio]):not([type=checkbox]),
textarea, select {
border: 2px solid #000;
background: #FFF;
color: #000;
border-radius: 3px;
margin: 7px 0;
height: 45px;
padding: 0 10px;
font-size: 14px;
font-weight: bold;
cursor: text;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
}
input[type=checkbox], input[type=radio] {
font-size: 1em;
border: .125em solid #000;
background: #FFF;
cursor: pointer;
height: 1.2em;
width: 1.2em;
box-shadow: inset 0 0 0 .125em #FFF;
vertical-align: text-top;
margin: 0 .3em;
padding: 0;
transition: background-color .2s, box-shadow .2s;
}
input[type=checkbox]:checked, input[type=radio]:checked {
background: #367bf0;
}
label:hover > input[type=checkbox]:checked, label:hover > input[type=radio]:checked {
box-shadow: inset 0 0 0 0.1875em #FFF;
}
label:hover > input[type=checkbox]:not(:checked), label:hover > input[type=radio]:not(:checked) {
background: #b8174c;
}
input[type=checkbox] {
border-radius: .1875em;
}
input[type=radio] {
border-radius: 100%;
}
input[type=number] {
-moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
textarea {
padding: 10px;
height: 200px;
}
label.checktext {
width: auto;
padding: 0;
}
label.checktext input {
display: none;
}
label.checktext span {
display: inline-block;
cursor: pointer;
color: #5c616c;
border-bottom: .125em solid #5c616c;
margin: .7em .625em;
line-height: 1em;
transition: transform .2s;
}
label.checktext input:not(:checked)+span:hover {
transform: scale(1.3);
}
label.checktext input:checked + span {
color: #000;
font-weight: bold;
font-size: 2.5em;
margin: -.25em .255em 0;
transform: translateY(.12em);
border-color: #367bf0;
}
select {
cursor: pointer;
padding-right: 40px;
text-align-last: center;
background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgeD0iMCIgeT0iMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTkgMTkiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogPGcgdHJhbnNmb3JtPSJtYXRyaXgoMC4wMzM5MjgzNiwwLDAsMC4wMzM5MjgzNiwtNi43ODU2NTUyLDEuNjk2NzE2M2UtNSkiPgogIDxwYXRoIGQ9Ik0gNDgwLDM0NC4xODEgMjY4Ljg2OSwxMzEuODg5IGMgLTE1Ljc1NiwtMTUuODU5IC00MS4zLC0xNS44NTkgLTU3LjA1NCwwIC0xNS43NTQsMTUuODU3IC0xNS43NTQsNDEuNTcgMCw1Ny40MzEgbCAyMzcuNjMyLDIzOC45MzcgYyA4LjM5NSw4LjQ1MSAxOS41NjIsMTIuMjU0IDMwLjU1MywxMS42OTggMTAuOTkzLDAuNTU2IDIyLjE1OSwtMy4yNDcgMzAuNTU1LC0xMS42OTggTCA3NDguMTg2LDE4OS4zMiBjIDE1Ljc1NiwtMTUuODYgMTUuNzU2LC00MS41NzEgMCwtNTcuNDMxIC0xNS43NTYsLTE1Ljg2IC00MS4yOTksLTE1Ljg1OSAtNTcuMDUxLDAgeiIvPgogPC9nPgo8L3N2Zz4K) no-repeat right 10px center #FFF;
}
.onoffswitch {
font-weight: bold;
overflow: hidden;
height: 45px;
padding: 0;
margin-top: 7px;
display: inline-block;
cursor: pointer;
}
.onoffswitch > span {
height: 45px;
text-align: left;
position: relative;
padding: 0;
width: 96px;
display: inline-block;
overflow: hidden;
background: #b8174c;
border: 3px solid #811035;
border-radius: 23px;
transition: border-color 0.2s;
}
.onoffswitch > span::after {
content: ' ';
position: absolute;
bottom: 0;
left: 0;
transform: translateX(0);
transition: transform 0.2s;
height: 34px;
width: 34px;
border-radius: 17px;
margin: 3px;
background: #FFF;
}
.onoffswitch input {
display: none;
}
.onoffswitch span span {
width: 200%;
transform: translateX(-50%);
transition: transform 0.2s;
display: block;
}
.onoffswitch span span::before, .onoffswitch span span::after {
color: #FFF;
float: left;
width: 50%;
height: 40px;
font-size: 16px;
line-height: 40px;
box-sizing: border-box;
border-radius: 40px;
}
.onoffswitch span span::before {
content: attr(data-on);
padding-left: 20px;
background: #367bf0;
}
.onoffswitch span span::after {
content: attr(data-off);
padding-right: 20px;
background: #b8174c;
text-align: right;
}
.onoffswitch input:checked + span span {
transform: translateX(0);
}
.onoffswitch input:checked + span::after {
transform: translateX(50px);
}
.onoffswitch input:checked + span {
background: #367bf0;
border-color: #2656a8;
}
button,
input[type=submit],
input[type=reset],
.blue-button, input.blue-button,
.red-button, input.red-button,
.green-button, input.green-button {
border-radius: 4px;
font-weight: bold;
color: #FFF;
margin-top: 7px;
text-align: center;
cursor: pointer;
font-size: 16px;
height: 45px;
width: 120px;
border: 3px solid #272a34;
background: #737680;
line-height: 40px;
display: block;
transition: border .2s .2s, text-shadow .2s .2s, background .2s .2s, transform .2s, color .2s .2s, box-shadow .2s;
text-transform: capitalize;
}
.rounded-button {
border: none;
cursor: pointer;
height: 56px;
width: 56px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
text-shadow: 0 0 1px;
border-radius: 100%;
font-size: 35px;
line-height: 56px;
text-align: center;
color: #FFF;
background: #8c42ab;
font-weight: 100;
display: block;
transition: text-shadow .2s .2s, background .2s .2s, transform .2s, color .2s .2s, box-shadow .2s;
}
.rounded-button:hover { transform: scale(1.04); }
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.blue-button:hover, input.blue-button:hover,
.red-button:hover, input.red-button:hover,
.green-button:hover, input.green-button:hover {
transform: scale(1.03);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}
button:active, button.active,
input[type=submit]:active, input[type=submit].active,
input[type=reset]:active, input[type=reset].active,
.blue-button:active, input.blue-button:active, .blue-button.active, input.blue-button.active,
.red-button:active, input.red-button:active, .red-button.active, input.red-button.active,
.green-button:active, input.green-button:active, .green-button.active, input.green-button.active,
.rounded-button:active, .rounded-button.active {
box-shadow: none;
border-color: #000;
color: #000;
text-shadow: none;
background: #FFF;
transition: transform .2s, box-shadow .2s;
}
.rounded-button:active, .rounded-button.active { box-shadow: 0 0 10px rgba(0, 0, 0, .6); }
.blue-button, input.blue-button {
background: #367bf0;
border-color: #2656a8;
}
.red-button, input.red-button {
background: #b8174c;
border-color: #811035;
}
.green-button, input.green-button {
background: #19a187;
border-color: #12715f;
}
.paper {
font-size: 16px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
padding: 10px 20px;
background-color: #FFF;
margin-top: 20px;
min-height: 100px;
color: #000;
}
.with-shadow {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}
.selectable {
cursor: auto;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
} | css/flat-remix.css | @import url('https://fonts.googleapis.com/css?family=Roboto:100,400,700');
input::placeholder, textarea::placeholder {
opacity: 1;
transition: opacity .2s;
color: inherit;
}
input:focus::placeholder, textarea:focus::placeholder {
opacity: .2;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
opacity: 1;
transition: opacity .2s;
color: inherit;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
opacity: .2;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
display: none;
}
::-moz-focus-inner {
border: 0;
}
::-moz-selection {
color: #FFFFFF;
background: #000;
}
::selection {
color: #FFFFFF;
background: #000;
}
* {
box-sizing: border-box;
outline: none;
-webkit-appearance: none;
-webkit-tap-highlight-color: transparent !important;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
-webkit-touch-callout: none;
font-family: "Roboto", sans-serif;
letter-spacing: 0;
}
body {
background-color: #FAFAFA;
color: #5c616c;
margin: 0;
font-size: 13px;
cursor: default;
user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
a:link, a:visited, a:active, a {
color: #367bf0;
font-weight: bold;
text-decoration: none;
cursor: pointer;
}
a:link:hover, a:visited:hover, a:active:hover, a:hover {
text-decoration: underline
}
label {
cursor: pointer;
display: inline-block;
padding: .56em 0;
}
h1, h2, h3, h4, h5, h6 { line-height: 1.5em; }
h1 {
font-size: 4em;
font-weight: lighter;
margin: .7em 0;
}
h2 {
font-size: 3em;
font-weight: lighter;
margin: .8em 0;
}
h3 {
font-size: 2.5em;
font-weight: lighter;
margin: .9em 0;
}
h4 {
font-size: 2em;
font-weight: lighter;
margin: 1em 0;
}
h5 {
margin: .5em 0;
font-size: 1.2em;
font-weight: normal;
}
h6 {
margin: 1em 0 1em 1.4em;
font-size: 1em;
font-weight: bold;
}
section, article, .section, .article, .paper {
line-height: 2em;
word-wrap: break-word;
word-break: normal;
line-height: 2em;
}
hr {
width: 50%;
border: 3px solid #5c616c;
background-color: #5c616c;
border-radius: 4px;
}
code, pre {
padding: 5px 10px;
border-radius: 4px;
overflow: auto;
box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .05);
}
code { background: #E6E6E6; }
pre {
background: white;
margin: 40px 0;
}
code, pre {
font-size: 12px;
font-family: monospace;
line-height: 2em;
cursor: auto;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
}
blockquote {
background-color: #FFF;
padding: 5px 10px;
border-radius: 4px;
box-shadow: 0 5px 30px 0 rgba(0, 0, 0, .05);
border-left: 6px solid #49AEE6;
}
input:not([type=submit]):not([type=reset]):not([type=radio]):not([type=checkbox]),
textarea, select {
border: 2px solid #000;
background: #FFF;
color: #000;
border-radius: 3px;
margin: 7px 0;
height: 45px;
padding: 0 10px;
font-size: 14px;
font-weight: bold;
cursor: text;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
}
input[type=checkbox], input[type=radio] {
font-size: 1em;
border: .125em solid #000;
background: #FFF;
cursor: pointer;
height: 1.2em;
width: 1.2em;
box-shadow: inset 0 0 0 .125em #FFF;
vertical-align: text-top;
margin: 0 .3em;
padding: 0;
transition: background-color .2s, box-shadow .2s;
}
input[type=checkbox]:checked, input[type=radio]:checked {
background: #367bf0;
}
label:hover > input[type=checkbox]:checked, label:hover > input[type=radio]:checked {
box-shadow: inset 0 0 0 0.1875em #FFF;
}
label:hover > input[type=checkbox]:not(:checked), label:hover > input[type=radio]:not(:checked) {
background: #b8174c;
}
input[type=checkbox] {
border-radius: .1875em;
}
input[type=radio] {
border-radius: 100%;
}
input[type=number] {
-moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
textarea {
padding: 10px;
height: 200px;
}
label.checktext {
width: auto;
padding: 0;
}
label.checktext input {
display: none;
}
label.checktext span {
display: inline-block;
cursor: pointer;
color: #5c616c;
border-bottom: .125em solid #5c616c;
margin: .7em .625em;
line-height: 1em;
transition: transform .2s;
}
label.checktext input:not(:checked)+span:hover {
transform: scale(1.3);
}
label.checktext input:checked + span {
color: #000;
font-weight: bold;
font-size: 2.5em;
margin: -.25em .255em 0;
transform: translateY(.12em);
border-color: #367bf0;
}
select {
cursor: pointer;
padding-right: 40px;
text-align-last: center;
background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgeD0iMCIgeT0iMCIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMTkgMTkiIHhtbDpzcGFjZT0icHJlc2VydmUiPgogPGcgdHJhbnNmb3JtPSJtYXRyaXgoMC4wMzM5MjgzNiwwLDAsMC4wMzM5MjgzNiwtNi43ODU2NTUyLDEuNjk2NzE2M2UtNSkiPgogIDxwYXRoIGQ9Ik0gNDgwLDM0NC4xODEgMjY4Ljg2OSwxMzEuODg5IGMgLTE1Ljc1NiwtMTUuODU5IC00MS4zLC0xNS44NTkgLTU3LjA1NCwwIC0xNS43NTQsMTUuODU3IC0xNS43NTQsNDEuNTcgMCw1Ny40MzEgbCAyMzcuNjMyLDIzOC45MzcgYyA4LjM5NSw4LjQ1MSAxOS41NjIsMTIuMjU0IDMwLjU1MywxMS42OTggMTAuOTkzLDAuNTU2IDIyLjE1OSwtMy4yNDcgMzAuNTU1LC0xMS42OTggTCA3NDguMTg2LDE4OS4zMiBjIDE1Ljc1NiwtMTUuODYgMTUuNzU2LC00MS41NzEgMCwtNTcuNDMxIC0xNS43NTYsLTE1Ljg2IC00MS4yOTksLTE1Ljg1OSAtNTcuMDUxLDAgeiIvPgogPC9nPgo8L3N2Zz4K) no-repeat right 10px center #FFF;
}
.onoffswitch {
font-weight: bold;
overflow: hidden;
height: 45px;
padding: 0;
margin-top: 7px;
display: inline-block;
cursor: pointer;
}
.onoffswitch > span {
height: 45px;
text-align: left;
position: relative;
padding: 0;
width: 96px;
display: inline-block;
overflow: hidden;
background: #b8174c;
border: 3px solid #811035;
border-radius: 23px;
transition: border-color 0.2s;
}
.onoffswitch > span::after {
content: ' ';
position: absolute;
bottom: 0;
left: 0;
transform: translateX(0);
transition: transform 0.2s;
height: 34px;
width: 34px;
border-radius: 17px;
margin: 3px;
background: #FFF;
}
.onoffswitch input {
display: none;
}
.onoffswitch span span {
width: 200%;
transform: translateX(-50%);
transition: transform 0.2s;
display: block;
}
.onoffswitch span span::before, .onoffswitch span span::after {
color: #FFF;
float: left;
width: 50%;
height: 40px;
font-size: 16px;
line-height: 40px;
box-sizing: border-box;
border-radius: 40px;
}
.onoffswitch span span::before {
content: attr(data-on);
padding-left: 20px;
background: #367bf0;
}
.onoffswitch span span::after {
content: attr(data-off);
padding-right: 20px;
background: #b8174c;
text-align: right;
}
.onoffswitch input:checked + span span {
transform: translateX(0);
}
.onoffswitch input:checked + span::after {
transform: translateX(50px);
}
.onoffswitch input:checked + span {
background: #367bf0;
border-color: #2656a8;
}
button,
input[type=submit],
input[type=reset],
.blue-button, input.blue-button,
.red-button, input.red-button,
.green-button, input.green-button {
border-radius: 4px;
font-weight: bold;
color: #FFF;
margin-top: 7px;
text-align: center;
cursor: pointer;
font-size: 16px;
height: 45px;
width: 120px;
border: 3px solid #272a34;
background: #737680;
line-height: 40px;
display: block;
transition: border .2s .2s, text-shadow .2s .2s, background .2s .2s, transform .2s, color .2s .2s, box-shadow .2s;
text-transform: capitalize;
}
.rounded-button {
border: none;
cursor: pointer;
height: 56px;
width: 56px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
text-shadow: 0 0 1px;
border-radius: 100%;
font-size: 35px;
line-height: 56px;
text-align: center;
color: #FFF;
background: #8c42ab;
font-weight: 100;
display: block;
transition: text-shadow .2s .2s, background .2s .2s, transform .2s, color .2s .2s, box-shadow .2s;
}
.rounded-button:hover { transform: scale(1.04); }
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
.blue-button:hover, input.blue-button:hover,
.red-button:hover, input.red-button:hover,
.green-button:hover, input.green-button:hover {
transform: scale(1.03);
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}
button:active, button.active,
input[type=submit]:active, input[type=submit].active,
input[type=reset]:active, input[type=reset].active,
.blue-button:active, input.blue-button:active, .blue-button.active, input.blue-button.active,
.red-button:active, input.red-button:active, .red-button.active, input.red-button.active,
.green-button:active, input.green-button:active, .green-button.active, input.green-button.active,
.rounded-button:active, .rounded-button.active {
box-shadow: none;
border-color: #000;
color: #000;
text-shadow: none;
background: #FFF;
transition: transform .2s, box-shadow .2s;
}
.rounded-button:active, .rounded-button.active { box-shadow: 0 0 10px rgba(0, 0, 0, .6); }
.blue-button, input.blue-button {
background: #367bf0;
border-color: #2656a8;
}
.red-button, input.red-button {
background: #b8174c;
border-color: #811035;
}
.green-button, input.green-button {
background: #19a187;
border-color: #12715f;
}
.paper {
font-size: 16px;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
padding: 10px 20px;
background-color: #FFF;
margin-top: 20px;
min-height: 100px;
color: #000;
}
.with-shadow {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
}
.selectable {
cursor: auto;
user-select: text;
-webkit-touch-callout: text;
-webkit-user-select: text;
-khtml-user-select: text;
-moz-user-select: text;
-ms-user-select: text;
} | 0.451085 | 0.077553 |
body {
background-color: #242424;
}
#info-panel {
font-family: 'Helvetica';
font-size: 1.5em;
}
/* GENERAL STYLES */
* {
box-sizing: border-box;
text-decoration: none;
margin: 0;
color: white;
}
/* Main Window and Panels */
#main-container {
display: flex;
width: 100%;
height: 100%;
background-color: #242424;
}
#left-panel {
width: 66%;
min-width: 800px;
display: flex;
padding: 20px 5px;
}
#right-panel {
width: 34%;
min-width: 300px;
height: 100vw;
position: fixed;
right: 0;
top: 0;
display: flex;
border-left: 1px solid grey;
padding: 20px 5px;
flex-direction: column;
}
#title-panel {
color: white;
}
#info-title {
color: white;
font-size: 1.5em;
text-align: center;
letter-spacing: 0.05em;
padding: 10px;
opacity: .8;
}
#info-panel {
display: block;
overflow-y: scroll;
flex-direction: column;
padding: 10px;
background-color: #30353e;
opacity: 0.8;
color: rgb(234, 242, 250);
border-radius: 9px;
/* border: 1px solid rgb(200, 200, 200); */
scrollbar-width: thin;
scrollbar-color: rgb(150, 150, 150) #30353e;
width: 99%;
min-width: 350px;
min-height: 200px;
max-height: 20%;
/* box-shadow: 0 0 5px #1eabd5; */
}
::-webkit-scrollbar {
width: 12px; /* for vertical scrollbars */
height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.5);
}
.component-title-bar {
font-size: 2.2em;
font-weight: bold;
text-align: center;
letter-spacing: 0.2em;
line-height: 0.5;
padding-top: 15px;
}
#state-type {
font-size: 1em;
font-weight: normal;
padding-left: 25px;
}
.component-display-name {
text-align: center;
letter-spacing: 0.2em;
font-weight: bold;
color: rgb(210, 215, 240);
}
#state {
color: #1eabd5;
}
summary {
outline: none;
}
#searchInput {
border-radius: 9px;
background-color: #30353e;
color: rgb(234, 242, 250);
opacity: 0.8;
outline: none;
border: 0px;
padding: 5px;
}
/* TREE */
#tree {
margin: auto;
overflow: visible;
padding-top: 15px;
}
.nodes {
fill: #707070;
}
.link {
stroke: #606060;
}
.node text {
font: 12px sans-serif;
fill: white;
}
.button-bar {
top: 0px;
right: 0px;
}
#center-tree,
#show-state {
/* font-size: 1.2rem; */
color: white;
font-size: 1em;
text-align: center;
letter-spacing: 0.2em;
padding: 3px;
opacity: 0.8;
}
#error-message {
color: #E06C75;
/* margin-left: 30px;
margin-top: 30px; */
margin-right: 400px;
margin-top:100px;
width: 400px;
height: 400px;
background-color: #242424;
font-size: large;
} | extension/devtools/panel/styles.css | body {
background-color: #242424;
}
#info-panel {
font-family: 'Helvetica';
font-size: 1.5em;
}
/* GENERAL STYLES */
* {
box-sizing: border-box;
text-decoration: none;
margin: 0;
color: white;
}
/* Main Window and Panels */
#main-container {
display: flex;
width: 100%;
height: 100%;
background-color: #242424;
}
#left-panel {
width: 66%;
min-width: 800px;
display: flex;
padding: 20px 5px;
}
#right-panel {
width: 34%;
min-width: 300px;
height: 100vw;
position: fixed;
right: 0;
top: 0;
display: flex;
border-left: 1px solid grey;
padding: 20px 5px;
flex-direction: column;
}
#title-panel {
color: white;
}
#info-title {
color: white;
font-size: 1.5em;
text-align: center;
letter-spacing: 0.05em;
padding: 10px;
opacity: .8;
}
#info-panel {
display: block;
overflow-y: scroll;
flex-direction: column;
padding: 10px;
background-color: #30353e;
opacity: 0.8;
color: rgb(234, 242, 250);
border-radius: 9px;
/* border: 1px solid rgb(200, 200, 200); */
scrollbar-width: thin;
scrollbar-color: rgb(150, 150, 150) #30353e;
width: 99%;
min-width: 350px;
min-height: 200px;
max-height: 20%;
/* box-shadow: 0 0 5px #1eabd5; */
}
::-webkit-scrollbar {
width: 12px; /* for vertical scrollbars */
height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.5);
}
.component-title-bar {
font-size: 2.2em;
font-weight: bold;
text-align: center;
letter-spacing: 0.2em;
line-height: 0.5;
padding-top: 15px;
}
#state-type {
font-size: 1em;
font-weight: normal;
padding-left: 25px;
}
.component-display-name {
text-align: center;
letter-spacing: 0.2em;
font-weight: bold;
color: rgb(210, 215, 240);
}
#state {
color: #1eabd5;
}
summary {
outline: none;
}
#searchInput {
border-radius: 9px;
background-color: #30353e;
color: rgb(234, 242, 250);
opacity: 0.8;
outline: none;
border: 0px;
padding: 5px;
}
/* TREE */
#tree {
margin: auto;
overflow: visible;
padding-top: 15px;
}
.nodes {
fill: #707070;
}
.link {
stroke: #606060;
}
.node text {
font: 12px sans-serif;
fill: white;
}
.button-bar {
top: 0px;
right: 0px;
}
#center-tree,
#show-state {
/* font-size: 1.2rem; */
color: white;
font-size: 1em;
text-align: center;
letter-spacing: 0.2em;
padding: 3px;
opacity: 0.8;
}
#error-message {
color: #E06C75;
/* margin-left: 30px;
margin-top: 30px; */
margin-right: 400px;
margin-top:100px;
width: 400px;
height: 400px;
background-color: #242424;
font-size: large;
} | 0.254139 | 0.066934 |
/*
* This file is part of - WebExtras
* Copyright (C) 2014 <NAME>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** GENERIC STYLING **/
input[type="checkbox"],
input[type="radio"] {
vertical-align: top;
}
.checkbox-group,
.radiobutton-group {
width: 100%;
}
.keep-center {
text-align: center !important;
}
.keep-right {
text-align: right !important;
}
.keep-left {
text-align: left !important;
}
.keep-middle {
vertical-align: middle !important;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
#actionmessage {
position: fixed;
top: 0;
right: 0.2%;
z-index: 2000;
}
.required {
color: #b94a48;
}
/** GENERIC STYLING END **/
/** GENERIC DATATABLES EXTENSIONS AND OVERRIDES **/
table.dataTable thead th {
border-bottom: 0;
}
table.dataTable thead th div.DataTables_sort_wrapper {
padding-right: 20px;
position: relative;
}
table.dataTable thead th div.DataTables_sort_wrapper span {
margin-top: -8px;
position: absolute;
right: 0;
top: 50%;
}
table.dataTable thead th .css_right {
float: right;
}
.dataTables_scrollBody {
margin-top: -3px;
background: #ffffff;
}
.dataTables_scroll {
border-left: 1px solid;
border-right: 1px solid;
}
/** GENERIC DATATABLES EXTENSIONS AND OVERRIDES END **//** BOOTSTRAP 3 EXTENSIONS AND OVERRIDES **/
.glyphicon {
margin-right: 3px;
}
[class^="icon-"],
[class*=" icon-"] {
margin-left: 0;
margin-right: 3px;
}
.navbar-brand {
font-size: 24px;
}
.text-error {
color: #b94a48;
}
/** BOOTSTRAP 3 EXTENSIONS AND OVERRIDES END **/
/** DATATABLES EXTENSIONS AND OVERRIDES **/
table.dataTable tbody tr.success td {
background-color: #DFF0D8;
}
table.dataTable tbody tr.error td,
table.dataTable tbody tr.danger td {
background-color: #F2DEDE;
}
table.dataTable tbody tr.warning td {
background-color: #FCF8E3;
}
table.dataTable tbody tr.info td {
background-color: #D9EDF7;
}
div.dataTables_info {
padding-top: 10px;
}
[class*="paging_bs"] .pagination {
margin: 5px 0;
}
/** DATATABLES EXTENSIONS AND OVERRIDES END **/ | trunk/WebExtras.DemoApp/Content/webextras.bootstrap3.css | /*
* This file is part of - WebExtras
* Copyright (C) 2014 <NAME>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/** GENERIC STYLING **/
input[type="checkbox"],
input[type="radio"] {
vertical-align: top;
}
.checkbox-group,
.radiobutton-group {
width: 100%;
}
.keep-center {
text-align: center !important;
}
.keep-right {
text-align: right !important;
}
.keep-left {
text-align: left !important;
}
.keep-middle {
vertical-align: middle !important;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
#actionmessage {
position: fixed;
top: 0;
right: 0.2%;
z-index: 2000;
}
.required {
color: #b94a48;
}
/** GENERIC STYLING END **/
/** GENERIC DATATABLES EXTENSIONS AND OVERRIDES **/
table.dataTable thead th {
border-bottom: 0;
}
table.dataTable thead th div.DataTables_sort_wrapper {
padding-right: 20px;
position: relative;
}
table.dataTable thead th div.DataTables_sort_wrapper span {
margin-top: -8px;
position: absolute;
right: 0;
top: 50%;
}
table.dataTable thead th .css_right {
float: right;
}
.dataTables_scrollBody {
margin-top: -3px;
background: #ffffff;
}
.dataTables_scroll {
border-left: 1px solid;
border-right: 1px solid;
}
/** GENERIC DATATABLES EXTENSIONS AND OVERRIDES END **//** BOOTSTRAP 3 EXTENSIONS AND OVERRIDES **/
.glyphicon {
margin-right: 3px;
}
[class^="icon-"],
[class*=" icon-"] {
margin-left: 0;
margin-right: 3px;
}
.navbar-brand {
font-size: 24px;
}
.text-error {
color: #b94a48;
}
/** BOOTSTRAP 3 EXTENSIONS AND OVERRIDES END **/
/** DATATABLES EXTENSIONS AND OVERRIDES **/
table.dataTable tbody tr.success td {
background-color: #DFF0D8;
}
table.dataTable tbody tr.error td,
table.dataTable tbody tr.danger td {
background-color: #F2DEDE;
}
table.dataTable tbody tr.warning td {
background-color: #FCF8E3;
}
table.dataTable tbody tr.info td {
background-color: #D9EDF7;
}
div.dataTables_info {
padding-top: 10px;
}
[class*="paging_bs"] .pagination {
margin: 5px 0;
}
/** DATATABLES EXTENSIONS AND OVERRIDES END **/ | 0.515132 | 0.047825 |
main {
/* border: 1px solid yellow; */
padding-top: 50px;
min-height: 100vh;
}
#galeria_apresentacao {
background-color: #ccc;
background-image: url(../img/certificados/fundo_galeria.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: 1280px 665px;
color: black;
width: 1280px;
height: 665px;
margin-top: -20px;
display: flex;
justify-content: center;
}
#galeria_apresentacao div {
width: 244px;
height: 265px;
margin-top: 64px;
border: 6px solid #000;
box-shadow: gray 3px 3px 3px;
/* background-color: black; */
/* color: #a074c4; */
color: rgba(0, 0, 100, 1);
display: flex;
justify-content: center;
align-items: center;
font-family: Monotype Corsiva;
font-size: 3.5em;
animation: galeria 3s linear alternate-reverse;
}
@keyframes galeria {
to {
color: #a074c4;
background-color: rgba(0, 0, 0, 0.5);
border-color: #fff;
box-shadow:#000 4px 4px 4px;
}
}
#galeria_apresentacao div:nth-child(2) {
margin-left: 17px;
margin-right: 17px;
}
#galeria_apresentacao p {
transform: rotate(-45deg);
}
#galeria_apresentacao div:hover {
transition: 1s;
color:#a074c4;
/* color: rgba(0, 0, 100, 1); */
/* background-color: #ccc; */
/* border-color: #000; */
box-shadow:#000 8px 8px 5px;
}
.btn_setaProximo {
/* border: 1px solid red; */
margin-top: -220px;
margin-bottom: 200px;
}
.certificados_pastas {
min-height: 500px;
}
.galeria_certificados {
max-width: 1280px;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.galeria_certificados li {
list-style: none;
border: 2px solid #fff;
width: 200px;
min-height: 120px;
margin: 20px;
display: flex;
align-items: flex-end;
}
#certificado_cursos li:hover {
background-size: 100%;
}
#certificado_treinamentos li:hover {
background-size: 100%;
}
#certificado_academicos li:hover {
background-size: 100%;
}
.certificado_esquerda:hover {
transform: translateX(100%) translateY(10%) scale(3);
transition-duration: 0.5s;
}
.certificado_centro:hover {
transform: translate(0%) translateY(30%) scale(3);
transition-duration: 0.5s;
background-size: 0%;
}
.certificado_direita:hover {
transform: translate(-100%) translateY(30%) scale(3);
transition-duration: 0.5s;
}
.galeria_certificados span {
/* border: 1px solid hotpink; */
padding: 1px;
background-color: rgba(0,0,0,.3);
}
/* Certificados dos cursos */
#certificado_01 {
background-image: url(../img/certificados/01_ce.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_02 {
background-image: url(../img/certificados/02_te.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_03 {
background-image: url(../img/certificados/03_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_04 {
background-image: url(../img/certificados/04_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_05 {
background-image: url(../img/certificados/05_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_06 {
background-image: url(../img/certificados/06_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_07 {
background-image: url(../img/certificados/07_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_08 {
background-image: url(../img/certificados/08_se.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_09 {
background-image: url(../img/certificados/09_ce.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_10 {
background-image: url(../img/certificados/10_fb.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_11 {
background-image: url(../img/certificados/11_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_12 {
background-image: url(../img/certificados/12_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_13 {
background-image: url(../img/certificados/13_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_14 {
background-image: url(../img/certificados/14_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_15 {
background-image: url(../img/certificados/15_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_16 {
background-image: url(../img/certificados/16_se.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_17 {
background-image: url(../img/certificados/17_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_18 {
background-image: url(../img/certificados/18_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_19 {
background-image: url(../img/certificados/19_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_20 {
background-image: url(../img/certificados/20_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_21 {
background-image: url(../img/certificados/21_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_22 {
background-image: url(../img/certificados/22_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_23 {
background-image: url(../img/certificados/23_lk.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_24 {
background-image: url(../img/certificados/24_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_25 {
background-image: url(../img/certificados/25_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_26 {
background-image: url(../img/certificados/26_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
/* Certificados de Eventos */
#certificado_ev01 {
background-image: url(../img/certificados/ev_01_un.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_ev02 {
background-image: url(../img/certificados/ev_02_go.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_ev03 {
background-image: url(../img/certificados/ev_03_fi.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr01 {
background-image: url(../img/certificados/tr_01_no.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr02 {
background-image: url(../img/certificados/tr_02ef.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr03 {
background-image: url(../img/certificados/tr_03ef.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
/* Certificados de Ensino Superior */
#certificado_su01 {
background-image: url(../img/certificados/su_01_un.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_su02 {
background-image: url(../img/certificados/su_02_fm.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_su03 {
background-image: url(../img/certificados/su_03_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
h3 {
margin: 50px 0px 10px 20px;
color: #a074c4;
}
div hr {
border-color: #a074c4;
margin-bottom: 60px;
} | css/estilo_galeria_certificado.css | main {
/* border: 1px solid yellow; */
padding-top: 50px;
min-height: 100vh;
}
#galeria_apresentacao {
background-color: #ccc;
background-image: url(../img/certificados/fundo_galeria.jpg);
background-position: bottom;
background-repeat: no-repeat;
background-size: 1280px 665px;
color: black;
width: 1280px;
height: 665px;
margin-top: -20px;
display: flex;
justify-content: center;
}
#galeria_apresentacao div {
width: 244px;
height: 265px;
margin-top: 64px;
border: 6px solid #000;
box-shadow: gray 3px 3px 3px;
/* background-color: black; */
/* color: #a074c4; */
color: rgba(0, 0, 100, 1);
display: flex;
justify-content: center;
align-items: center;
font-family: Monotype Corsiva;
font-size: 3.5em;
animation: galeria 3s linear alternate-reverse;
}
@keyframes galeria {
to {
color: #a074c4;
background-color: rgba(0, 0, 0, 0.5);
border-color: #fff;
box-shadow:#000 4px 4px 4px;
}
}
#galeria_apresentacao div:nth-child(2) {
margin-left: 17px;
margin-right: 17px;
}
#galeria_apresentacao p {
transform: rotate(-45deg);
}
#galeria_apresentacao div:hover {
transition: 1s;
color:#a074c4;
/* color: rgba(0, 0, 100, 1); */
/* background-color: #ccc; */
/* border-color: #000; */
box-shadow:#000 8px 8px 5px;
}
.btn_setaProximo {
/* border: 1px solid red; */
margin-top: -220px;
margin-bottom: 200px;
}
.certificados_pastas {
min-height: 500px;
}
.galeria_certificados {
max-width: 1280px;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.galeria_certificados li {
list-style: none;
border: 2px solid #fff;
width: 200px;
min-height: 120px;
margin: 20px;
display: flex;
align-items: flex-end;
}
#certificado_cursos li:hover {
background-size: 100%;
}
#certificado_treinamentos li:hover {
background-size: 100%;
}
#certificado_academicos li:hover {
background-size: 100%;
}
.certificado_esquerda:hover {
transform: translateX(100%) translateY(10%) scale(3);
transition-duration: 0.5s;
}
.certificado_centro:hover {
transform: translate(0%) translateY(30%) scale(3);
transition-duration: 0.5s;
background-size: 0%;
}
.certificado_direita:hover {
transform: translate(-100%) translateY(30%) scale(3);
transition-duration: 0.5s;
}
.galeria_certificados span {
/* border: 1px solid hotpink; */
padding: 1px;
background-color: rgba(0,0,0,.3);
}
/* Certificados dos cursos */
#certificado_01 {
background-image: url(../img/certificados/01_ce.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_02 {
background-image: url(../img/certificados/02_te.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_03 {
background-image: url(../img/certificados/03_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_04 {
background-image: url(../img/certificados/04_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_05 {
background-image: url(../img/certificados/05_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_06 {
background-image: url(../img/certificados/06_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_07 {
background-image: url(../img/certificados/07_db.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_08 {
background-image: url(../img/certificados/08_se.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_09 {
background-image: url(../img/certificados/09_ce.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_10 {
background-image: url(../img/certificados/10_fb.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_11 {
background-image: url(../img/certificados/11_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_12 {
background-image: url(../img/certificados/12_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_13 {
background-image: url(../img/certificados/13_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_14 {
background-image: url(../img/certificados/14_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_15 {
background-image: url(../img/certificados/15_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_16 {
background-image: url(../img/certificados/16_se.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_17 {
background-image: url(../img/certificados/17_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_18 {
background-image: url(../img/certificados/18_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_19 {
background-image: url(../img/certificados/19_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_20 {
background-image: url(../img/certificados/20_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_21 {
background-image: url(../img/certificados/21_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_22 {
background-image: url(../img/certificados/22_ud.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_23 {
background-image: url(../img/certificados/23_lk.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_24 {
background-image: url(../img/certificados/24_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_25 {
background-image: url(../img/certificados/25_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_26 {
background-image: url(../img/certificados/26_cv.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
/* Certificados de Eventos */
#certificado_ev01 {
background-image: url(../img/certificados/ev_01_un.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_ev02 {
background-image: url(../img/certificados/ev_02_go.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_ev03 {
background-image: url(../img/certificados/ev_03_fi.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr01 {
background-image: url(../img/certificados/tr_01_no.jpg);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr02 {
background-image: url(../img/certificados/tr_02ef.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_tr03 {
background-image: url(../img/certificados/tr_03ef.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
/* Certificados de Ensino Superior */
#certificado_su01 {
background-image: url(../img/certificados/su_01_un.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_su02 {
background-image: url(../img/certificados/su_02_fm.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
#certificado_su03 {
background-image: url(../img/certificados/su_03_im.png);
background-repeat: no-repeat;
background-size: 200%;
background-position: center;
}
h3 {
margin: 50px 0px 10px 20px;
color: #a074c4;
}
div hr {
border-color: #a074c4;
margin-bottom: 60px;
} | 0.377885 | 0.083815 |
body{
background-color: #888;
}
.box {
position: relative;
height: 500px;
width: 700px;
display: block;
margin: auto;
background: #444;
margin-top: 8%;
}
.head {
position: absolute;
background: black;
height: 60%;
width: 44%;
top: 28%;
left: 25%;
border-radius: 50%;
box-shadow: 1px -1px 22px #333;
}
.jowl-left{
position: absolute;
height: 40%;
background: #ececec;
width: 30%;
top: 63%;
left: 18%;
border-radius: 50%;
box-shadow: 2px 8px 10px black;
}
.jowl-right{
position: absolute;
height: 40%;
background: #ececec;
width: 30%;
top: 63%;
left:51%;
border-radius: 50%;
box-shadow: -2px 8px 10px black;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
}
.whisker{
background: black;
height:6px;
width: 6px;
position: absolute;
border-radius: 50%;
}
.one{
left: 68%;
top: 16%;
}
.two{
left: 63%;
top: 38%;
}
.three{
left: 45%;
top: 22%;
}
.four {
left: 48%;
top: 55%;
}
.five {
left: 75%;
top: 55%;
}
.six{
left: 58%;
top: 46%;
}
.seven{
left: 23%;
top: 38%;
}
.eight{
left: 24%;
top: 18%;
}
.nine{
left: 48%;
top: 25%;
}
.ten {
left: 16%;
top: 53%;
}
.lips {
position: absolute;
height: 18%;
background: #ffccff;
width: 30%;
top: 86%;
left: 36%;
border-radius: 50%;
box-shadow: 0 5px 5px black;
}
.tongue{
height: 95%;
background: #848484;
width: 3px;
position: absolute;
left: 45%;
border-radius:50%;
}
.nose-bridge{
position: absolute;
height: 50%;
width:16%;
border-radius: 50%;
background: #ececec;
top: 30%;
left: 43%;
}
.nose-top{
position: absolute;
height: 65%;
width: 24%;
background: #ececec;
border-radius: 50%;
left: 38.5%;
top: 5%;
}
.nose-line{
background: #a9a9a9;
height: 70%;
width: 1px;
position: absolute;
left: 48%;
top: 10%;
border-radius: 50%;
}
.nose-tip{
position: absolute;
background: black;
top: 68%;
left: 39%;
height: 18%;
width:22%;
border-bottom-left-radius: 135px;
border-radius: 50%;
box-shadow: -3px 5px 10px #888;
}
.nose-hole-right {
background:#848484;
height: 8px;
width: 12px;
border-radius: 50%;
position: absolute;
top: 80%;
left: 52%;
box-shadow: 2px 2px 10px white;
}
.nose-hole-left {
background:#848484;
height: 8px;
width: 12px;
border-radius: 50%;
position: absolute;
top: 80%;
left: 30%;
box-shadow: 2px 2px 10px white;
}
.eye {
position: absolute;
height: 20%;
width: 20%;
background: #a9a9a9;
border-radius: 50%;
top: 42%;
}
.left {
left: 14%;
}
.right{
left: 66%;
}
.pupil-left{
background: #4d4d4d;
position: absolute;
top: 43%;
left: 15%;
height: 18%;
width: 18%;
border-radius: 50%;
}
.pupil-right{
background: #4d4d4d;
position: absolute;
top: 43%;
left: 67%;
height: 18%;
width: 18%;
border-radius: 50%;
}
.cornea-right{
background: black;
position: absolute;
height: 15%;
width:15%;
top: 45%;
left: 68.5%;
border-radius: 50%;
}
.cornea-left{
background: black;
position: absolute;
height: 15%;
width:15%;
top: 45%;
left: 17%;
border-radius: 50%;
}
.pupil-light-right {
background: white;
height: 8px;
width: 8px;
border-radius: 50%;
box-shadow: -2px -2px 2px #a9a9a9;
position: absolute;
left: 74%;
top: 48%;
}
.pupil-light-left {
background: white;
height: 8px;
width: 8px;
border-radius: 50%;
box-shadow: -2px -2px 2px #a9a9a9;
position: absolute;
left: 26%;
top: 48%;
}
.ear-right{
background: black;
height: 45%;
width: 36%;
clip-path: polygon(25% 55%, 100% 5%, 73% 100%, 0% 100%);
position: absolute;
top: 1%;
left:40%;
border-radius: 30px 100px;
}
.ear-right-inner{
background: #333;
height: 32%;
width: 24%;
clip-path: polygon(25% 55%, 100% 5%, 73% 100%, 0% 100%);
position: absolute;
top: 13%;
left:45%;
border-radius: 30px;
}
.ear-left{
clip-path: polygon(0 30%, 71% 29%, 100% 100%, 30% 100%);
position: absolute;
height: 30%;
width: 30%;
background: black;
top: 10%;
left: 20%;
}
.ear-left-inner{
clip-path: polygon(0 62%, 71% 18%, 100% 100%, 18% 100%);
position: absolute;
height: 23%;
width: 15%;
background: #333;
top: 18%;
left: 29%;
}
.ear-left-secondary {
position: absolute;
height: 45%;
width: 15%;
background: black;
top: 19%;
left: 20%;
clip-path: polygon(2px 2px, 13% 58%, 100% 16%);
border-bottom: 6px solid #333;
} | src/style.css | body{
background-color: #888;
}
.box {
position: relative;
height: 500px;
width: 700px;
display: block;
margin: auto;
background: #444;
margin-top: 8%;
}
.head {
position: absolute;
background: black;
height: 60%;
width: 44%;
top: 28%;
left: 25%;
border-radius: 50%;
box-shadow: 1px -1px 22px #333;
}
.jowl-left{
position: absolute;
height: 40%;
background: #ececec;
width: 30%;
top: 63%;
left: 18%;
border-radius: 50%;
box-shadow: 2px 8px 10px black;
}
.jowl-right{
position: absolute;
height: 40%;
background: #ececec;
width: 30%;
top: 63%;
left:51%;
border-radius: 50%;
box-shadow: -2px 8px 10px black;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
}
.whisker{
background: black;
height:6px;
width: 6px;
position: absolute;
border-radius: 50%;
}
.one{
left: 68%;
top: 16%;
}
.two{
left: 63%;
top: 38%;
}
.three{
left: 45%;
top: 22%;
}
.four {
left: 48%;
top: 55%;
}
.five {
left: 75%;
top: 55%;
}
.six{
left: 58%;
top: 46%;
}
.seven{
left: 23%;
top: 38%;
}
.eight{
left: 24%;
top: 18%;
}
.nine{
left: 48%;
top: 25%;
}
.ten {
left: 16%;
top: 53%;
}
.lips {
position: absolute;
height: 18%;
background: #ffccff;
width: 30%;
top: 86%;
left: 36%;
border-radius: 50%;
box-shadow: 0 5px 5px black;
}
.tongue{
height: 95%;
background: #848484;
width: 3px;
position: absolute;
left: 45%;
border-radius:50%;
}
.nose-bridge{
position: absolute;
height: 50%;
width:16%;
border-radius: 50%;
background: #ececec;
top: 30%;
left: 43%;
}
.nose-top{
position: absolute;
height: 65%;
width: 24%;
background: #ececec;
border-radius: 50%;
left: 38.5%;
top: 5%;
}
.nose-line{
background: #a9a9a9;
height: 70%;
width: 1px;
position: absolute;
left: 48%;
top: 10%;
border-radius: 50%;
}
.nose-tip{
position: absolute;
background: black;
top: 68%;
left: 39%;
height: 18%;
width:22%;
border-bottom-left-radius: 135px;
border-radius: 50%;
box-shadow: -3px 5px 10px #888;
}
.nose-hole-right {
background:#848484;
height: 8px;
width: 12px;
border-radius: 50%;
position: absolute;
top: 80%;
left: 52%;
box-shadow: 2px 2px 10px white;
}
.nose-hole-left {
background:#848484;
height: 8px;
width: 12px;
border-radius: 50%;
position: absolute;
top: 80%;
left: 30%;
box-shadow: 2px 2px 10px white;
}
.eye {
position: absolute;
height: 20%;
width: 20%;
background: #a9a9a9;
border-radius: 50%;
top: 42%;
}
.left {
left: 14%;
}
.right{
left: 66%;
}
.pupil-left{
background: #4d4d4d;
position: absolute;
top: 43%;
left: 15%;
height: 18%;
width: 18%;
border-radius: 50%;
}
.pupil-right{
background: #4d4d4d;
position: absolute;
top: 43%;
left: 67%;
height: 18%;
width: 18%;
border-radius: 50%;
}
.cornea-right{
background: black;
position: absolute;
height: 15%;
width:15%;
top: 45%;
left: 68.5%;
border-radius: 50%;
}
.cornea-left{
background: black;
position: absolute;
height: 15%;
width:15%;
top: 45%;
left: 17%;
border-radius: 50%;
}
.pupil-light-right {
background: white;
height: 8px;
width: 8px;
border-radius: 50%;
box-shadow: -2px -2px 2px #a9a9a9;
position: absolute;
left: 74%;
top: 48%;
}
.pupil-light-left {
background: white;
height: 8px;
width: 8px;
border-radius: 50%;
box-shadow: -2px -2px 2px #a9a9a9;
position: absolute;
left: 26%;
top: 48%;
}
.ear-right{
background: black;
height: 45%;
width: 36%;
clip-path: polygon(25% 55%, 100% 5%, 73% 100%, 0% 100%);
position: absolute;
top: 1%;
left:40%;
border-radius: 30px 100px;
}
.ear-right-inner{
background: #333;
height: 32%;
width: 24%;
clip-path: polygon(25% 55%, 100% 5%, 73% 100%, 0% 100%);
position: absolute;
top: 13%;
left:45%;
border-radius: 30px;
}
.ear-left{
clip-path: polygon(0 30%, 71% 29%, 100% 100%, 30% 100%);
position: absolute;
height: 30%;
width: 30%;
background: black;
top: 10%;
left: 20%;
}
.ear-left-inner{
clip-path: polygon(0 62%, 71% 18%, 100% 100%, 18% 100%);
position: absolute;
height: 23%;
width: 15%;
background: #333;
top: 18%;
left: 29%;
}
.ear-left-secondary {
position: absolute;
height: 45%;
width: 15%;
background: black;
top: 19%;
left: 20%;
clip-path: polygon(2px 2px, 13% 58%, 100% 16%);
border-bottom: 6px solid #333;
} | 0.477067 | 0.070688 |
@font-face {
font-family: "iconfont"; /* Project id 2239779 */
src: url('iconfont.woff2?t=1650529341805') format('woff2'),
url('iconfont.woff?t=1650529341805') format('woff'),
url('iconfont.ttf?t=1650529341805') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.iconxiazai:before {
content: "\e6aa";
}
.iconqidong:before {
content: "\e6ab";
}
.iconzanting:before {
content: "\e6ac";
}
.iconjava:before {
content: "\e6a8";
}
.iconpython:before {
content: "\e6a9";
}
.icongolang:before {
content: "\e6a6";
}
.iconphp:before {
content: "\e6a7";
}
.iconneicun:before {
content: "\e6a3";
}
.iconGPU:before {
content: "\e6a4";
}
.iconCPU:before {
content: "\e6a5";
}
.iconchaxun:before {
content: "\e6a2";
}
.iconnotice1:before {
content: "\e6a0";
}
.iconxitongset:before {
content: "\e6a1";
}
.iconset:before {
content: "\e69f";
}
.iconbacktop:before {
content: "\e69c";
}
.iconwudianliu:before {
content: "\e69e";
}
.iconadd:before {
content: "\e673";
}
.iconmiuns:before {
content: "\e675";
}
.iconquanping:before {
content: "\e698";
}
.iconquxiaquanping:before {
content: "\e699";
}
.iconlianku:before {
content: "\e69a";
}
.iconlist:before {
content: "\e69b";
}
.iconnotice:before {
content: "\e631";
}
.iconyonghu:before {
content: "\e61d";
}
.iconxiangmu:before {
content: "\e61a";
}
.icontanzhen:before {
content: "\e61c";
}
.iconloudong1:before {
content: "\e61b";
}
.icongears:before {
content: "\e751";
}
.iconzhongzhimima:before {
content: "\e60a";
}
.iconicon_details_edit:before {
content: "\e607";
}
.iconicon_details_banben:before {
content: "\e608";
}
.iconicon_yingyong_zhuagntai:before {
content: "\e606";
}
.iconicon_yingyong_table:before {
content: "\e605";
}
.icongerenzhongxin:before {
content: "\e600";
}
.iconxiazai-3:before {
content: "\e697";
}
.iconopen1-2:before {
content: "\e696";
}
.iconzengjia-2:before {
content: "\e694";
}
.iconxuanzhong-5:before {
content: "\e695";
}
.iconshuju1:before {
content: "\e692";
}
.iconloudong:before {
content: "\e693";
}
.iconxinzengyonghu:before {
content: "\e690";
}
.iconchaolianjie:before {
content: "\e691";
}
.iconshijian00:before {
content: "\e68f";
}
.iconjiance-copy:before {
content: "\e831";
}
.iconshezhi-2:before {
content: "\e68e";
}
.icon7-7xiaochugeshi:before {
content: "\e68c";
}
.iconshengji:before {
content: "\e68d";
}
.iconopen11:before {
content: "\e68b";
}
.iconopen1:before {
content: "\e68a";
}
.iconxinzengxiangmu-3:before {
content: "\e689";
}
.iconjy_weixian:before {
content: "\e684";
}
.iconlishi:before {
content: "\e685";
}
.iconbanben-3:before {
content: "\e686";
}
.iconapp:before {
content: "\e687";
}
.iconwendangzhongxin:before {
content: "\e688";
}
.iconproject:before {
content: "\e681";
}
.iconzhongjianjian:before {
content: "\e682";
}
.iconfuwuqi-3:before {
content: "\e683";
}
.iconIp:before {
content: "\e67c";
}
.iconyuyan-2:before {
content: "\e67d";
}
.iconshijian-3:before {
content: "\e67e";
}
.iconweixian-2:before {
content: "\e67f";
}
.iconcishu-2:before {
content: "\e680";
}
.icondaochu-5:before {
content: "\e67b";
}
.iconshanchu-6:before {
content: "\e676";
}
.iconxiangqing:before {
content: "\e674";
}
.icontomcat:before {
content: "\e69d";
}
.iconJetty:before {
content: "\e622";
}
.iconresin:before {
content: "\e623";
}
.iconwebLogic:before {
content: "\e73a";
}
.iconwebSphere:before {
content: "\e73b";
}
.iconJBoss:before {
content: "\e76d";
}
.iconbianji-6:before {
content: "\e679";
}
.iconbianji-5:before {
content: "\e67a";
}
.iconxiazai-2:before {
content: "\e677";
}
.iconshanchu-4:before {
content: "\e678";
}
.iconyuandianzhong:before {
content: "\e830";
}
.iconshijian-2:before {
content: "\e66d";
}
.iconweixian:before {
content: "\e66e";
}
.iconyingyong:before {
content: "\e66f";
}
.iconbanben-2:before {
content: "\e670";
} | src/styles/iconfont/iconfont.css | @font-face {
font-family: "iconfont"; /* Project id 2239779 */
src: url('iconfont.woff2?t=1650529341805') format('woff2'),
url('iconfont.woff?t=1650529341805') format('woff'),
url('iconfont.ttf?t=1650529341805') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.iconxiazai:before {
content: "\e6aa";
}
.iconqidong:before {
content: "\e6ab";
}
.iconzanting:before {
content: "\e6ac";
}
.iconjava:before {
content: "\e6a8";
}
.iconpython:before {
content: "\e6a9";
}
.icongolang:before {
content: "\e6a6";
}
.iconphp:before {
content: "\e6a7";
}
.iconneicun:before {
content: "\e6a3";
}
.iconGPU:before {
content: "\e6a4";
}
.iconCPU:before {
content: "\e6a5";
}
.iconchaxun:before {
content: "\e6a2";
}
.iconnotice1:before {
content: "\e6a0";
}
.iconxitongset:before {
content: "\e6a1";
}
.iconset:before {
content: "\e69f";
}
.iconbacktop:before {
content: "\e69c";
}
.iconwudianliu:before {
content: "\e69e";
}
.iconadd:before {
content: "\e673";
}
.iconmiuns:before {
content: "\e675";
}
.iconquanping:before {
content: "\e698";
}
.iconquxiaquanping:before {
content: "\e699";
}
.iconlianku:before {
content: "\e69a";
}
.iconlist:before {
content: "\e69b";
}
.iconnotice:before {
content: "\e631";
}
.iconyonghu:before {
content: "\e61d";
}
.iconxiangmu:before {
content: "\e61a";
}
.icontanzhen:before {
content: "\e61c";
}
.iconloudong1:before {
content: "\e61b";
}
.icongears:before {
content: "\e751";
}
.iconzhongzhimima:before {
content: "\e60a";
}
.iconicon_details_edit:before {
content: "\e607";
}
.iconicon_details_banben:before {
content: "\e608";
}
.iconicon_yingyong_zhuagntai:before {
content: "\e606";
}
.iconicon_yingyong_table:before {
content: "\e605";
}
.icongerenzhongxin:before {
content: "\e600";
}
.iconxiazai-3:before {
content: "\e697";
}
.iconopen1-2:before {
content: "\e696";
}
.iconzengjia-2:before {
content: "\e694";
}
.iconxuanzhong-5:before {
content: "\e695";
}
.iconshuju1:before {
content: "\e692";
}
.iconloudong:before {
content: "\e693";
}
.iconxinzengyonghu:before {
content: "\e690";
}
.iconchaolianjie:before {
content: "\e691";
}
.iconshijian00:before {
content: "\e68f";
}
.iconjiance-copy:before {
content: "\e831";
}
.iconshezhi-2:before {
content: "\e68e";
}
.icon7-7xiaochugeshi:before {
content: "\e68c";
}
.iconshengji:before {
content: "\e68d";
}
.iconopen11:before {
content: "\e68b";
}
.iconopen1:before {
content: "\e68a";
}
.iconxinzengxiangmu-3:before {
content: "\e689";
}
.iconjy_weixian:before {
content: "\e684";
}
.iconlishi:before {
content: "\e685";
}
.iconbanben-3:before {
content: "\e686";
}
.iconapp:before {
content: "\e687";
}
.iconwendangzhongxin:before {
content: "\e688";
}
.iconproject:before {
content: "\e681";
}
.iconzhongjianjian:before {
content: "\e682";
}
.iconfuwuqi-3:before {
content: "\e683";
}
.iconIp:before {
content: "\e67c";
}
.iconyuyan-2:before {
content: "\e67d";
}
.iconshijian-3:before {
content: "\e67e";
}
.iconweixian-2:before {
content: "\e67f";
}
.iconcishu-2:before {
content: "\e680";
}
.icondaochu-5:before {
content: "\e67b";
}
.iconshanchu-6:before {
content: "\e676";
}
.iconxiangqing:before {
content: "\e674";
}
.icontomcat:before {
content: "\e69d";
}
.iconJetty:before {
content: "\e622";
}
.iconresin:before {
content: "\e623";
}
.iconwebLogic:before {
content: "\e73a";
}
.iconwebSphere:before {
content: "\e73b";
}
.iconJBoss:before {
content: "\e76d";
}
.iconbianji-6:before {
content: "\e679";
}
.iconbianji-5:before {
content: "\e67a";
}
.iconxiazai-2:before {
content: "\e677";
}
.iconshanchu-4:before {
content: "\e678";
}
.iconyuandianzhong:before {
content: "\e830";
}
.iconshijian-2:before {
content: "\e66d";
}
.iconweixian:before {
content: "\e66e";
}
.iconyingyong:before {
content: "\e66f";
}
.iconbanben-2:before {
content: "\e670";
} | 0.329715 | 0.12665 |
[SASS DIRECTORY ]
[1] Minxin Link
[2] Minxin Buton
[3] Minxin Triangle
==============================================*/
.no-margin {
margin: 0 !important; }
.marginbottom__3x {
margin-bottom: 30px; }
@-webkit-keyframes animLoadedLogo {
to {
-webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1); } }
@keyframes animLoadedLogo {
to {
-webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1); } }
@-webkit-keyframes animLoadedLoader {
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }
@keyframes animLoadedLoader {
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }
@-webkit-keyframes animLoadedHeader {
to {
-webkit-transform: translate3d(0, -100%, 0); } }
@keyframes animLoadedHeader {
to {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0); } }
@-webkit-keyframes animInitialHeader {
from {
opacity: 0;
-webkit-transform: translate3d(0, 800px, 0); } }
@keyframes animInitialHeader {
from {
opacity: 0;
-webkit-transform: translate3d(0, 800px, 0);
transform: translate3d(0, 800px, 0); } }
/**************************************************************
BLOCK HEADER
**************************************************************/
#header {
background: url(../img/theme/background/bg-1.jpg) no-repeat; }
#header .header-top {
font-size: 12px;
height: 40px;
line-height: 40px;
background: none; }
#header .header-top .header-top-left {
padding: 0;
float: left; }
#header .header-top .header-top-left .dropdown-toggle {
padding: 0 20px;
height: 40px;
line-height: 40px !important; }
#header .header-top .header-top-left ul {
border: none;
background: #fff; }
#header .header-top .header-top-left ul li a {
padding-top: 5px; }
#header .header-top .header-top-left ul li:hover {
color: #fff; }
#header .header-top .header-top-left .currencies-block {
border: none;
position: relative; }
#header .header-top .header-top-left .currencies-block:after {
content: "";
height: 13px;
width: 1px;
background: #cccccc;
position: absolute;
right: 0;
top: 50%;
margin-top: -6px; }
#header .header-top .header-top-left .languages-block {
border: none; }
#header .header-top .header-top-left .form-group a {
line-height: 16px;
border: none; }
#header .header-top .header-top-left .form-group form > a {
color: #cdcdcd; }
#header .header-top .header-top-right {
float: right; }
#header .header-top .header-top-right #TabBlock-1 {
float: right;
margin: 0; }
#header .header-top .header-top-right #TabBlock-1 li {
padding: 0 17px;
position: relative; }
#header .header-top .header-top-right #TabBlock-1 li:after {
content: "";
height: 13px;
width: 1px;
background: #cccccc;
position: absolute;
right: 0;
top: 50%;
margin-top: -6px; }
#header .header-top .header-top-right #TabBlock-1 li:last-child {
border-right: none;
padding-right: 0; }
#header .header-top .header-top-right #TabBlock-1 li:last-child:after {
background: none; }
#header .header-top .header-top-right #TabBlock-1 li a {
color: #cdcdcd; }
#header .header-top .header-top-right #TabBlock-1 .top-link {
margin: 0; }
#header .header-center {
padding: 100px 0; }
#header .header-center .navbar-logo {
padding-bottom: 30px;
text-align: center; }
#header .header-center .search input {
width: 78.95%;
height: 45px;
border: none;
display: inline-block;
float: left; }
#header .header-center .search button {
width: 21.05%;
height: 45px;
border: none;
display: inline-block;
float: left;
text-transform: uppercase;
font-weight: 700; }
#header .header-center .megamenu-hori {
display: flex;
justify-content: center; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu {
left: -50%; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu .content {
width: 850px; }
#header .header-center .megamenu-hori ul.megamenu li.menu-page .sub-menu {
left: 0; }
#header .header-center .megamenu-hori ul.megamenu li.menu-page .sub-menu .content {
width: 450px; }
@media (max-width: 991px) {
#header .header-center {
padding: 50px 0; }
#header .header-center .search input {
width: 70%; }
#header .header-center .search button {
width: 30%; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu {
left: auto; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu .content {
width: auto; } }
/*# sourceMappingURL=header10.css.map */ | public/assets/front/css/header10.css | [SASS DIRECTORY ]
[1] Minxin Link
[2] Minxin Buton
[3] Minxin Triangle
==============================================*/
.no-margin {
margin: 0 !important; }
.marginbottom__3x {
margin-bottom: 30px; }
@-webkit-keyframes animLoadedLogo {
to {
-webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1); } }
@keyframes animLoadedLogo {
to {
-webkit-transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1);
transform: translate3d(0, 100%, 0) translate3d(0, 50px, 0) scale3d(0.65, 0.65, 1); } }
@-webkit-keyframes animLoadedLoader {
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }
@keyframes animLoadedLoader {
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1);
transform: translate3d(0, -100%, 0) scale3d(0.3, 0.3, 1); } }
@-webkit-keyframes animLoadedHeader {
to {
-webkit-transform: translate3d(0, -100%, 0); } }
@keyframes animLoadedHeader {
to {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0); } }
@-webkit-keyframes animInitialHeader {
from {
opacity: 0;
-webkit-transform: translate3d(0, 800px, 0); } }
@keyframes animInitialHeader {
from {
opacity: 0;
-webkit-transform: translate3d(0, 800px, 0);
transform: translate3d(0, 800px, 0); } }
/**************************************************************
BLOCK HEADER
**************************************************************/
#header {
background: url(../img/theme/background/bg-1.jpg) no-repeat; }
#header .header-top {
font-size: 12px;
height: 40px;
line-height: 40px;
background: none; }
#header .header-top .header-top-left {
padding: 0;
float: left; }
#header .header-top .header-top-left .dropdown-toggle {
padding: 0 20px;
height: 40px;
line-height: 40px !important; }
#header .header-top .header-top-left ul {
border: none;
background: #fff; }
#header .header-top .header-top-left ul li a {
padding-top: 5px; }
#header .header-top .header-top-left ul li:hover {
color: #fff; }
#header .header-top .header-top-left .currencies-block {
border: none;
position: relative; }
#header .header-top .header-top-left .currencies-block:after {
content: "";
height: 13px;
width: 1px;
background: #cccccc;
position: absolute;
right: 0;
top: 50%;
margin-top: -6px; }
#header .header-top .header-top-left .languages-block {
border: none; }
#header .header-top .header-top-left .form-group a {
line-height: 16px;
border: none; }
#header .header-top .header-top-left .form-group form > a {
color: #cdcdcd; }
#header .header-top .header-top-right {
float: right; }
#header .header-top .header-top-right #TabBlock-1 {
float: right;
margin: 0; }
#header .header-top .header-top-right #TabBlock-1 li {
padding: 0 17px;
position: relative; }
#header .header-top .header-top-right #TabBlock-1 li:after {
content: "";
height: 13px;
width: 1px;
background: #cccccc;
position: absolute;
right: 0;
top: 50%;
margin-top: -6px; }
#header .header-top .header-top-right #TabBlock-1 li:last-child {
border-right: none;
padding-right: 0; }
#header .header-top .header-top-right #TabBlock-1 li:last-child:after {
background: none; }
#header .header-top .header-top-right #TabBlock-1 li a {
color: #cdcdcd; }
#header .header-top .header-top-right #TabBlock-1 .top-link {
margin: 0; }
#header .header-center {
padding: 100px 0; }
#header .header-center .navbar-logo {
padding-bottom: 30px;
text-align: center; }
#header .header-center .search input {
width: 78.95%;
height: 45px;
border: none;
display: inline-block;
float: left; }
#header .header-center .search button {
width: 21.05%;
height: 45px;
border: none;
display: inline-block;
float: left;
text-transform: uppercase;
font-weight: 700; }
#header .header-center .megamenu-hori {
display: flex;
justify-content: center; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu {
left: -50%; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu .content {
width: 850px; }
#header .header-center .megamenu-hori ul.megamenu li.menu-page .sub-menu {
left: 0; }
#header .header-center .megamenu-hori ul.megamenu li.menu-page .sub-menu .content {
width: 450px; }
@media (max-width: 991px) {
#header .header-center {
padding: 50px 0; }
#header .header-center .search input {
width: 70%; }
#header .header-center .search button {
width: 30%; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu {
left: auto; }
#header .header-center .megamenu-hori ul.megamenu li .sub-menu .content {
width: auto; } }
/*# sourceMappingURL=header10.css.map */ | 0.321993 | 0.074534 |
*,
*:before,
*:after {
box-sizing: border-box;
}
.container {
margin: 0px auto;
max-width: 700px;
padding: 0 0px;
}
.podcast {
border-radius: 4px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
margin: 2px auto;
max-width: 700px;
overflow: hidden;
border-style: hidden;
}
.podcast__title, .podcast__desc {
margin: 15px 0 5px 0;
}
.podcast__desc, .podcast__date {
margin: 0;
}
.podcast__desc {
font-size: 16px;
margin-bottom: 15px;
}
.podcast__date {
color: #89abe3;
font-size: 14px;
margin-bottom: 5px;
visibility: hidden;
}
.podcast__cover {
background-size: cover;
background-position: center;
overflow: hidden;
position: relative;
width: 200px;
}
.podcast__cover:before {
content: "";
display: block;
padding-bottom: 100%;
}
.podcast__cover:hover .volume {
opacity: 1;
top: 0;
}
.podcast__cover, .podcast__meta {
float: left;
}
.podcast__meta {
width: 0px;
border-bottom: 0px solid #f3d178;
max-height: 200px;
min-height: 200px;
padding: 0 20px;
position: relative;
/*
width: calc(100% - 200px);
*/
}
.podcast__control {
background-color: rgba(0, 0, 0, 0.3);
background-position: center;
background-repeat: no-repeat;
background-size: 55px;
cursor: pointer;
height: 100%;
left: 0;
position: absolute;
top: 0;
-webkit-transition: background-size 0.1s ease-in-out;
transition: background-size 0.1s ease-in-out;
width: 100%;
will-change: background-size;
}
.podcast__control:hover {
background-size: 60px;
}
.podcast__play {
background-image: url(../svg/play.svg);
}
.podcast__pause {
background-image: url(../svg/pause.svg);
}
.podcast__time {
bottom: 0;
color: #fff;
font-size: 14px;
position: absolute;
width: 100%;
}
/*
.podcast__visual {
border-radius: 4px;
height: 100%;
left: 0;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
-webkit-transition: left 0.25s ease-in-out, opacity 0.5s ease-in-out;
transition: left 0.25s ease-in-out, opacity 0.5s ease-in-out;
visibility: hidden;
will-change: left;
width: 100%;
}
*/
.podcast__visual:after {
background-color: #000;
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0.3;
position: absolute;
top: 0;
width: 100%;
visibility: hidden;
}
.podcast__visual canvas {
bottom: 0;
height: 100%;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
width: 100%;
visibility: hidden;
}
.podcast__visual--loaded {
opacity: 1;
visibility: visible;
visibility: hidden;
}
.podcast__text {
position: relative;
z-index: 2;
}
.podcast--loading .podcast__meta:before {
/*
-webkit-animation: opacityAnim 0.7s infinite alternate;
animation: opacityAnim 0.7s infinite alternate;
*/
background-color: #fff;
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 0%;
}
.volume {
cursor: pointer;
left: 0;
margin: 0 auto;
opacity: 0;
padding: 20px 0;
position: absolute;
right: 0;
top: -5px;
-webkit-transition: opacity 0.3s ease-in-out, top 0.2s ease-in-out;
transition: opacity 0.3s ease-in-out, top 0.2s ease-in-out;
width: 80%;
will-change: transform;
z-index: 2;
}
.volume-full {
background: #fff;
cursor: pointer;
height: 1px;
left: 0;
margin: 20px auto;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.volume-line {
background: #89abe3;
height: 12px;
left: 50%;
position: absolute;
top: 0;
margin: 14px 0;
width: 2px;
}
.time__current, .time__full {
cursor: default;
margin: 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.time__current {
float: left;
}
.time__full {
float: right;
}
.time__line {
background: #fff;
bottom: 0;
cursor: pointer;
height: 6px;
position: absolute;
width: 100%;
}
.line__current {
height: 6px;
position: absolute;
width: 0%;
background: #e74c3c;
}
.visual__progress {
background: #000;
height: 100%;
opacity: 0.25;
position: absolute;
top: 0;
left: 0;
visibility: hidden;
}
@media screen and (max-width: 700px) {
.podcast__cover, .podcast__meta {
max-height: none;
width: 0%;
}
}
@-webkit-keyframes opacityAnim {
from {
opacity: 0;
}
to {
opacity: 0.2;
}
}
@keyframes opacityAnim {
from {
opacity: 0;
}
to {
opacity: 0.2;
}
}
.title {
text-align: center;
}
.title h1 {
margin: 10px;
}
.title * {
vertical-align: middle;
}
.title a:hover img {
-webkit-animation: link 0.5s;
animation: link 0.5s;
}
.title a img {
width: 18px;
}
@-webkit-keyframes link {
25% {
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
}
@keyframes link {
25% {
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
} | css/player.css | *,
*:before,
*:after {
box-sizing: border-box;
}
.container {
margin: 0px auto;
max-width: 700px;
padding: 0 0px;
}
.podcast {
border-radius: 4px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
margin: 2px auto;
max-width: 700px;
overflow: hidden;
border-style: hidden;
}
.podcast__title, .podcast__desc {
margin: 15px 0 5px 0;
}
.podcast__desc, .podcast__date {
margin: 0;
}
.podcast__desc {
font-size: 16px;
margin-bottom: 15px;
}
.podcast__date {
color: #89abe3;
font-size: 14px;
margin-bottom: 5px;
visibility: hidden;
}
.podcast__cover {
background-size: cover;
background-position: center;
overflow: hidden;
position: relative;
width: 200px;
}
.podcast__cover:before {
content: "";
display: block;
padding-bottom: 100%;
}
.podcast__cover:hover .volume {
opacity: 1;
top: 0;
}
.podcast__cover, .podcast__meta {
float: left;
}
.podcast__meta {
width: 0px;
border-bottom: 0px solid #f3d178;
max-height: 200px;
min-height: 200px;
padding: 0 20px;
position: relative;
/*
width: calc(100% - 200px);
*/
}
.podcast__control {
background-color: rgba(0, 0, 0, 0.3);
background-position: center;
background-repeat: no-repeat;
background-size: 55px;
cursor: pointer;
height: 100%;
left: 0;
position: absolute;
top: 0;
-webkit-transition: background-size 0.1s ease-in-out;
transition: background-size 0.1s ease-in-out;
width: 100%;
will-change: background-size;
}
.podcast__control:hover {
background-size: 60px;
}
.podcast__play {
background-image: url(../svg/play.svg);
}
.podcast__pause {
background-image: url(../svg/pause.svg);
}
.podcast__time {
bottom: 0;
color: #fff;
font-size: 14px;
position: absolute;
width: 100%;
}
/*
.podcast__visual {
border-radius: 4px;
height: 100%;
left: 0;
opacity: 0;
overflow: hidden;
position: absolute;
top: 0;
-webkit-transition: left 0.25s ease-in-out, opacity 0.5s ease-in-out;
transition: left 0.25s ease-in-out, opacity 0.5s ease-in-out;
visibility: hidden;
will-change: left;
width: 100%;
}
*/
.podcast__visual:after {
background-color: #000;
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0.3;
position: absolute;
top: 0;
width: 100%;
visibility: hidden;
}
.podcast__visual canvas {
bottom: 0;
height: 100%;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
width: 100%;
visibility: hidden;
}
.podcast__visual--loaded {
opacity: 1;
visibility: visible;
visibility: hidden;
}
.podcast__text {
position: relative;
z-index: 2;
}
.podcast--loading .podcast__meta:before {
/*
-webkit-animation: opacityAnim 0.7s infinite alternate;
animation: opacityAnim 0.7s infinite alternate;
*/
background-color: #fff;
content: "";
display: block;
height: 100%;
left: 0;
opacity: 0;
position: absolute;
top: 0;
width: 0%;
}
.volume {
cursor: pointer;
left: 0;
margin: 0 auto;
opacity: 0;
padding: 20px 0;
position: absolute;
right: 0;
top: -5px;
-webkit-transition: opacity 0.3s ease-in-out, top 0.2s ease-in-out;
transition: opacity 0.3s ease-in-out, top 0.2s ease-in-out;
width: 80%;
will-change: transform;
z-index: 2;
}
.volume-full {
background: #fff;
cursor: pointer;
height: 1px;
left: 0;
margin: 20px auto;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
.volume-line {
background: #89abe3;
height: 12px;
left: 50%;
position: absolute;
top: 0;
margin: 14px 0;
width: 2px;
}
.time__current, .time__full {
cursor: default;
margin: 10px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.time__current {
float: left;
}
.time__full {
float: right;
}
.time__line {
background: #fff;
bottom: 0;
cursor: pointer;
height: 6px;
position: absolute;
width: 100%;
}
.line__current {
height: 6px;
position: absolute;
width: 0%;
background: #e74c3c;
}
.visual__progress {
background: #000;
height: 100%;
opacity: 0.25;
position: absolute;
top: 0;
left: 0;
visibility: hidden;
}
@media screen and (max-width: 700px) {
.podcast__cover, .podcast__meta {
max-height: none;
width: 0%;
}
}
@-webkit-keyframes opacityAnim {
from {
opacity: 0;
}
to {
opacity: 0.2;
}
}
@keyframes opacityAnim {
from {
opacity: 0;
}
to {
opacity: 0.2;
}
}
.title {
text-align: center;
}
.title h1 {
margin: 10px;
}
.title * {
vertical-align: middle;
}
.title a:hover img {
-webkit-animation: link 0.5s;
animation: link 0.5s;
}
.title a img {
width: 18px;
}
@-webkit-keyframes link {
25% {
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
}
@keyframes link {
25% {
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
} | 0.412885 | 0.094929 |
/* Optional: embed custom fonts here with @import url('https://fonts.googleapis.com/css2?family=Montserrat'); */
/* This must remain at the top of this file. */
/*
Hacklab Foundation colors:
from the hackathon:
1) violet: #610b70
2) green: #88b101
3) pink: #eb1c96
4) orange: #e98403
5) dark_grey: #454545
from the website:
- ligth_grey, text color: #777777
- pink buttons and URL: #D4145A
- titles: #222222
*/
html {
/*-- Definition of some "variables" --*/
/*-- Main font sizes --*/
--title-size: 4vw;
--body-size: 1.3vw; /* 1vw is 1% of the viewport width*/
--code-size: 14px;
--aside-size: 12px;
--fig-cap-size: 13px;
/*-- Main font colors --*/
--title-color: #610b70; /* violet */
--header-color: #222222; /* very dark grey, almost black*/
--body-color: #777777; /* ligth_grey -> darker?*/
--aside-color: rgba(0, 0, 0, 0.6);
--fig-cap-color: rgba(0, 0, 0, 0.6);
/*-- Specify custom fonts ~~~ must be imported above --*/
--heading-font: "Gotham", sans-serif;
--mono-font: "Gotham", monospace;
--body-font: "Gotham", sans-serif;
}
/* this is for everything, the whole report */
body {
font-family: Gotham;
}
/*-- ARTICLE METADATA --*/
d-byline {
--heading-size: 0.6rem;
--heading-color: rgba(0, 0, 0, 0.5);
--body-size: 0.8rem;
--body-color: rgba(0, 0, 0, 0.8);
}
/*-- ARTICLE TABLE OF CONTENTS --*/
.d-contents {
--heading-size: 2vw;
--contents-size: 1.5vw;
}
/*
#TOC::before {
content: "";
display: block;
height: 400px;
margin: 2em 20px 40px 20px;
background-image: url("Hackathon_Startpage.png");
background-size: contain;
background-position: top;
background-repeat: no-repeat;
}
#toc_container {
background: #CEFFCE;
border: 1px solid #006400;
display: table;
font-size: 200%;
margin-bottom: 1em;
padding: 25px;
width: 100%;
}
*/
/*-- ARTICLE APPENDIX --*/
d-appendix {
--heading-size: 15px;
--heading-color: rgba(0, 0, 0, 0.65);
--text-size: 0.8em;
--text-color: rgba(0, 0, 0, 0.5);
}
/*-- Additional custom styles --*/
/* Add any additional CSS rules below */
/* size of the headers */
h1 { /* Header 1 , this works.*/
font-size: 2vw;
color: color: #eb1c96; /* --header-color; */
}
#header1 {
color: red;
}
h2 { /* Header 2 */
font-size: 1.7vw;
color: --header-color;
}
h3 { /* Header 3 -> not working? */
font-size: 18px;
}
/* the table of contents */
tocify {
color: #eb1c96;
}
TOC {
color: #eb1c96;
} | Legacy_code/CSS Theme Exploration/Designing the Theme/css_theme/theme.css | /* Optional: embed custom fonts here with @import url('https://fonts.googleapis.com/css2?family=Montserrat'); */
/* This must remain at the top of this file. */
/*
Hacklab Foundation colors:
from the hackathon:
1) violet: #610b70
2) green: #88b101
3) pink: #eb1c96
4) orange: #e98403
5) dark_grey: #454545
from the website:
- ligth_grey, text color: #777777
- pink buttons and URL: #D4145A
- titles: #222222
*/
html {
/*-- Definition of some "variables" --*/
/*-- Main font sizes --*/
--title-size: 4vw;
--body-size: 1.3vw; /* 1vw is 1% of the viewport width*/
--code-size: 14px;
--aside-size: 12px;
--fig-cap-size: 13px;
/*-- Main font colors --*/
--title-color: #610b70; /* violet */
--header-color: #222222; /* very dark grey, almost black*/
--body-color: #777777; /* ligth_grey -> darker?*/
--aside-color: rgba(0, 0, 0, 0.6);
--fig-cap-color: rgba(0, 0, 0, 0.6);
/*-- Specify custom fonts ~~~ must be imported above --*/
--heading-font: "Gotham", sans-serif;
--mono-font: "Gotham", monospace;
--body-font: "Gotham", sans-serif;
}
/* this is for everything, the whole report */
body {
font-family: Gotham;
}
/*-- ARTICLE METADATA --*/
d-byline {
--heading-size: 0.6rem;
--heading-color: rgba(0, 0, 0, 0.5);
--body-size: 0.8rem;
--body-color: rgba(0, 0, 0, 0.8);
}
/*-- ARTICLE TABLE OF CONTENTS --*/
.d-contents {
--heading-size: 2vw;
--contents-size: 1.5vw;
}
/*
#TOC::before {
content: "";
display: block;
height: 400px;
margin: 2em 20px 40px 20px;
background-image: url("Hackathon_Startpage.png");
background-size: contain;
background-position: top;
background-repeat: no-repeat;
}
#toc_container {
background: #CEFFCE;
border: 1px solid #006400;
display: table;
font-size: 200%;
margin-bottom: 1em;
padding: 25px;
width: 100%;
}
*/
/*-- ARTICLE APPENDIX --*/
d-appendix {
--heading-size: 15px;
--heading-color: rgba(0, 0, 0, 0.65);
--text-size: 0.8em;
--text-color: rgba(0, 0, 0, 0.5);
}
/*-- Additional custom styles --*/
/* Add any additional CSS rules below */
/* size of the headers */
h1 { /* Header 1 , this works.*/
font-size: 2vw;
color: color: #eb1c96; /* --header-color; */
}
#header1 {
color: red;
}
h2 { /* Header 2 */
font-size: 1.7vw;
color: --header-color;
}
h3 { /* Header 3 -> not working? */
font-size: 18px;
}
/* the table of contents */
tocify {
color: #eb1c96;
}
TOC {
color: #eb1c96;
} | 0.489992 | 0.088229 |
@import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
margin: 0;
padding: 0;
}
body, html {
height: 100%;
width: 100%;
font-size: 20px;
overflow: hidden;
font-family: 'Montserrat', sans-serif;
}
#admin-nav {
height: 100%;
/*
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 4%;
*/
margin: 0;
padding: 0;
width: 4%;
height: 100%; /* Full height */
position: fixed;
overflow: auto;
text-align: center;
background: #dedddc;
/*
background: #a23485;
text-align: center;
overflow: hidden;*/
}
#admin-nav ul{
width: 100%;
height: 100%; /* Full height */
}
/*
#admin-nav:hover{
width: 15%;
text-align: left;
}
*/
#admin-nav ul li{
list-style-type: none;
font-size: 1em;
padding: 10% 2%;
width: 100%;
color: #0a5271;
}
#admin-nav ul li:hover{
background: #a267de;
cursor: pointer;
}
.menu-icon, .menu-item {
height: 100%;
vertical-align: middle;
display: inline-block;
padding: 2% 3%;
}
.menu-icon {
font-size: 1.5em;
}
.menu-item {
font-size: 1em;
display: none;
}
/*
#admin-nav:hover .menu-item {
display: inline;
}
*/
#admin-content {
position: relative;
height: 100%;
width: 85%;
margin-left:10%;
text-align: center;
}
#countries-list {
display: inline-block;
height: 100%;
width: 100%;
background: #ffffff;
text-align: center;
overflow: hidden;
}
.admin-row {
box-sizing: border-box;
width: 24%;
height: 100%;
background: #FFFFFF;
display: inline-block;
vertical-align: middle;
}
.country-title h2 {
text-transform: uppercase;
text-shadow: 2px 2px 4px #000000;
font-size: 1em;
}
img {
width: 150px;
height: 100px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: 2%;
}
.actions {
padding: 2%;
}
.icon {
text-decoration: none;
color: #a8a8a8;
padding: 2%;
font-size: 0.7em;
}
.icon:hover {
color: #a895d1;
}
@media screen and (max-width: 1000px) {
#countries-list {
width: 100%;
}
.admin-row {
width:40%;
margin: 2% 1%;
}
.country-title h2 {
font-size: 1em;
}
}
@media screen and (max-width: 400px) {
#countries-list {
width: 100%;
}
.admin-row {
width:80%;
}
.country-title h2 {
font-size: 1.2em;
}
}
#country-container {
width: 50%;
height: 50%;
margin: 0 auto;
background-color: #FFFFFF;
}
.data h1 {
text-align: center;
text-transform: uppercase;
}
.data.title {
text-align: center;
}
.data {
width: 80%;
margin: 0 auto;
padding: 1% 0;
}
.data-half{
width: 45%;
display: inline-block;
text-align: center;
}
.data-half input{
width: 100%;
padding: 10% 5% !important;
}
.right {
text-align: center;
float: right;
}
label {
display: block;
font-weight: bold;
margin: 1% auto;
}
input {
width: 100%;
height: 30px;
background-color: #F1F1F1;
font-size: 1.3em;
padding: 4% 2%;
border: none;
}
div.error-important {
background-color: #E85F55;
color: #ffffff;
padding: 2%;
}
#buttons {
text-align: center;
font-weight: bold;
padding-top: 2%;
}
#buttons button{
padding: 2%;
cursor: pointer;
border-radius: 5px;
background: white;
font-size: 1em;
}
#cancel {
border: 2px solid #DD3232;
color: #DD3232;
}
#submit {
border: 2px solid #1ECD97;
color: #1ECD97;
padding: 2% 5% !important;
}
#submit:hover{
background: #1ECD97;
color: white;
}
#cancel:hover {
background: #DD3232;
color: white;
}
@media screen and (max-width: 1024px) {
#auth-container {
width: 75%;
}
.data {
width: 100%;
margin: 0;
}
input {
padding: 3% 1%;
font-size: 1.2em;
}
}
@media screen and (max-width: 700px) {
#auth-container {
width: 100%;
}
.data {
width: 100%;
margin: 0;
}
}
@media screen and (max-width: 400px) {
input {
font-size: 1em;
}
.icon {
width: 15%;
}
}
#expolore-container {
width: 95%;
margin: 1% auto;
}
.page-title {
display: inline-block;
width: 100%;
vertical-align: middle;
}
.explore h1 {
margin: 0;
}
.explore {
width: 49%;
display: inline-block;
height: 100%;
vertical-align: middle;
}
#explore-info {
width: 45%;
display: inline-block;
}
.explore.right {
text-align: right;
}
.explore select {
padding: 2%;
text-align: center;
}
#explore-info {
width: 100%;
padding: 1%;
text-transform: uppercase;
text-align: center;
font-size: 1.5em;
}
.explore-results {
opacity: 0.5;
} | Passportera/React/client/src/styles/admin.css | @import url('https://fonts.googleapis.com/css?family=Montserrat');
* {
margin: 0;
padding: 0;
}
body, html {
height: 100%;
width: 100%;
font-size: 20px;
overflow: hidden;
font-family: 'Montserrat', sans-serif;
}
#admin-nav {
height: 100%;
/*
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 4%;
*/
margin: 0;
padding: 0;
width: 4%;
height: 100%; /* Full height */
position: fixed;
overflow: auto;
text-align: center;
background: #dedddc;
/*
background: #a23485;
text-align: center;
overflow: hidden;*/
}
#admin-nav ul{
width: 100%;
height: 100%; /* Full height */
}
/*
#admin-nav:hover{
width: 15%;
text-align: left;
}
*/
#admin-nav ul li{
list-style-type: none;
font-size: 1em;
padding: 10% 2%;
width: 100%;
color: #0a5271;
}
#admin-nav ul li:hover{
background: #a267de;
cursor: pointer;
}
.menu-icon, .menu-item {
height: 100%;
vertical-align: middle;
display: inline-block;
padding: 2% 3%;
}
.menu-icon {
font-size: 1.5em;
}
.menu-item {
font-size: 1em;
display: none;
}
/*
#admin-nav:hover .menu-item {
display: inline;
}
*/
#admin-content {
position: relative;
height: 100%;
width: 85%;
margin-left:10%;
text-align: center;
}
#countries-list {
display: inline-block;
height: 100%;
width: 100%;
background: #ffffff;
text-align: center;
overflow: hidden;
}
.admin-row {
box-sizing: border-box;
width: 24%;
height: 100%;
background: #FFFFFF;
display: inline-block;
vertical-align: middle;
}
.country-title h2 {
text-transform: uppercase;
text-shadow: 2px 2px 4px #000000;
font-size: 1em;
}
img {
width: 150px;
height: 100px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
margin: 2%;
}
.actions {
padding: 2%;
}
.icon {
text-decoration: none;
color: #a8a8a8;
padding: 2%;
font-size: 0.7em;
}
.icon:hover {
color: #a895d1;
}
@media screen and (max-width: 1000px) {
#countries-list {
width: 100%;
}
.admin-row {
width:40%;
margin: 2% 1%;
}
.country-title h2 {
font-size: 1em;
}
}
@media screen and (max-width: 400px) {
#countries-list {
width: 100%;
}
.admin-row {
width:80%;
}
.country-title h2 {
font-size: 1.2em;
}
}
#country-container {
width: 50%;
height: 50%;
margin: 0 auto;
background-color: #FFFFFF;
}
.data h1 {
text-align: center;
text-transform: uppercase;
}
.data.title {
text-align: center;
}
.data {
width: 80%;
margin: 0 auto;
padding: 1% 0;
}
.data-half{
width: 45%;
display: inline-block;
text-align: center;
}
.data-half input{
width: 100%;
padding: 10% 5% !important;
}
.right {
text-align: center;
float: right;
}
label {
display: block;
font-weight: bold;
margin: 1% auto;
}
input {
width: 100%;
height: 30px;
background-color: #F1F1F1;
font-size: 1.3em;
padding: 4% 2%;
border: none;
}
div.error-important {
background-color: #E85F55;
color: #ffffff;
padding: 2%;
}
#buttons {
text-align: center;
font-weight: bold;
padding-top: 2%;
}
#buttons button{
padding: 2%;
cursor: pointer;
border-radius: 5px;
background: white;
font-size: 1em;
}
#cancel {
border: 2px solid #DD3232;
color: #DD3232;
}
#submit {
border: 2px solid #1ECD97;
color: #1ECD97;
padding: 2% 5% !important;
}
#submit:hover{
background: #1ECD97;
color: white;
}
#cancel:hover {
background: #DD3232;
color: white;
}
@media screen and (max-width: 1024px) {
#auth-container {
width: 75%;
}
.data {
width: 100%;
margin: 0;
}
input {
padding: 3% 1%;
font-size: 1.2em;
}
}
@media screen and (max-width: 700px) {
#auth-container {
width: 100%;
}
.data {
width: 100%;
margin: 0;
}
}
@media screen and (max-width: 400px) {
input {
font-size: 1em;
}
.icon {
width: 15%;
}
}
#expolore-container {
width: 95%;
margin: 1% auto;
}
.page-title {
display: inline-block;
width: 100%;
vertical-align: middle;
}
.explore h1 {
margin: 0;
}
.explore {
width: 49%;
display: inline-block;
height: 100%;
vertical-align: middle;
}
#explore-info {
width: 45%;
display: inline-block;
}
.explore.right {
text-align: right;
}
.explore select {
padding: 2%;
text-align: center;
}
#explore-info {
width: 100%;
padding: 1%;
text-transform: uppercase;
text-align: center;
font-size: 1.5em;
}
.explore-results {
opacity: 0.5;
} | 0.398055 | 0.074467 |
* Use this file to override Materialize files so you can update
* the core Materialize files in the future
*
* Made By MaterializeCSS.com
*/
nav ul a,
nav .brand-logo {
color: #444;
}
p {
line-height: 2rem;
}
.sidenav-trigger {
color: #26a69a;
}
.parallax-container {
min-height: 380px;
line-height: 0;
height: auto;
color: rgba(255,255,255,.9);
}
.parallax-container .section {
width: 100%;
}
@media only screen and (max-width : 992px) {
.parallax-container .section {
position: absolute;
top: 40%;
}
#index-banner .section {
top: 10%;
}
}
@media only screen and (max-width : 600px) {
#index-banner .section {
top: 0;
}
}
@media only screen and (max-width : 572px) {
.icon-block {
display: none;
}
}
@media only screen and (max-width : 572px) {
.featureContainer{
display: none;
}
}
@media only screen and (max-width : 572px) {
.section-background{
display: none;
}
}
@media only screen and (max-width : 572px) {
.btn-large {
margin: auto;
}
}
@media only screen and (max-width : 600px) {
.header-CTA {
text-align: center;
}
}
.icon-block {
padding: 0 15px;
}
.icon-block .material-icons {
font-size: inherit;
}
footer.page-footer {
margin: 0;
}
.headerContainer{
display: flex;
justify-content: right;
background-color:#FFFFFF;
width: 50%;
padding-bottom: 20px;
}
.header-CTA{
/* width: 50vh;*/
height: 20%;
background-color:#FFFFFF;
}
.landingImg{
width: 70vh;
height: 60vh;
margin: auto;
background-color:#FFFFFF;
}
/* Kermitt CSS */
.landing-content-title {
/* height: 61px;
width: 503px; */
color: #000000;
font-family: Roboto;
font-size: 30px;
font-weight: 900;
letter-spacing: 0.08px;
line-height: 61px;
}
.landing-content-body {
/* height: 122.4px;
width: 540px; */
color: #000000;
font-family: Roboto;
font-size: 24px;
font-weight: 500;
letter-spacing: -0.16px;
line-height: 40px;
}
/* get started button
*/
.get-started {
display: flex;
flex-direction: row;
height: 25px;
width: 99px;
color: #000000;
font-family: Roboto;
font-size: 19.2px;
line-height: 25px;
}
.rectangle {
height: 46px;
width: 165px;
background-color: #D8D8D8;
box-shadow: 0 3px 4px 0
rgba(151,151,151,0.67);
}
.rectangle-learn {
height: 46px;
width: 165px;
border: 2px solid #979797;
box-shadow: 0 3px 4px 0
rgba(151,151,151,0.67);
}
/* climber feature photos */
.climbing-1 { height: 214px; width: 200px;}
.climbing-2 { height: 209px; width: 115px;}
.climbing-3 { height: 200px; width: 180px;}
.featureContainer{
display: flex;
flex-direction: row;
/* flex-direction: row-reverse; */
justify-content: center;
padding: 20px;
}
.section-background {
margin-top: 20px;
background-color: #F0F0F0;
}
/* user experience/testimonial */
.advisor-photo {
border: 3px solid #FFFFFF;
}
.persona-text {
/* height: 417.6px;
width: 1145px; */
color: rgba(0,0,0,0.6);
font-family: Roboto;
font-size: 24px;
font-weight: 900;
line-height: 40px;
text-align: center;
margin: 0;
}
.persona-text-name {
/* height: 417.6px;
width: 1145px; */
color: rgba(0,0,0,0.6);
font-family: Roboto;
font-size: 20px;
text-align: center;
margin: 0;
}
.section-background-person {
/* height: 720px;
width: 1440px; */
padding-top: 20px;
background-color:#FFFFFF;
color: rgba(255,255,255,.9);
padding: 20px;
}
/* help for any topic */
.section-background-2 {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #FFFFFF;
padding-top: 20px;
}
.section-1-title {
/* height: 58px;
width: 352px; */
color: #000000;
font-family: Roboto;
font-size: 24px;
font-weight: 500;
letter-spacing: 0.07px;
line-height: 58px;
}
.section-1-body {
color: #000000;
font-family: Roboto;
font-size: 16px;
letter-spacing: -0.16px;
line-height: 40px;
}
.textboxTopic{
width: 50vh;
height: 50vh;
}
.bike-photo{
height: 50vh;
width: 50vh;
}
.section-background-3 {
display: flex;
flex-direction: row-reverse;
justify-content: center;
background-color: #FFFFFF;
}
.textboxConnect {
width: 50vh;
height: 50vh;
}
.connect-photo{
height: 50vh;
width: 50vh;
}
.textboxImprove {
width: 50vh;
height: 50vh;
}
.improve-photo{
height: 50vh;
width: 50vh;
}
#footerButton {
margin: auto;
}
#delpheFooter {
/* height: 44px;
width: 139.39px; */
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 36px;
line-height: 44px;
margin: auto;
padding-bottom: 20px;
}
#delphe-header {
/* height: 44px;
width: 139.39px; */
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 50px;
line-height: 44px;
padding-top: 20px;
/* text-align: center; */
}
#delphe-userType{
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 30px;
line-height: 44px;
display: flex;
text-align: left;
}
.userContainer{
display: flex;
}
#goBack-Button{
text-align: center;
}
/* Styling for user profile form */
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
}
.updateProfile-container{
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
} | src/components/landing/css/style.css | * Use this file to override Materialize files so you can update
* the core Materialize files in the future
*
* Made By MaterializeCSS.com
*/
nav ul a,
nav .brand-logo {
color: #444;
}
p {
line-height: 2rem;
}
.sidenav-trigger {
color: #26a69a;
}
.parallax-container {
min-height: 380px;
line-height: 0;
height: auto;
color: rgba(255,255,255,.9);
}
.parallax-container .section {
width: 100%;
}
@media only screen and (max-width : 992px) {
.parallax-container .section {
position: absolute;
top: 40%;
}
#index-banner .section {
top: 10%;
}
}
@media only screen and (max-width : 600px) {
#index-banner .section {
top: 0;
}
}
@media only screen and (max-width : 572px) {
.icon-block {
display: none;
}
}
@media only screen and (max-width : 572px) {
.featureContainer{
display: none;
}
}
@media only screen and (max-width : 572px) {
.section-background{
display: none;
}
}
@media only screen and (max-width : 572px) {
.btn-large {
margin: auto;
}
}
@media only screen and (max-width : 600px) {
.header-CTA {
text-align: center;
}
}
.icon-block {
padding: 0 15px;
}
.icon-block .material-icons {
font-size: inherit;
}
footer.page-footer {
margin: 0;
}
.headerContainer{
display: flex;
justify-content: right;
background-color:#FFFFFF;
width: 50%;
padding-bottom: 20px;
}
.header-CTA{
/* width: 50vh;*/
height: 20%;
background-color:#FFFFFF;
}
.landingImg{
width: 70vh;
height: 60vh;
margin: auto;
background-color:#FFFFFF;
}
/* Kermitt CSS */
.landing-content-title {
/* height: 61px;
width: 503px; */
color: #000000;
font-family: Roboto;
font-size: 30px;
font-weight: 900;
letter-spacing: 0.08px;
line-height: 61px;
}
.landing-content-body {
/* height: 122.4px;
width: 540px; */
color: #000000;
font-family: Roboto;
font-size: 24px;
font-weight: 500;
letter-spacing: -0.16px;
line-height: 40px;
}
/* get started button
*/
.get-started {
display: flex;
flex-direction: row;
height: 25px;
width: 99px;
color: #000000;
font-family: Roboto;
font-size: 19.2px;
line-height: 25px;
}
.rectangle {
height: 46px;
width: 165px;
background-color: #D8D8D8;
box-shadow: 0 3px 4px 0
rgba(151,151,151,0.67);
}
.rectangle-learn {
height: 46px;
width: 165px;
border: 2px solid #979797;
box-shadow: 0 3px 4px 0
rgba(151,151,151,0.67);
}
/* climber feature photos */
.climbing-1 { height: 214px; width: 200px;}
.climbing-2 { height: 209px; width: 115px;}
.climbing-3 { height: 200px; width: 180px;}
.featureContainer{
display: flex;
flex-direction: row;
/* flex-direction: row-reverse; */
justify-content: center;
padding: 20px;
}
.section-background {
margin-top: 20px;
background-color: #F0F0F0;
}
/* user experience/testimonial */
.advisor-photo {
border: 3px solid #FFFFFF;
}
.persona-text {
/* height: 417.6px;
width: 1145px; */
color: rgba(0,0,0,0.6);
font-family: Roboto;
font-size: 24px;
font-weight: 900;
line-height: 40px;
text-align: center;
margin: 0;
}
.persona-text-name {
/* height: 417.6px;
width: 1145px; */
color: rgba(0,0,0,0.6);
font-family: Roboto;
font-size: 20px;
text-align: center;
margin: 0;
}
.section-background-person {
/* height: 720px;
width: 1440px; */
padding-top: 20px;
background-color:#FFFFFF;
color: rgba(255,255,255,.9);
padding: 20px;
}
/* help for any topic */
.section-background-2 {
display: flex;
flex-direction: row;
justify-content: center;
background-color: #FFFFFF;
padding-top: 20px;
}
.section-1-title {
/* height: 58px;
width: 352px; */
color: #000000;
font-family: Roboto;
font-size: 24px;
font-weight: 500;
letter-spacing: 0.07px;
line-height: 58px;
}
.section-1-body {
color: #000000;
font-family: Roboto;
font-size: 16px;
letter-spacing: -0.16px;
line-height: 40px;
}
.textboxTopic{
width: 50vh;
height: 50vh;
}
.bike-photo{
height: 50vh;
width: 50vh;
}
.section-background-3 {
display: flex;
flex-direction: row-reverse;
justify-content: center;
background-color: #FFFFFF;
}
.textboxConnect {
width: 50vh;
height: 50vh;
}
.connect-photo{
height: 50vh;
width: 50vh;
}
.textboxImprove {
width: 50vh;
height: 50vh;
}
.improve-photo{
height: 50vh;
width: 50vh;
}
#footerButton {
margin: auto;
}
#delpheFooter {
/* height: 44px;
width: 139.39px; */
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 36px;
line-height: 44px;
margin: auto;
padding-bottom: 20px;
}
#delphe-header {
/* height: 44px;
width: 139.39px; */
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 50px;
line-height: 44px;
padding-top: 20px;
/* text-align: center; */
}
#delphe-userType{
color: rgba(0,0,0,0.6);
font-family: Righteous;
font-size: 30px;
line-height: 44px;
display: flex;
text-align: left;
}
.userContainer{
display: flex;
}
#goBack-Button{
text-align: center;
}
/* Styling for user profile form */
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #4CAF50;
color: white;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
float: right;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 5px;
}
.updateProfile-container{
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
}
.col-25 {
float: left;
width: 25%;
margin-top: 6px;
}
.col-75 {
float: left;
width: 75%;
margin-top: 6px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.col-25, .col-75, input[type=submit] {
width: 100%;
margin-top: 0;
}
} | 0.351311 | 0.062531 |
body {
width: 100%;
margin: 0%;
padding: 0%;
float: left;
font-family: Arial, sans-serif;
font-size: 13px;
color: #f1f5f8;
background-color: #220042;
}
a:link {
color: #FF00B6;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #FF00B6;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #FF55CE;
background-color: transparent;
text-decoration: none;
}
a:active {
color: #FFA5E5;
background-color: transparent;
text-decoration: none;
}
#page {
position: relative;
width: 100%;
margin: 0%;
padding: 0%;
float: left;
height: auto;
overflow: hidden;
background-color: #220042;
}
#header {
width: 100%;
margin: 0% auto;
padding: 0% 0% 0% 0%;
float: left;
height: auto;
color: white;
background-color: #000038;
}
#header h1 {
width: 100%;
color: #F6F6F6;
text-align: center;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
font-size: 40px;
font-weight: bold;
}
#header h2 {
width: 100%;
margin: 0%, auto;
padding: 0%;
float: left;
height: auto;
text-align: center;
color: #F6F6F6;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
font-size: 20px;
font-weight: bold;
}
#nav {
width: 100%;
margin: 0%;
padding: 0%;
float: left;
position: relative;
text-align: center;
height: auto;
line-height: 33px;
font-size: 55px;
background-color: #220042;
}
#nav .link {
width: 92%;
margin: 2%;
padding: 0%;
}
.link {
width: 100%;
margin: 0%;
padding: 0%;
font-size: 14px;
font-weight: bold;
color: #FF00B6;
}
.link:hover {
color: #FF55CE;
}
#year1nav {
width: 100%;
margin: 1%;
padding: 0%;
float: left;
position: relative;
text-align: center;
height: auto;
line-height: 0%;
font-size: 66px;
background-color: #220042;
}
#year1nav .link {
width: 92%;
margin: 0.5%;
padding: 0%;
}
#footer {
height: 30px;
padding-top: 5px;
background-color: #000038;
text-align: center;
font-size: 11px;
color: #ccc;
}
#main {
padding: 1em;
overflow: hidden;
}
#emptyspace {
margin: 33%;
}
.article {
width: 96%;
padding: 0% 2% 0% 2%;
overflow: hidden;
}
.article h1 {
padding-top: 2px;
font-size: 30px;
font-weight: bold;
color: #D800D0;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
}
.article p {
font-size: 16px;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
line-height: 18px;
}
.article .rightPos {
float: right;
padding-left: 2%;
}
.article2 {
width: 92%;
padding: 2%;
overflow: hidden;
}
.article2 h1 {
float: none;
margin: 0% 0% 0% 0%;
font-size: 30px;
font-weight: bold;
color: #FF68F9;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
}
.article2 p {
float: inherit;
margin: 1% 0% 0% 0%;
font-size: 16px;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
line-height: 20px;
}
.article2 .leftPos {
float: left;
padding-right: 2%;
} | css/styles.css | body {
width: 100%;
margin: 0%;
padding: 0%;
float: left;
font-family: Arial, sans-serif;
font-size: 13px;
color: #f1f5f8;
background-color: #220042;
}
a:link {
color: #FF00B6;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #FF00B6;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #FF55CE;
background-color: transparent;
text-decoration: none;
}
a:active {
color: #FFA5E5;
background-color: transparent;
text-decoration: none;
}
#page {
position: relative;
width: 100%;
margin: 0%;
padding: 0%;
float: left;
height: auto;
overflow: hidden;
background-color: #220042;
}
#header {
width: 100%;
margin: 0% auto;
padding: 0% 0% 0% 0%;
float: left;
height: auto;
color: white;
background-color: #000038;
}
#header h1 {
width: 100%;
color: #F6F6F6;
text-align: center;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
font-size: 40px;
font-weight: bold;
}
#header h2 {
width: 100%;
margin: 0%, auto;
padding: 0%;
float: left;
height: auto;
text-align: center;
color: #F6F6F6;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
font-size: 20px;
font-weight: bold;
}
#nav {
width: 100%;
margin: 0%;
padding: 0%;
float: left;
position: relative;
text-align: center;
height: auto;
line-height: 33px;
font-size: 55px;
background-color: #220042;
}
#nav .link {
width: 92%;
margin: 2%;
padding: 0%;
}
.link {
width: 100%;
margin: 0%;
padding: 0%;
font-size: 14px;
font-weight: bold;
color: #FF00B6;
}
.link:hover {
color: #FF55CE;
}
#year1nav {
width: 100%;
margin: 1%;
padding: 0%;
float: left;
position: relative;
text-align: center;
height: auto;
line-height: 0%;
font-size: 66px;
background-color: #220042;
}
#year1nav .link {
width: 92%;
margin: 0.5%;
padding: 0%;
}
#footer {
height: 30px;
padding-top: 5px;
background-color: #000038;
text-align: center;
font-size: 11px;
color: #ccc;
}
#main {
padding: 1em;
overflow: hidden;
}
#emptyspace {
margin: 33%;
}
.article {
width: 96%;
padding: 0% 2% 0% 2%;
overflow: hidden;
}
.article h1 {
padding-top: 2px;
font-size: 30px;
font-weight: bold;
color: #D800D0;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
}
.article p {
font-size: 16px;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
line-height: 18px;
}
.article .rightPos {
float: right;
padding-left: 2%;
}
.article2 {
width: 92%;
padding: 2%;
overflow: hidden;
}
.article2 h1 {
float: none;
margin: 0% 0% 0% 0%;
font-size: 30px;
font-weight: bold;
color: #FF68F9;
font-family: Consolas, 'Andale Mono', 'Lucida Console', 'Lucida Sans Typewriter', Monaco, 'Courier New', 'monospace';
}
.article2 p {
float: inherit;
margin: 1% 0% 0% 0%;
font-size: 16px;
font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
line-height: 20px;
}
.article2 .leftPos {
float: left;
padding-right: 2%;
} | 0.334589 | 0.058939 |
body {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
overflow-x: hidden;
}
p {
font-size: 20px;
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
color: #233140
}
p.small {
font-size: 16px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
color: white;
}
h1,
h2,
h4,
h5,
h6 {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
text-transform: uppercase;
font-weight: 700;
color: #233140
}
h3 {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
/* text-transform: uppercase;*/
font-weight: 700;
color: #233140
}
.light {
color: white;
}
.dark {
color: #233140;
}
img.flower {
display: block;
/*margin-right: auto;
margin-left: auto;*/
margin: 0 auto 30px;
}
.img-centered {
margin: 0 auto;
}
.about img.flower {
margin-bottom: 0;
}
header {
text-align: center;
background: url(../img/background/sun1.jpg);
background-repeat: no-repeat;
background-size: cover;
color: #233140;
height: 95vh;
}
header .container {
padding-top: 90px;
padding-bottom: 50px;
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text {
margin-top: 5vh;
/* margin-bottom: 15vh;*/
}
header .intro-text .name {
display: block;
text-transform: uppercase;
font-weight: 700;
font-size: 2.1em;
margin: 0;
}
header .tag {
display: block;
text-transform: uppercase;
font-weight: 700;
font-size: 1.4em;
margin: 0;
}
header .skills {
display: block;
font-size: 1.1em;
font-weight: 400;
}
img.profile {
border: solid 4px #1F160C;
border-radius: 150px;
width: 100%;
margin-top: 20px;
}
@media (min-width: 768px) {
header .container {
padding-top: 120px;
padding-bottom: 50px;
}
/* header .intro-text {
margin-top: 5vh;
}*/
header .intro-text .name {
font-size: 2.8em;
}
header .tag {
font-size: 1.8em;
}
header .skills {
font-size: 1.5em;
}
img.profile {
margin-top: 42px;
}
}
/*.detail {
font-weight: 300;
color: white;
font-size: 0.8em;
}*/
/*.cta {
width: 100%;
}
.arrow {
width: 100%;
}*/
.navbar-custom {
background: url(../img/background/sky.jpg);
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
text-transform: uppercase;
font-weight: 300;
border: none;
box-shadow: -1px -1px 10px #233140;
}
.navbar-custom .navbar-brand {
color: white;
text-shadow: 1px 1px 2px #233140;
}
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus,
.navbar-custom .navbar-brand:active,
.navbar-custom .navbar-brand.active {
color: #233140;
text-shadow: 1px 1px 2px white;
}
.navbar-custom .navbar-nav {
letter-spacing: 1px;
text-shadow: 1px 1px 2px #233140;
}
.navbar-custom .navbar-nav li a {
color: white;
}
.navbar-custom .navbar-nav li a:hover {
color: #233140;
text-shadow: 1px 1px 2px white;
}
.navbar-custom .navbar-nav li a:focus,
.navbar-custom .navbar-nav li a:active {
color: white;
}
.navbar-custom .navbar-nav li.active a {
color: white;
background: #E03932;
}
.navbar-custom .navbar-nav li.active a:hover,
.navbar-custom .navbar-nav li.active a:focus,
.navbar-custom .navbar-nav li.active a:active {
color: white;
background: #E03932;
}
.navbar-custom .navbar-toggle {
color: white;
text-transform: uppercase;
font-size: 10px;
border-color: white;
box-shadow: 0.5px 0.5px 2px #233140;
}
.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
background-color: #045943;
color: white;
border-color: #11866f;
box-shadow: 1px 1px 2px white;
text-shadow: 1px 1px 2px white;
}
.navbar-info {
color: white;
text-transform: none;
text-shadow: 1px 1px 2px #233140;
font-size: 14px;
letter-spacing: 3px;
display: block;
}
.nav-icon {
margin-right: 10px;
}
@media (min-width: 768px) {
.navbar-custom {
padding: 25px 0 5px 0;
-webkit-transition: padding 0.3s;
-moz-transition: padding 0.3s;
transition: padding 0.3s;
}
.navbar-custom .navbar-brand {
font-size: 2.8em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.navbar-custom.affix {
padding: 10px 0 5px 0;
}
.navbar-custom.affix .navbar-brand {
font-size: 2em;
}
.navbar-info {
letter-spacing: 4px;
font-size: 14px;
margin-top: 10px;
display: inline-block;
padding-right: 10px;
}
/* .nav-icon {
margin-right: 10px;
}*/
}
section {
padding: 50px 0;
}
section h2 {
margin: 0;
font-size: 3em;
}
section.about {
background: url(../img/background/green-small.jpg);
background-repeat: no-repeat;
background-size: cover;
color: #233140;
/* height: 100vh;*/
}
@media (min-width: 992px) {
section.about {
background: url(../img/background/green.jpg);
background-size: cover;
}
}
section.work {
background: url(../img/background/logs.jpg);
background-repeat: no-repeat;
background-size: cover;
color: white;
}
@media (max-width: 767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
}
#portfolio .portfolio-item {
/* border: solid 1px #1F160C;*/
/* padding: 0;*/
margin: 0 0 15px;
right: 0;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
max-width: 400px;
margin: 0 auto;
}
/****** HOVER OVER *******/
#portfolio .portfolio-item .portfolio-link .caption {
background: rgba(59, 189, 177, 0.3);
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: all ease 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
width: 100%;
height: 20px;
font-size: 20px;
text-align: center;
top: 50%;
margin-top: -12px;
color: white;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
#portfolio * {
z-index: 2;
}
@media (min-width: 767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
.floating-label-form-group {
position: relative;
margin-bottom: 0;
padding-bottom: 0.5em;
border-bottom: 1px solid #eeeeee;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: none;
border-radius: 0;
font-size: 1.5em;
background: none;
box-shadow: none !important;
resize: none;
}
.floating-label-form-group label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: 0.85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top 0.3s ease, opacity 0.3s ease;
-moz-transition: top 0.3s ease, opacity 0.3s ease;
-ms-transition: top 0.3s ease, opacity 0.3s ease;
transition: top 0.3s ease, opacity 0.3s ease;
}
.floating-label-form-group:not(:first-child) {
padding-left: 14px;
border-left: 1px solid #eeeeee;
}
.floating-label-form-group-with-value label {
top: 0;
opacity: 1;
}
.floating-label-form-group-with-focus label {
color: #045943;
}
form .row:first-child .floating-label-form-group {
border-top: 1px solid #eeeeee;
}
footer {
color: white;
}
/*footer h3 {
margin-bottom: 30px;
}*/
footer .footer-above {
padding-top: 25px;
background: url(../img/background/very-red.jpg);
background-repeat: no-repeat;
background-size: cover;
}
footer .footer-col {
margin-bottom: 25px;
}
footer .footer-below {
padding: 25px 0;
background-color: #233140;
}
.btn-outline {
color: white;
font-size: 20px;
border: solid 2px white;
background: transparent;
transition: all 0.3s ease-in-out;
margin-top: 15px;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
color: #045943;
background: white;
border: solid 2px #eeeeee;
}
.btn-primary {
color: white;
background-color: #233140;
border-color: #2C3E50;
font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: white;
background-color: #1a242f;
border-color: #161f29;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #233140;
border-color: #2C3E50;
}
.btn-primary .badge {
color: #2C3E50;
background-color: white;
}
.btn-success {
color: white;
background-color: #045943;
border-color: #11866f;
font-weight: 700;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
color: white;
background-color: #EF5756;
border-color: #11866f;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #045943;
border-color: #11866f;
}
.btn-success .badge {
color: #045943;
background-color: white;
}
.btn-social {
display: inline-block;
height: 50px;
width: 50px;
border: 2px solid white;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.scroll-top {
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
z-index: 1049;
}
.scroll-top .btn {
font-size: 20px;
width: 50px;
height: 50px;
border-radius: 100%;
line-height: 28px;
}
.portfolio-modal .modal-content {
border-radius: 0;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
min-height: 100%;
padding: 100px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
width: 75px;
height: 75px;
background-color: transparent;
top: 25px;
right: 25px;
cursor: pointer;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
height: 75px;
width: 1px;
margin-left: 35px;
background-color: #2C3E50;
transform: rotate(45deg);
-ms-transform: rotate(45deg);
/* IE 9 */
-webkit-transform: rotate(45deg);
/* Safari and Chrome */
z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
height: 75px;
width: 1px;
background-color: #2C3E50;
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* IE 9 */
-webkit-transform: rotate(90deg);
/* Safari and Chrome */
z-index: 1052;
}
.portfolio-modal .modal-backdrop {
opacity: 0;
display: none;
}
/*
.banner {
background: url(../img/background/logs.jpg);
background-origin: cover;
width: 100%;
height: 100px;
}*/
#skipnav a {
padding: 6px;
position: absolute;
top: -40px;
left: 0px;
color: white;
border-right: 1px solid white;
border-bottom: 1px solid white;
border-bottom-right-radius: 8px;
background: transparent;
transition: top 1s ease-out, background 1s linear;
z-index: 2000;
}
#skipnav a:focus {
position: absolute;
left: 0px;
top: 0px;
background: #045943;
outline: 0;
transition: top 0.1s ease-in, background 0.5s linear;
}
div#maincontent {
outline: none;
}
.me {
padding: 1em;
}
.service-box {
max-width: 400px;
margin: 50px auto 0;
color: #045943;
}
@media (min-width: 992px) {
.service-box {
margin: 20px auto 0;
}
}
.service-box p {
margin-bottom: 0;
}
ul.work-detail {
list-style-type: none;
padding-left: 0;
text-align: left;
}
ul.illustration-detail {
list-style-type: none;
padding-left: 0;
text-align: center;
padding-bottom: 2em;
}
ul.work-detail > li {
line-height: 2em;
}
a.work-link {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
color: white;
display: block;
text-align: center;
padding-top: 0.6em;
}
.block {
display: block;
margin: 0 auto;
}
.btn-style {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
width: 160px;
border-radius: 20px;
border: none;
background: #E03932;
text-transform: uppercase;
color: white;
font-size: 1.3em;
padding-top: 10px;
margin-top: 30px;
margin-bottom: 30px;
}
section.quote {
padding: 15px 0;
}
h3.otd {
color: #045943;
font-size: 1.25em;
font-weight: 400;
}
img.flower-quote {
padding-top: 20px;
}
@media (min-width: 768px) {
h3.otd {
font-size: 1.5em;
}
}
/*.arrow-down {
width: 0;
height: 0;
border-left: 150px solid transparent;
border-right: 150px solid transparent;
border-top: 75px solid #fff;
margin: 10px auto;
}*/
/******** ILLUSTRAIONS MODALS *********/
#beetle-poem,
#bee-poem,
#bun-poem,
#koala-poem,
#penguin-poem,
#spider-poem,
#sun-poem,
#tree-poem,
#worm-poem,
#xmas-robin,
#xmas-reindeer,
#xmas-angel,
#xmas-snowman,
#xmas-tree,
#xmas-heart,
#gen-bomb,
#gen-box,
#gen-annivers,
#gen-boom,
#gen-home,
#gen-bird,
#gen-unicorn,
#gen-wed,
#gen-butterfly,
#gen-dad,
#gen-congrats,
#gen-love,
#bri-heart {
width: 270px;
height: 270px;
}
#beetle-poem {
background: url("../img/illus-sprite-poem.jpg") -427px 0;
}
#bee-poem {
background: url("../img/illus-sprite-poem.jpg") -5px 0;
}
#bun-poem {
background: url("../img/illus-sprite-poem.jpg") -855px 0;
}
#koala-poem {
background: url("../img/illus-sprite-poem.jpg") -3405px 0;
}
#penguin-poem {
background: url("../img/illus-sprite-poem.jpg") -1280px 0;
}
#spider-poem {
background: url("../img/illus-sprite-poem.jpg") -1705px 0;
}
#sun-poem {
background: url("../img/illus-sprite-poem.jpg") -2555px 0;
}
#tree-poem {
background: url("../img/illus-sprite-poem.jpg") -2980px 0;
}
#worm-poem {
background: url("../img/illus-sprite-poem.jpg") -2140px 0;
}
#gen-bomb {
background: url("../img/illus-sprite-general.jpg") -4254px 0;
}
#gen-box {
background: url("../img/illus-sprite-general.jpg") -3828px 0;
}
#gen-annivers {
background: url("../img/illus-sprite-general.jpg") -430px 0;
}
#gen-boom {
background: url("../img/illus-sprite-general.jpg") -4678px 0;
}
#gen-home {
background: url("../img/illus-sprite-general.jpg") -2553px 0;
}
#gen-bird {
background: url("../img/illus-sprite-general.jpg") -2125px 0;
}
#gen-unicorn {
background: url("../img/illus-sprite-general.jpg") -3402px 0;
}
#gen-wed {
background: url("../img/illus-sprite-general.jpg") 0 0;
}
#gen-butterfly {
background: url("../img/illus-sprite-general.jpg") -852px 0;
}
#gen-dad {
background: url("../img/illus-sprite-general.jpg") -1703px 0;
}
#gen-congrats {
background: url("../img/illus-sprite-general.jpg") -1276px 0;
}
#gen-love {
background: url("../img/illus-sprite-general.jpg") -2977px 0;
}
#xmas-robin {
background: url("../img/illus-sprite-xmas.jpg") -1277px 0;
}
#xmas-reindeer {
background: url("../img/illus-sprite-xmas.jpg") -850px 0;
}
#xmas-angel {
background: url("../img/illus-sprite-xmas.jpg") -425px 0;
}
#xmas-snowman {
background: url("../img/illus-sprite-xmas.jpg") -1700px 0;
}
#xmas-tree {
background: url("../img/illus-sprite-xmas.jpg") 0 0;
}
#xmas-heart {
background: url("../img/illus-sprite-xmas.jpg") -2135px 0;
}
#bri-montage {
width: 270px;
height: 270px;
background: url("../img/illus-sprite-brighton.jpg") -1745px 0;
}
@media (min-width: 768px) {
#bri-montage {
width: 610px;
height: 610px;
background: url("../img/illus-sprite-brighton.jpg") 0 0;
}
}
#bri-heart {
background: url("../img/illus-sprite-brighton.jpg") -1280px 0;
}
#bri-rainbow {
width: 270px;
height: 180px;
background: url("../img/illus-sprite-brighton.jpg") -710px 0;
}
/******* UI FOR ILLUSTRATIONS *******/
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 260px;
height: 260px;
}
#main-poem {
background: url("../img/illus-sprite-260px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-260px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-260px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-260px.jpg") -1277px 0;
}
/* NOT WORKING - DON't KNOW WHY?! */
/*@media (min-width: 1200px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 260px;
height: 260px;
}
#main-poem {
background: url("../img/illus-sprite-260px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-260px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-260px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-260px.jpg") -1277px 0;
}
}*/
@media (min-width: 768px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 130px;
height: 130px;
}
#main-poem {
background: url("../img/illus-sprite-150px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-150px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-150px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-150px.jpg") -1277px 0;
}
}
@media (min-width: 992px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 200px;
height: 200px;
}
#main-poem {
background: url("../img/illus-sprite-200px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-200px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-200px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-200px.jpg") -1277px 0;
}
}
@media (max-width: 600px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 200px;
height: 200px;
}
#main-poem {
background: url("../img/illus-sprite-200px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-200px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-200px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-200px.jpg") -1277px 0;
}
}
@media (max-width: 475px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 130px;
height: 130px;
}
#main-poem {
background: url("../img/illus-sprite-150px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-150px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-150px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-150px.jpg") -1277px 0;
}
}
/********* UI FOR PORTFOLIO ITEMS **********/
@media (min-width: 1200px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 358px;
height: 250px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -409px -306px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -820px -305px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") -1px -306px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -821px 0;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 0;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -409px 0;
}
}
@media (max-width: 1199px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 291px;
height: 203px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -906px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -907px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -907px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -819px -640px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 -643px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -635px;
}
}
@media (max-width: 991px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 218px;
height: 152px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -1465px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -1466px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -1465px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -818px -1198px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 1px -1200px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -1196px;
}
}
@media (max-width: 767px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 291px;
height: 203px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -906px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -907px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -907px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -819px -640px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 -643px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -635px;
}
}
/********* PORTFOLIO MODALS ************/
@media (min-width: 768px) {
#awesomebrighton,
#cv,
#sfaca,
#mcuk,
#techportfolio,
#essentialbl {
width: 700px;
height: 300px;
}
#essentialbl {
background: url("../img/portf-sprite-responsive.jpg") 0 0;
}
#awesomebrighton {
background: url("../img/portf-sprite-responsive.jpg") -760px -620px;
}
#cv {
background: url("../img/portf-sprite-responsive.jpg") 0 -310px;
}
#techportfolio {
background: url("../img/portf-sprite-responsive.jpg") 0 -620px;
}
#sfaca {
background: url("../img/portf-sprite-responsive.jpg") -760px -310px;
}
#mcuk {
background: url("../img/portf-sprite-responsive.jpg") -760px 0;
}
}
@media (max-width: 767px) {
#awesomebrighton,
#cv,
#sfaca,
#mcuk,
#techportfolio,
#essentialbl {
width: 350px;
height: 150px;
}
#essentialbl {
background: url("../img/portf-sprite-responsive.jpg") 0 -930px;
}
#awesomebrighton {
background: url("../img/portf-sprite-responsive.jpg") -760px -1240px;
}
#cv {
background: url("../img/portf-sprite-responsive.jpg") -7px -1090px;
}
#techportfolio {
background: url("../img/portf-sprite-responsive.jpg") 0 -1240px;
}
#sfaca {
background: url("../img/portf-sprite-responsive.jpg") -760px -1090px;
}
#mcuk {
background: url("../img/portf-sprite-responsive.jpg") -757px -930px;
}
}
@media (min-width: 1200px) {
#door2door {
width: 1100px;
height: 1066px;
background: url("../img/modal/door2door-montage.jpg") 0 -2300px;
}
#harmony {
width: 1100px;
height: 908px;
background: url("../img/modal/harmony-montage.jpg") 0 -2300px;
}
}
@media (max-width: 1199px) {
#door2door {
width: 700px;
height: 1009px;
background: url("../img/modal/door2door-montage.jpg") 0 -730px;
}
#harmony {
width: 700px;
height: 952px;
background: url("../img/modal/harmony-montage.jpg") 0 -730px;
}
}
@media (max-width: 767px) {
#door2door,
#harmony {
width: 300px;
height: 675px;
}
#door2door {
background: url("../img/modal/door2door-montage.jpg") 0 0;
}
#harmony {
background: url("../img/modal/harmony-montage.jpg") 0 0;
}
} | css/freelancer.css | body {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
overflow-x: hidden;
}
p {
font-size: 20px;
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
color: #233140
}
p.small {
font-size: 16px;
}
a,
a:hover,
a:focus,
a:active,
a.active {
color: white;
}
h1,
h2,
h4,
h5,
h6 {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
text-transform: uppercase;
font-weight: 700;
color: #233140
}
h3 {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
/* text-transform: uppercase;*/
font-weight: 700;
color: #233140
}
.light {
color: white;
}
.dark {
color: #233140;
}
img.flower {
display: block;
/*margin-right: auto;
margin-left: auto;*/
margin: 0 auto 30px;
}
.img-centered {
margin: 0 auto;
}
.about img.flower {
margin-bottom: 0;
}
header {
text-align: center;
background: url(../img/background/sun1.jpg);
background-repeat: no-repeat;
background-size: cover;
color: #233140;
height: 95vh;
}
header .container {
padding-top: 90px;
padding-bottom: 50px;
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
}
header img {
display: block;
margin: 0 auto 20px;
}
header .intro-text {
margin-top: 5vh;
/* margin-bottom: 15vh;*/
}
header .intro-text .name {
display: block;
text-transform: uppercase;
font-weight: 700;
font-size: 2.1em;
margin: 0;
}
header .tag {
display: block;
text-transform: uppercase;
font-weight: 700;
font-size: 1.4em;
margin: 0;
}
header .skills {
display: block;
font-size: 1.1em;
font-weight: 400;
}
img.profile {
border: solid 4px #1F160C;
border-radius: 150px;
width: 100%;
margin-top: 20px;
}
@media (min-width: 768px) {
header .container {
padding-top: 120px;
padding-bottom: 50px;
}
/* header .intro-text {
margin-top: 5vh;
}*/
header .intro-text .name {
font-size: 2.8em;
}
header .tag {
font-size: 1.8em;
}
header .skills {
font-size: 1.5em;
}
img.profile {
margin-top: 42px;
}
}
/*.detail {
font-weight: 300;
color: white;
font-size: 0.8em;
}*/
/*.cta {
width: 100%;
}
.arrow {
width: 100%;
}*/
.navbar-custom {
background: url(../img/background/sky.jpg);
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
text-transform: uppercase;
font-weight: 300;
border: none;
box-shadow: -1px -1px 10px #233140;
}
.navbar-custom .navbar-brand {
color: white;
text-shadow: 1px 1px 2px #233140;
}
.navbar-custom .navbar-brand:hover,
.navbar-custom .navbar-brand:focus,
.navbar-custom .navbar-brand:active,
.navbar-custom .navbar-brand.active {
color: #233140;
text-shadow: 1px 1px 2px white;
}
.navbar-custom .navbar-nav {
letter-spacing: 1px;
text-shadow: 1px 1px 2px #233140;
}
.navbar-custom .navbar-nav li a {
color: white;
}
.navbar-custom .navbar-nav li a:hover {
color: #233140;
text-shadow: 1px 1px 2px white;
}
.navbar-custom .navbar-nav li a:focus,
.navbar-custom .navbar-nav li a:active {
color: white;
}
.navbar-custom .navbar-nav li.active a {
color: white;
background: #E03932;
}
.navbar-custom .navbar-nav li.active a:hover,
.navbar-custom .navbar-nav li.active a:focus,
.navbar-custom .navbar-nav li.active a:active {
color: white;
background: #E03932;
}
.navbar-custom .navbar-toggle {
color: white;
text-transform: uppercase;
font-size: 10px;
border-color: white;
box-shadow: 0.5px 0.5px 2px #233140;
}
.navbar-custom .navbar-toggle:hover,
.navbar-custom .navbar-toggle:focus {
background-color: #045943;
color: white;
border-color: #11866f;
box-shadow: 1px 1px 2px white;
text-shadow: 1px 1px 2px white;
}
.navbar-info {
color: white;
text-transform: none;
text-shadow: 1px 1px 2px #233140;
font-size: 14px;
letter-spacing: 3px;
display: block;
}
.nav-icon {
margin-right: 10px;
}
@media (min-width: 768px) {
.navbar-custom {
padding: 25px 0 5px 0;
-webkit-transition: padding 0.3s;
-moz-transition: padding 0.3s;
transition: padding 0.3s;
}
.navbar-custom .navbar-brand {
font-size: 2.8em;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
}
.navbar-custom.affix {
padding: 10px 0 5px 0;
}
.navbar-custom.affix .navbar-brand {
font-size: 2em;
}
.navbar-info {
letter-spacing: 4px;
font-size: 14px;
margin-top: 10px;
display: inline-block;
padding-right: 10px;
}
/* .nav-icon {
margin-right: 10px;
}*/
}
section {
padding: 50px 0;
}
section h2 {
margin: 0;
font-size: 3em;
}
section.about {
background: url(../img/background/green-small.jpg);
background-repeat: no-repeat;
background-size: cover;
color: #233140;
/* height: 100vh;*/
}
@media (min-width: 992px) {
section.about {
background: url(../img/background/green.jpg);
background-size: cover;
}
}
section.work {
background: url(../img/background/logs.jpg);
background-repeat: no-repeat;
background-size: cover;
color: white;
}
@media (max-width: 767px) {
section {
padding: 75px 0;
}
section.first {
padding-top: 75px;
}
}
#portfolio .portfolio-item {
/* border: solid 1px #1F160C;*/
/* padding: 0;*/
margin: 0 0 15px;
right: 0;
}
#portfolio .portfolio-item .portfolio-link {
display: block;
position: relative;
max-width: 400px;
margin: 0 auto;
}
/****** HOVER OVER *******/
#portfolio .portfolio-item .portfolio-link .caption {
background: rgba(59, 189, 177, 0.3);
position: absolute;
width: 100%;
height: 100%;
opacity: 0;
transition: all ease 0.5s;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s;
}
#portfolio .portfolio-item .portfolio-link .caption:hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content {
position: absolute;
width: 100%;
height: 20px;
font-size: 20px;
text-align: center;
top: 50%;
margin-top: -12px;
color: white;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content i {
margin-top: -12px;
}
#portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
#portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
margin: 0;
}
#portfolio * {
z-index: 2;
}
@media (min-width: 767px) {
#portfolio .portfolio-item {
margin: 0 0 30px;
}
}
.floating-label-form-group {
position: relative;
margin-bottom: 0;
padding-bottom: 0.5em;
border-bottom: 1px solid #eeeeee;
}
.floating-label-form-group input,
.floating-label-form-group textarea {
z-index: 1;
position: relative;
padding-right: 0;
padding-left: 0;
border: none;
border-radius: 0;
font-size: 1.5em;
background: none;
box-shadow: none !important;
resize: none;
}
.floating-label-form-group label {
display: block;
z-index: 0;
position: relative;
top: 2em;
margin: 0;
font-size: 0.85em;
line-height: 1.764705882em;
vertical-align: middle;
vertical-align: baseline;
opacity: 0;
-webkit-transition: top 0.3s ease, opacity 0.3s ease;
-moz-transition: top 0.3s ease, opacity 0.3s ease;
-ms-transition: top 0.3s ease, opacity 0.3s ease;
transition: top 0.3s ease, opacity 0.3s ease;
}
.floating-label-form-group:not(:first-child) {
padding-left: 14px;
border-left: 1px solid #eeeeee;
}
.floating-label-form-group-with-value label {
top: 0;
opacity: 1;
}
.floating-label-form-group-with-focus label {
color: #045943;
}
form .row:first-child .floating-label-form-group {
border-top: 1px solid #eeeeee;
}
footer {
color: white;
}
/*footer h3 {
margin-bottom: 30px;
}*/
footer .footer-above {
padding-top: 25px;
background: url(../img/background/very-red.jpg);
background-repeat: no-repeat;
background-size: cover;
}
footer .footer-col {
margin-bottom: 25px;
}
footer .footer-below {
padding: 25px 0;
background-color: #233140;
}
.btn-outline {
color: white;
font-size: 20px;
border: solid 2px white;
background: transparent;
transition: all 0.3s ease-in-out;
margin-top: 15px;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active,
.btn-outline.active {
color: #045943;
background: white;
border: solid 2px #eeeeee;
}
.btn-primary {
color: white;
background-color: #233140;
border-color: #2C3E50;
font-weight: 700;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
color: white;
background-color: #1a242f;
border-color: #161f29;
}
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
background-image: none;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
background-color: #233140;
border-color: #2C3E50;
}
.btn-primary .badge {
color: #2C3E50;
background-color: white;
}
.btn-success {
color: white;
background-color: #045943;
border-color: #11866f;
font-weight: 700;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
color: white;
background-color: #EF5756;
border-color: #11866f;
}
.btn-success:active,
.btn-success.active,
.open .dropdown-toggle.btn-success {
background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
background-color: #045943;
border-color: #11866f;
}
.btn-success .badge {
color: #045943;
background-color: white;
}
.btn-social {
display: inline-block;
height: 50px;
width: 50px;
border: 2px solid white;
border-radius: 100%;
text-align: center;
font-size: 20px;
line-height: 45px;
}
.scroll-top {
position: fixed;
right: 2%;
bottom: 2%;
width: 50px;
height: 50px;
z-index: 1049;
}
.scroll-top .btn {
font-size: 20px;
width: 50px;
height: 50px;
border-radius: 100%;
line-height: 28px;
}
.portfolio-modal .modal-content {
border-radius: 0;
background-clip: border-box;
-webkit-box-shadow: none;
box-shadow: none;
border: none;
min-height: 100%;
padding: 100px 0;
text-align: center;
}
.portfolio-modal .modal-content h2 {
margin: 0;
font-size: 3em;
}
.portfolio-modal .modal-content img {
margin-bottom: 30px;
}
.portfolio-modal .modal-content .item-details {
margin: 30px 0;
}
.portfolio-modal .close-modal {
position: absolute;
width: 75px;
height: 75px;
background-color: transparent;
top: 25px;
right: 25px;
cursor: pointer;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.portfolio-modal .close-modal .lr {
height: 75px;
width: 1px;
margin-left: 35px;
background-color: #2C3E50;
transform: rotate(45deg);
-ms-transform: rotate(45deg);
/* IE 9 */
-webkit-transform: rotate(45deg);
/* Safari and Chrome */
z-index: 1051;
}
.portfolio-modal .close-modal .lr .rl {
height: 75px;
width: 1px;
background-color: #2C3E50;
transform: rotate(90deg);
-ms-transform: rotate(90deg);
/* IE 9 */
-webkit-transform: rotate(90deg);
/* Safari and Chrome */
z-index: 1052;
}
.portfolio-modal .modal-backdrop {
opacity: 0;
display: none;
}
/*
.banner {
background: url(../img/background/logs.jpg);
background-origin: cover;
width: 100%;
height: 100px;
}*/
#skipnav a {
padding: 6px;
position: absolute;
top: -40px;
left: 0px;
color: white;
border-right: 1px solid white;
border-bottom: 1px solid white;
border-bottom-right-radius: 8px;
background: transparent;
transition: top 1s ease-out, background 1s linear;
z-index: 2000;
}
#skipnav a:focus {
position: absolute;
left: 0px;
top: 0px;
background: #045943;
outline: 0;
transition: top 0.1s ease-in, background 0.5s linear;
}
div#maincontent {
outline: none;
}
.me {
padding: 1em;
}
.service-box {
max-width: 400px;
margin: 50px auto 0;
color: #045943;
}
@media (min-width: 992px) {
.service-box {
margin: 20px auto 0;
}
}
.service-box p {
margin-bottom: 0;
}
ul.work-detail {
list-style-type: none;
padding-left: 0;
text-align: left;
}
ul.illustration-detail {
list-style-type: none;
padding-left: 0;
text-align: center;
padding-bottom: 2em;
}
ul.work-detail > li {
line-height: 2em;
}
a.work-link {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
font-size: 1.5em;
font-weight: 700;
text-transform: uppercase;
color: white;
display: block;
text-align: center;
padding-top: 0.6em;
}
.block {
display: block;
margin: 0 auto;
}
.btn-style {
font-family: 'Kalam', cursive, Verdana, Geneva, sans-serif;
width: 160px;
border-radius: 20px;
border: none;
background: #E03932;
text-transform: uppercase;
color: white;
font-size: 1.3em;
padding-top: 10px;
margin-top: 30px;
margin-bottom: 30px;
}
section.quote {
padding: 15px 0;
}
h3.otd {
color: #045943;
font-size: 1.25em;
font-weight: 400;
}
img.flower-quote {
padding-top: 20px;
}
@media (min-width: 768px) {
h3.otd {
font-size: 1.5em;
}
}
/*.arrow-down {
width: 0;
height: 0;
border-left: 150px solid transparent;
border-right: 150px solid transparent;
border-top: 75px solid #fff;
margin: 10px auto;
}*/
/******** ILLUSTRAIONS MODALS *********/
#beetle-poem,
#bee-poem,
#bun-poem,
#koala-poem,
#penguin-poem,
#spider-poem,
#sun-poem,
#tree-poem,
#worm-poem,
#xmas-robin,
#xmas-reindeer,
#xmas-angel,
#xmas-snowman,
#xmas-tree,
#xmas-heart,
#gen-bomb,
#gen-box,
#gen-annivers,
#gen-boom,
#gen-home,
#gen-bird,
#gen-unicorn,
#gen-wed,
#gen-butterfly,
#gen-dad,
#gen-congrats,
#gen-love,
#bri-heart {
width: 270px;
height: 270px;
}
#beetle-poem {
background: url("../img/illus-sprite-poem.jpg") -427px 0;
}
#bee-poem {
background: url("../img/illus-sprite-poem.jpg") -5px 0;
}
#bun-poem {
background: url("../img/illus-sprite-poem.jpg") -855px 0;
}
#koala-poem {
background: url("../img/illus-sprite-poem.jpg") -3405px 0;
}
#penguin-poem {
background: url("../img/illus-sprite-poem.jpg") -1280px 0;
}
#spider-poem {
background: url("../img/illus-sprite-poem.jpg") -1705px 0;
}
#sun-poem {
background: url("../img/illus-sprite-poem.jpg") -2555px 0;
}
#tree-poem {
background: url("../img/illus-sprite-poem.jpg") -2980px 0;
}
#worm-poem {
background: url("../img/illus-sprite-poem.jpg") -2140px 0;
}
#gen-bomb {
background: url("../img/illus-sprite-general.jpg") -4254px 0;
}
#gen-box {
background: url("../img/illus-sprite-general.jpg") -3828px 0;
}
#gen-annivers {
background: url("../img/illus-sprite-general.jpg") -430px 0;
}
#gen-boom {
background: url("../img/illus-sprite-general.jpg") -4678px 0;
}
#gen-home {
background: url("../img/illus-sprite-general.jpg") -2553px 0;
}
#gen-bird {
background: url("../img/illus-sprite-general.jpg") -2125px 0;
}
#gen-unicorn {
background: url("../img/illus-sprite-general.jpg") -3402px 0;
}
#gen-wed {
background: url("../img/illus-sprite-general.jpg") 0 0;
}
#gen-butterfly {
background: url("../img/illus-sprite-general.jpg") -852px 0;
}
#gen-dad {
background: url("../img/illus-sprite-general.jpg") -1703px 0;
}
#gen-congrats {
background: url("../img/illus-sprite-general.jpg") -1276px 0;
}
#gen-love {
background: url("../img/illus-sprite-general.jpg") -2977px 0;
}
#xmas-robin {
background: url("../img/illus-sprite-xmas.jpg") -1277px 0;
}
#xmas-reindeer {
background: url("../img/illus-sprite-xmas.jpg") -850px 0;
}
#xmas-angel {
background: url("../img/illus-sprite-xmas.jpg") -425px 0;
}
#xmas-snowman {
background: url("../img/illus-sprite-xmas.jpg") -1700px 0;
}
#xmas-tree {
background: url("../img/illus-sprite-xmas.jpg") 0 0;
}
#xmas-heart {
background: url("../img/illus-sprite-xmas.jpg") -2135px 0;
}
#bri-montage {
width: 270px;
height: 270px;
background: url("../img/illus-sprite-brighton.jpg") -1745px 0;
}
@media (min-width: 768px) {
#bri-montage {
width: 610px;
height: 610px;
background: url("../img/illus-sprite-brighton.jpg") 0 0;
}
}
#bri-heart {
background: url("../img/illus-sprite-brighton.jpg") -1280px 0;
}
#bri-rainbow {
width: 270px;
height: 180px;
background: url("../img/illus-sprite-brighton.jpg") -710px 0;
}
/******* UI FOR ILLUSTRATIONS *******/
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 260px;
height: 260px;
}
#main-poem {
background: url("../img/illus-sprite-260px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-260px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-260px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-260px.jpg") -1277px 0;
}
/* NOT WORKING - DON't KNOW WHY?! */
/*@media (min-width: 1200px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 260px;
height: 260px;
}
#main-poem {
background: url("../img/illus-sprite-260px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-260px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-260px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-260px.jpg") -1277px 0;
}
}*/
@media (min-width: 768px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 130px;
height: 130px;
}
#main-poem {
background: url("../img/illus-sprite-150px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-150px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-150px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-150px.jpg") -1277px 0;
}
}
@media (min-width: 992px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 200px;
height: 200px;
}
#main-poem {
background: url("../img/illus-sprite-200px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-200px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-200px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-200px.jpg") -1277px 0;
}
}
@media (max-width: 600px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 200px;
height: 200px;
}
#main-poem {
background: url("../img/illus-sprite-200px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-200px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-200px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-200px.jpg") -1277px 0;
}
}
@media (max-width: 475px) {
#main-poem,
#main-bomb,
#main-brighton,
#main-robin {
width: 130px;
height: 130px;
}
#main-poem {
background: url("../img/illus-sprite-150px.jpg") 0 0;
}
#main-bomb {
background: url("../img/illus-sprite-150px.jpg") -852px 0;
}
#main-brighton {
background: url("../img/illus-sprite-150px.jpg") -428px 0;
}
#main-robin {
background: url("../img/illus-sprite-150px.jpg") -1277px 0;
}
}
/********* UI FOR PORTFOLIO ITEMS **********/
@media (min-width: 1200px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 358px;
height: 250px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -409px -306px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -820px -305px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") -1px -306px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -821px 0;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 0;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -409px 0;
}
}
@media (max-width: 1199px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 291px;
height: 203px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -906px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -907px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -907px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -819px -640px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 -643px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -635px;
}
}
@media (max-width: 991px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 218px;
height: 152px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -1465px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -1466px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -1465px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -818px -1198px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 1px -1200px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -1196px;
}
}
@media (max-width: 767px) {
#portf-cv,
#portf-techport,
#portf-mcuk,
#portf-sfaca,
#portf-awbri,
#portf-essbl {
width: 291px;
height: 203px;
}
#portf-cv {
background: url("../img/portf-sprite-ui.jpg") -407px -906px;
}
#portf-techport {
background: url("../img/portf-sprite-ui.jpg") -817px -907px;
}
#portf-mcuk {
background: url("../img/portf-sprite-ui.jpg") 0 -907px;
}
#portf-sfaca {
background: url("../img/portf-sprite-ui.jpg") -819px -640px;
}
#portf-essbl {
background: url("../img/portf-sprite-ui.jpg") 0 -643px;
}
#portf-awbri {
background: url("../img/portf-sprite-ui.jpg") -408px -635px;
}
}
/********* PORTFOLIO MODALS ************/
@media (min-width: 768px) {
#awesomebrighton,
#cv,
#sfaca,
#mcuk,
#techportfolio,
#essentialbl {
width: 700px;
height: 300px;
}
#essentialbl {
background: url("../img/portf-sprite-responsive.jpg") 0 0;
}
#awesomebrighton {
background: url("../img/portf-sprite-responsive.jpg") -760px -620px;
}
#cv {
background: url("../img/portf-sprite-responsive.jpg") 0 -310px;
}
#techportfolio {
background: url("../img/portf-sprite-responsive.jpg") 0 -620px;
}
#sfaca {
background: url("../img/portf-sprite-responsive.jpg") -760px -310px;
}
#mcuk {
background: url("../img/portf-sprite-responsive.jpg") -760px 0;
}
}
@media (max-width: 767px) {
#awesomebrighton,
#cv,
#sfaca,
#mcuk,
#techportfolio,
#essentialbl {
width: 350px;
height: 150px;
}
#essentialbl {
background: url("../img/portf-sprite-responsive.jpg") 0 -930px;
}
#awesomebrighton {
background: url("../img/portf-sprite-responsive.jpg") -760px -1240px;
}
#cv {
background: url("../img/portf-sprite-responsive.jpg") -7px -1090px;
}
#techportfolio {
background: url("../img/portf-sprite-responsive.jpg") 0 -1240px;
}
#sfaca {
background: url("../img/portf-sprite-responsive.jpg") -760px -1090px;
}
#mcuk {
background: url("../img/portf-sprite-responsive.jpg") -757px -930px;
}
}
@media (min-width: 1200px) {
#door2door {
width: 1100px;
height: 1066px;
background: url("../img/modal/door2door-montage.jpg") 0 -2300px;
}
#harmony {
width: 1100px;
height: 908px;
background: url("../img/modal/harmony-montage.jpg") 0 -2300px;
}
}
@media (max-width: 1199px) {
#door2door {
width: 700px;
height: 1009px;
background: url("../img/modal/door2door-montage.jpg") 0 -730px;
}
#harmony {
width: 700px;
height: 952px;
background: url("../img/modal/harmony-montage.jpg") 0 -730px;
}
}
@media (max-width: 767px) {
#door2door,
#harmony {
width: 300px;
height: 675px;
}
#door2door {
background: url("../img/modal/door2door-montage.jpg") 0 0;
}
#harmony {
background: url("../img/modal/harmony-montage.jpg") 0 0;
}
} | 0.40392 | 0.116261 |
.logo_footer {
margin-bottom: 30px;
}
.footer {
padding: 70px 0;
width: 100%;
background-color: #303132;
border-bottom: 2px solid #0181ff;
}
/* end */
/* footer-open css */
.footer-title {
position: relative;
left: 18%;
top: -40px;
text-decoration: none;
}
.footer-title h3 {
color: #03affb;
font-size: 32px;
font-family: "Montserrat";
color: rgb(2, 139, 254);
font-weight: bold;
position: relative;
bottom: 5px;
}
/* design box 1 */
.footer-box-firts .text {
font-size: 16px;
font-family: "Istok Web";
color: rgba(255, 255, 255, 0.851);
line-height: 1.5;
}
.col-lg-3 h3 {
font-weight: bold;
font-family: "Montserrat";
color: #fff;
}
.footer-box-firts a {
border-radius: 4px;
padding: 10px 13px;
background-image: -moz-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
background-image: -webkit-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
background-image: -ms-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
margin: 5px;
color: #fff;
border: 1px solid transparent;
display: inline-block;
}
.footer-box-firts a:hover {
background-image: unset;
border: 1px solid #fff;
transition: all 0.3s;
color: #fff;
}
/* end */
/* design box2 */
.footer-box-second ul li a {
margin-left: 10px;
text-decoration: none;
font-size: 16px;
font-family: "Istok Web";
color: rgb(255, 255, 255);
line-height: 35px;
}
.footer-box-second ul li {}
.footer-box-second ul li i {
color: #0181ff;
}
.footer-box-second h3 {
font-family: "Montserrat";
}
.footer-box-second hr {
position: relative;
bottom: 25px;
}
.footer-box-second hr {
width: 100px;
color: rgb(2, 129, 255);
opacity: 1;
position: relative;
left: 33px;
bottom: 11px;
}
/* end */
.footer-box-three .post {
display: flex;
}
.footer__popular-post {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-bottom: 30px;
margin-bottom: 30px;
display: block;
}
.footer__popular-post:last-child {
border: none;
padding-bottom: 0;
margin-bottom: 0;
}
.post p {
margin-bottom: 0;
}
.footer-box-three .post p {
font-weight: 400;
margin-left: 20px;
}
.footer-box-three hr {
position: relative;
bottom: 30px;
}
hr:not([size]) {
height: 1px;
width: 85px;
left: 2px;
}
.footer-box-three {
font-size: 16px;
font-family: "Montserrat";
color: rgb(255, 255, 255);
font-weight: bold;
height: 250px;
}
.footer-box-three .post img {
width: 80px;
height: 80px;
border-radius: 3px;
}
/* design text box */
.footer-text {
font-size: 16px;
font-family: "Montserrat";
color: rgb(255, 255, 255);
font-weight: 400;
line-height: 1.5;
display: flex;
margin-bottom: 30px;
}
.footer-text:last-child {
margin-bottom: 0;
}
.footer-text img {
width: 59px;
}
.footer-text p {
font-size: small;
color: #919192;
}
.footer-text img a {
position: relative;
left: 6px;
}
/* design end footer */
.footer-end {
background-color: #242424;
color: #fff;
}
.footer-end .row {
}
.footer-end-text {
font-family: 'Istok Web', sans-serif;
float: right;
}
.footer-end-text a {
text-decoration: none;
}
.footer-end-text a i {
color: #0181ff;
}
/* end */
/* design reponsive */
@media only screen and (min-width: 100px) and (max-width: 1170px) {
.footer {
max-width: 100%;
}
.container {
max-width: 100%;
}
.footer-end {
max-width: 100%;
}
}
.place {
position: relative;
top: 50px;
}
@media only screen and (max-width: 991px) {
.quicklinks {
margin-top: 30px;
}
.popular {
margin-top: 30px;
}
}
@media only screen and (max-width: 623px) {
.popular {
margin-top: 30px;
}
}
@media only screen and (max-width: 575px) {
.quicklinks {
margin-top: 30px;
}
}
/* end */ | public/css/stylefooter.css |
.logo_footer {
margin-bottom: 30px;
}
.footer {
padding: 70px 0;
width: 100%;
background-color: #303132;
border-bottom: 2px solid #0181ff;
}
/* end */
/* footer-open css */
.footer-title {
position: relative;
left: 18%;
top: -40px;
text-decoration: none;
}
.footer-title h3 {
color: #03affb;
font-size: 32px;
font-family: "Montserrat";
color: rgb(2, 139, 254);
font-weight: bold;
position: relative;
bottom: 5px;
}
/* design box 1 */
.footer-box-firts .text {
font-size: 16px;
font-family: "Istok Web";
color: rgba(255, 255, 255, 0.851);
line-height: 1.5;
}
.col-lg-3 h3 {
font-weight: bold;
font-family: "Montserrat";
color: #fff;
}
.footer-box-firts a {
border-radius: 4px;
padding: 10px 13px;
background-image: -moz-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
background-image: -webkit-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
background-image: -ms-linear-gradient( 104deg, rgb(5,176,255) 0%, rgb(2,139,254) 100%);
margin: 5px;
color: #fff;
border: 1px solid transparent;
display: inline-block;
}
.footer-box-firts a:hover {
background-image: unset;
border: 1px solid #fff;
transition: all 0.3s;
color: #fff;
}
/* end */
/* design box2 */
.footer-box-second ul li a {
margin-left: 10px;
text-decoration: none;
font-size: 16px;
font-family: "Istok Web";
color: rgb(255, 255, 255);
line-height: 35px;
}
.footer-box-second ul li {}
.footer-box-second ul li i {
color: #0181ff;
}
.footer-box-second h3 {
font-family: "Montserrat";
}
.footer-box-second hr {
position: relative;
bottom: 25px;
}
.footer-box-second hr {
width: 100px;
color: rgb(2, 129, 255);
opacity: 1;
position: relative;
left: 33px;
bottom: 11px;
}
/* end */
.footer-box-three .post {
display: flex;
}
.footer__popular-post {
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-bottom: 30px;
margin-bottom: 30px;
display: block;
}
.footer__popular-post:last-child {
border: none;
padding-bottom: 0;
margin-bottom: 0;
}
.post p {
margin-bottom: 0;
}
.footer-box-three .post p {
font-weight: 400;
margin-left: 20px;
}
.footer-box-three hr {
position: relative;
bottom: 30px;
}
hr:not([size]) {
height: 1px;
width: 85px;
left: 2px;
}
.footer-box-three {
font-size: 16px;
font-family: "Montserrat";
color: rgb(255, 255, 255);
font-weight: bold;
height: 250px;
}
.footer-box-three .post img {
width: 80px;
height: 80px;
border-radius: 3px;
}
/* design text box */
.footer-text {
font-size: 16px;
font-family: "Montserrat";
color: rgb(255, 255, 255);
font-weight: 400;
line-height: 1.5;
display: flex;
margin-bottom: 30px;
}
.footer-text:last-child {
margin-bottom: 0;
}
.footer-text img {
width: 59px;
}
.footer-text p {
font-size: small;
color: #919192;
}
.footer-text img a {
position: relative;
left: 6px;
}
/* design end footer */
.footer-end {
background-color: #242424;
color: #fff;
}
.footer-end .row {
}
.footer-end-text {
font-family: 'Istok Web', sans-serif;
float: right;
}
.footer-end-text a {
text-decoration: none;
}
.footer-end-text a i {
color: #0181ff;
}
/* end */
/* design reponsive */
@media only screen and (min-width: 100px) and (max-width: 1170px) {
.footer {
max-width: 100%;
}
.container {
max-width: 100%;
}
.footer-end {
max-width: 100%;
}
}
.place {
position: relative;
top: 50px;
}
@media only screen and (max-width: 991px) {
.quicklinks {
margin-top: 30px;
}
.popular {
margin-top: 30px;
}
}
@media only screen and (max-width: 623px) {
.popular {
margin-top: 30px;
}
}
@media only screen and (max-width: 575px) {
.quicklinks {
margin-top: 30px;
}
}
/* end */ | 0.348645 | 0.125199 |
body {
font-size: 16px;
line-height: 1.5;
font-family: 'Dosis', 'Helvetica Neue', 'Arial', 'Verdana', 'H-BuMing', 'FZNew XiuLi-Z11', 'Hiragino Mincho ProN', 'YuMincho', 'Adobe Ming Std', 'LiSong Pro Light', 'Songti TC', 'PMingLiU', serif;
}
ul {
list-style: none;
padding: 0;
font-size: 1.2em;
}
ul li {
background: url(simple-nav-arrow.png) no-repeat 0 center;
border-bottom: 1px dotted #CED8DF;
list-style: none;
margin: 0;
display: block;
padding: 5px 0 5px 20px;
position: relative;
}
ul .title {
display: block;
margin-right: 100px;
color: #666;
text-decoration: none;
-webkit-transition: color 500ms ease;
-moz-transition: color 500ms ease;
transition: color 500ms ease;
}
ul .title:hover {
color: #333;
}
ul .btn {
position: absolute;
top: 10px;
right: 10px;
height: 20px;
line-height: 20px;
font-size: 14px;
text-decoration: none;
color: #5D0DB7;
padding: 0 4px;
}
ul .btn-podcast {
padding-left: 24px;
background: url(podcast-icon.png) no-repeat 4px center;
background-size: 16px;
}
.clearfix {
clear: both;
}
.header {
font-size: 14px;
}
.header .logo {
position: absolute;
top: 5px;
right: 8px;
padding-left: 20px;
background: url(Phoenix_Chinese.svg) no-repeat 0 center;
background-size: 16px auto;
}
.footer {
text-align: center;
font-size: 10px;
color: #ccc;
}
.footer a {
color: inherit;
text-decoration: none;
}
.container h1 {
margin-left: 20px;
}
.page-navi {
margin: 8px 0 15px 0;
}
.page-navi a {
display: block;
float: left;
width: 50%;
height: 20px;
padding: 4px 0;
text-align: center;
text-decoration: none;
color: #9c9c9c;
}
.navi-banner {
margin: 20px;
}
.table {
margin: 20px;
}
.table .trow {
height: 36px;
line-height: 36px;
}
.table .tcell {
float: left;
box-sizing: border-box;
width: 33%;
padding: 0 12px;
}
.table .thead {
border-bottom: 1px solid #CED8DF;
font-weight: bold;
text-align: center;
}
.table .tbody .trow {
border-bottom: 1px dotted #CED8DF;
}
.table .tbody .trow:hover {
background-color: #f7f7f7;
}
.table a {
color: inherit;
text-decoration: none;
}
.table-statistics .ttitle {
width: 60%;
}
.table-statistics .tcount {
width: 15%;
}
.table-statistics .ttime {
width: 25%;
}
.table-statistics .tbody .tcount {
text-align: right;
}
.table-statistics .tbody .ttime {
text-align: center;
}
.form select,
.form input {
width: 96%;
font-size: 16px;
padding: 4px;
}
.ad-json {
margin-bottom: 20px;
}
.ad-json .column {
float: left;
width: 48%;
}
.ad-json .column:first-child {
margin-right: 2%;
}
.ad-json textarea {
box-sizing: border-box;
width: 100%;
height: 80px;
resize: vertical;
border: 1px solid #ccc;
} | static/css/common.css | body {
font-size: 16px;
line-height: 1.5;
font-family: 'Dosis', 'Helvetica Neue', 'Arial', 'Verdana', 'H-BuMing', 'FZNew XiuLi-Z11', 'Hiragino Mincho ProN', 'YuMincho', 'Adobe Ming Std', 'LiSong Pro Light', 'Songti TC', 'PMingLiU', serif;
}
ul {
list-style: none;
padding: 0;
font-size: 1.2em;
}
ul li {
background: url(simple-nav-arrow.png) no-repeat 0 center;
border-bottom: 1px dotted #CED8DF;
list-style: none;
margin: 0;
display: block;
padding: 5px 0 5px 20px;
position: relative;
}
ul .title {
display: block;
margin-right: 100px;
color: #666;
text-decoration: none;
-webkit-transition: color 500ms ease;
-moz-transition: color 500ms ease;
transition: color 500ms ease;
}
ul .title:hover {
color: #333;
}
ul .btn {
position: absolute;
top: 10px;
right: 10px;
height: 20px;
line-height: 20px;
font-size: 14px;
text-decoration: none;
color: #5D0DB7;
padding: 0 4px;
}
ul .btn-podcast {
padding-left: 24px;
background: url(podcast-icon.png) no-repeat 4px center;
background-size: 16px;
}
.clearfix {
clear: both;
}
.header {
font-size: 14px;
}
.header .logo {
position: absolute;
top: 5px;
right: 8px;
padding-left: 20px;
background: url(Phoenix_Chinese.svg) no-repeat 0 center;
background-size: 16px auto;
}
.footer {
text-align: center;
font-size: 10px;
color: #ccc;
}
.footer a {
color: inherit;
text-decoration: none;
}
.container h1 {
margin-left: 20px;
}
.page-navi {
margin: 8px 0 15px 0;
}
.page-navi a {
display: block;
float: left;
width: 50%;
height: 20px;
padding: 4px 0;
text-align: center;
text-decoration: none;
color: #9c9c9c;
}
.navi-banner {
margin: 20px;
}
.table {
margin: 20px;
}
.table .trow {
height: 36px;
line-height: 36px;
}
.table .tcell {
float: left;
box-sizing: border-box;
width: 33%;
padding: 0 12px;
}
.table .thead {
border-bottom: 1px solid #CED8DF;
font-weight: bold;
text-align: center;
}
.table .tbody .trow {
border-bottom: 1px dotted #CED8DF;
}
.table .tbody .trow:hover {
background-color: #f7f7f7;
}
.table a {
color: inherit;
text-decoration: none;
}
.table-statistics .ttitle {
width: 60%;
}
.table-statistics .tcount {
width: 15%;
}
.table-statistics .ttime {
width: 25%;
}
.table-statistics .tbody .tcount {
text-align: right;
}
.table-statistics .tbody .ttime {
text-align: center;
}
.form select,
.form input {
width: 96%;
font-size: 16px;
padding: 4px;
}
.ad-json {
margin-bottom: 20px;
}
.ad-json .column {
float: left;
width: 48%;
}
.ad-json .column:first-child {
margin-right: 2%;
}
.ad-json textarea {
box-sizing: border-box;
width: 100%;
height: 80px;
resize: vertical;
border: 1px solid #ccc;
} | 0.444565 | 0.090253 |
.featured-cat-books {
min-height: 80px;
width: 100%;
}
.featured-cat-books-title {
width: 710px;
margin: 0 auto;
margin-bottom: 10px;
min-height: 5px;
align-items: flex-start;
}
.featured-cat-books-title span{
letter-spacing: -0.05em;
font-weight:500;
color: #7C928F;
}
.featured-cat-books-wrapper {
width: 710px;
margin: 0 auto;
border-top: 1px solid #DADADA
}
.featured-cat-book-header {
margin-top: 5px;
flex-direction: row;
height: 30px;
letter-spacing: -0.03em;
justify-content: space-between;
align-items: flex-end;
}
.featured-cat-book-header span {
font-weight: 600;
color: #7C928F;
}
.featured-cat-book-header a {
color: #DBA621;
font-weight: 500;
text-decoration: none;
transition: all 0.15s ease-in;
}
.featured-cat-book-header a:hover {
color: #C59110;
transition: all 0.15s ease-in;
}
.featured-cat-book-header a:active {
transform: scale(0.8);
transition: all 0.15s ease-in;
}
.featured-cat-books-list-cont {
width: 710px;
min-height: 50px;
margin: 0 auto;
overflow-x: scroll;
overflow-y: hidden;
}
/* width */
.featured-cat-books-list-cont::-webkit-scrollbar {
height: 4px;
}
/* Track */
.featured-cat-books-list-cont::-webkit-scrollbar-track {
background: #EDEDED;
}
/* Handle */
.featured-cat-books-list-cont::-webkit-scrollbar-thumb {
background: #DEDEDE;
}
/* Handle on hover */
.featured-cat-books-list-cont::-webkit-scrollbar-thumb:hover {
background: #D0E7E4;
}
.featured-cat-books-list-wrapper {
width: 710px;
min-height: 50px;
margin: 0 auto;
margin-bottom: 15px;
flex-direction: row;
justify-content: space-between;
}
.featured-cat-books-indiv {
height: 270px;
justify-content: space-between;
align-items: flex-start;
min-width: 20px;
margin-top: 15px;
}
.featured-cat-books-indiv img {
width: 130px;
height: auto;
}
.books-cat-desc {
width: 100%;
align-items: flex-start;
}
.books-cat-desc a {
text-decoration: none;
}
.books-cat-desc .book-title {
color: #4B6C68;
letter-spacing: -0.025em;
}
.books-cat-desc .book-author {
letter-spacing: -0.025em;
color: #DBA621;
}
.books-cat-desc .book-author:hover, .books-cat-desc .book-title:hover {
text-decoration: underline;
}
@media (max-width: 1068px) {
.featured-cat-books-title, .featured-cat-books-wrapper,
.featured-cat-books-list-cont {
width: 90%;
}
.featured-cat-books-list-wrapper {
width: 100%;
}
}
@media (max-width: 968px) {
.featured-cat-books-indiv img {
width: 120px;
}
}
@media (max-width: 868px) {
.featured-cat-books-indiv img {
width: 110px;
}
}
@media (max-width: 768px) {
.featured-cat-books-indiv {
height: 235px;
}
.featured-cat-books-indiv img {
width: 95px;
}
}
@media (max-width: 668px) {
.featured-cat-books-list-wrapper {
width: 530px;
}
.featured-cat-books-indiv {
height: 250px;
}
.featured-cat-books-indiv img {
width: 105px;
}
}
@media (max-width: 568px) {
.featured-cat-books-list-wrapper {
width: 500px;
}
} | styles/IndFtBooks/featuredcatbooks.css | .featured-cat-books {
min-height: 80px;
width: 100%;
}
.featured-cat-books-title {
width: 710px;
margin: 0 auto;
margin-bottom: 10px;
min-height: 5px;
align-items: flex-start;
}
.featured-cat-books-title span{
letter-spacing: -0.05em;
font-weight:500;
color: #7C928F;
}
.featured-cat-books-wrapper {
width: 710px;
margin: 0 auto;
border-top: 1px solid #DADADA
}
.featured-cat-book-header {
margin-top: 5px;
flex-direction: row;
height: 30px;
letter-spacing: -0.03em;
justify-content: space-between;
align-items: flex-end;
}
.featured-cat-book-header span {
font-weight: 600;
color: #7C928F;
}
.featured-cat-book-header a {
color: #DBA621;
font-weight: 500;
text-decoration: none;
transition: all 0.15s ease-in;
}
.featured-cat-book-header a:hover {
color: #C59110;
transition: all 0.15s ease-in;
}
.featured-cat-book-header a:active {
transform: scale(0.8);
transition: all 0.15s ease-in;
}
.featured-cat-books-list-cont {
width: 710px;
min-height: 50px;
margin: 0 auto;
overflow-x: scroll;
overflow-y: hidden;
}
/* width */
.featured-cat-books-list-cont::-webkit-scrollbar {
height: 4px;
}
/* Track */
.featured-cat-books-list-cont::-webkit-scrollbar-track {
background: #EDEDED;
}
/* Handle */
.featured-cat-books-list-cont::-webkit-scrollbar-thumb {
background: #DEDEDE;
}
/* Handle on hover */
.featured-cat-books-list-cont::-webkit-scrollbar-thumb:hover {
background: #D0E7E4;
}
.featured-cat-books-list-wrapper {
width: 710px;
min-height: 50px;
margin: 0 auto;
margin-bottom: 15px;
flex-direction: row;
justify-content: space-between;
}
.featured-cat-books-indiv {
height: 270px;
justify-content: space-between;
align-items: flex-start;
min-width: 20px;
margin-top: 15px;
}
.featured-cat-books-indiv img {
width: 130px;
height: auto;
}
.books-cat-desc {
width: 100%;
align-items: flex-start;
}
.books-cat-desc a {
text-decoration: none;
}
.books-cat-desc .book-title {
color: #4B6C68;
letter-spacing: -0.025em;
}
.books-cat-desc .book-author {
letter-spacing: -0.025em;
color: #DBA621;
}
.books-cat-desc .book-author:hover, .books-cat-desc .book-title:hover {
text-decoration: underline;
}
@media (max-width: 1068px) {
.featured-cat-books-title, .featured-cat-books-wrapper,
.featured-cat-books-list-cont {
width: 90%;
}
.featured-cat-books-list-wrapper {
width: 100%;
}
}
@media (max-width: 968px) {
.featured-cat-books-indiv img {
width: 120px;
}
}
@media (max-width: 868px) {
.featured-cat-books-indiv img {
width: 110px;
}
}
@media (max-width: 768px) {
.featured-cat-books-indiv {
height: 235px;
}
.featured-cat-books-indiv img {
width: 95px;
}
}
@media (max-width: 668px) {
.featured-cat-books-list-wrapper {
width: 530px;
}
.featured-cat-books-indiv {
height: 250px;
}
.featured-cat-books-indiv img {
width: 105px;
}
}
@media (max-width: 568px) {
.featured-cat-books-list-wrapper {
width: 500px;
}
} | 0.481454 | 0.065515 |
@-moz-document domain("4chan.org"){
hr.abovePostForm , html body hr
{visibility: hidden;}
div#boardNavDesktop.desktop , html body div#boardNavDesktopFoot.desktop {
text-align: center !important;}
form table#postForm.postForm{
position:fixed !important;
width:450px !important;
height:0px !important;
opacity:0.0 !important;
right:75px !important;
top:100px;
-moz-transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;}
form table#postForm.postForm:hover{
opacity:1.0 !important;
-moz-transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;}
div#boardNavDesktop.desktop , div#boardNavDesktopFoot.desktop{
color: transparent !important;}
form#delform div.board div.thread div.postContainer div.post {
border: none !important;
border-radius: 4px !important;
-webkit-border-radius: 4px !important;}
TD[style="border: 1px dashed;"], TABLE[style="border: 1px dashed black;"] {
border: none !important;
border-radius: 5px 15px 25px 15px / 10px 30px 40px 31px !important;
box-shadow: none !important;
-webkit-border-radius: 5px 15px 25px 15px / 10px 30px 40px 31px !important;
-webkit-box-shadow: none !important;}
div.postingMode, html body div.pagelist div.prev form input , html body div.pagelist div.next span, div.postingMode, html body div a [alt=""] {
display: none !important;}
div.pagelist {
border: none !important;
border-radius: 30px 30px 30px 30px / 30px 30px 30px 30px !important;
box-shadow: none !important;
color: transparent !important;
-webkit-border-radius: 30px 30px 30px 30px / 30px 30px 30px 30px !important;
-webkit-box-shadow: none !important;
color: transparent !important;
position:absolute;
right:800px;}
div.pagelist div.prev span, div.pagelist div.next form input, form table#postForm.postForm tbody tr.rules{
display: none !important;}
form#delform div.board div.thread div.postContainer div.post div.postInfo input {
-moz-appearance: none !important;
-webkit-appearance: none !important;
border: 1px solid rgba(0,0,0,.1) !important;
height: 12px !important;
width: 13px !important; border-radius: 4px !important;}
.highlightPost {
box-shadow: 0 0 5px rgba(0, 0, 255, 1);
-webkit-box-shadow: 0 0 6px rgba(0, 0, 255, 0.7);
box-shadow: 0 0 6px rgba(0, 120, 255, 0.7);
border:1px solid rgba(0,0,255, 0.8); }
html body form table#postForm.postForm tbody tr td {
border-radius: 7px 7px 7px 7px / 7px 7px 7px 7px !important;
box-shadow: none !important;
-webkit-border-radius: 7px 7px 7px 7px / 7px 7px 7px 7px !important;
-webkit-box-shadow: none !important;}
} | data/usercss/64764.user.css | @-moz-document domain("4chan.org"){
hr.abovePostForm , html body hr
{visibility: hidden;}
div#boardNavDesktop.desktop , html body div#boardNavDesktopFoot.desktop {
text-align: center !important;}
form table#postForm.postForm{
position:fixed !important;
width:450px !important;
height:0px !important;
opacity:0.0 !important;
right:75px !important;
top:100px;
-moz-transition: all 0.5s ease-in-out 0s;
-webkit-transition: all 0.5s ease-in-out 0s;}
form table#postForm.postForm:hover{
opacity:1.0 !important;
-moz-transition: all 0.2s ease-in-out 0s;
-webkit-transition: all 0.2s ease-in-out 0s;}
div#boardNavDesktop.desktop , div#boardNavDesktopFoot.desktop{
color: transparent !important;}
form#delform div.board div.thread div.postContainer div.post {
border: none !important;
border-radius: 4px !important;
-webkit-border-radius: 4px !important;}
TD[style="border: 1px dashed;"], TABLE[style="border: 1px dashed black;"] {
border: none !important;
border-radius: 5px 15px 25px 15px / 10px 30px 40px 31px !important;
box-shadow: none !important;
-webkit-border-radius: 5px 15px 25px 15px / 10px 30px 40px 31px !important;
-webkit-box-shadow: none !important;}
div.postingMode, html body div.pagelist div.prev form input , html body div.pagelist div.next span, div.postingMode, html body div a [alt=""] {
display: none !important;}
div.pagelist {
border: none !important;
border-radius: 30px 30px 30px 30px / 30px 30px 30px 30px !important;
box-shadow: none !important;
color: transparent !important;
-webkit-border-radius: 30px 30px 30px 30px / 30px 30px 30px 30px !important;
-webkit-box-shadow: none !important;
color: transparent !important;
position:absolute;
right:800px;}
div.pagelist div.prev span, div.pagelist div.next form input, form table#postForm.postForm tbody tr.rules{
display: none !important;}
form#delform div.board div.thread div.postContainer div.post div.postInfo input {
-moz-appearance: none !important;
-webkit-appearance: none !important;
border: 1px solid rgba(0,0,0,.1) !important;
height: 12px !important;
width: 13px !important; border-radius: 4px !important;}
.highlightPost {
box-shadow: 0 0 5px rgba(0, 0, 255, 1);
-webkit-box-shadow: 0 0 6px rgba(0, 0, 255, 0.7);
box-shadow: 0 0 6px rgba(0, 120, 255, 0.7);
border:1px solid rgba(0,0,255, 0.8); }
html body form table#postForm.postForm tbody tr td {
border-radius: 7px 7px 7px 7px / 7px 7px 7px 7px !important;
box-shadow: none !important;
-webkit-border-radius: 7px 7px 7px 7px / 7px 7px 7px 7px !important;
-webkit-box-shadow: none !important;}
} | 0.092708 | 0.042048 |
.member-box {
max-width: 400px;
margin: 50px auto 0; }
@media (min-width: 992px) {
.member-box {
margin: 20px auto 0; } }
.member-box p {
margin-bottom: 0; }
.member-box img {
width: 80%;
height: 80%;
object-fit: cover;
overflow: hidden;
border-radius: 50%; }
.timeline {
position: relative;
padding: 0;
list-style: none; }
.timeline:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 40px;
width: 2px;
margin-left: -1.5px;
background-color: #f1f1f1; }
.timeline > li {
position: relative;
margin-bottom: 50px;
min-height: 50px; }
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table; }
.timeline > li:after {
clear: both; }
.timeline > li .timeline-panel {
float: right;
position: relative;
width: 100%;
padding: 0 20px 0 100px;
text-align: left; }
.timeline > li .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0; }
.timeline > li .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0; }
.timeline > li .timeline-image {
z-index: 100;
position: absolute;
left: 0;
width: 80px;
height: 80px;
margin-left: 0;
border: 7px solid #f1f1f1;
border-radius: 100%;
text-align: center;
color: #fff;
background-color: #f1f1f1; }
.timeline > li .timeline-image h4 {
margin-top: 12px;
font-size: 10px;
line-height: 14px; }
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 20px 0 100px;
text-align: left; }
.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0; }
.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0; }
.timeline > li:last-child {
margin-bottom: 0; }
.timeline .timeline-heading h4 {
margin-top: 0;
color: inherit; }
.timeline .timeline-heading h4.subheading {
text-transform: none; }
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
margin-bottom: 0; }
.timeline a {
color: black; }
@media (min-width: 768px) {
.timeline:before {
left: 50%; }
.timeline > li {
margin-bottom: 100px;
min-height: 100px; }
.timeline > li .timeline-panel {
float: left;
width: 41%;
padding: 0 20px 20px 30px;
text-align: right; }
.timeline > li .timeline-image {
left: 50%;
width: 100px;
height: 100px;
margin-left: -50px; }
.timeline > li .timeline-image h4 {
margin-top: 16px;
font-size: 13px;
line-height: 18px; }
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 30px 20px 20px;
text-align: left; } }
@media (min-width: 992px) {
.timeline > li {
min-height: 150px; }
.timeline > li .timeline-panel {
padding: 0 20px 20px; }
.timeline > li .timeline-image {
width: 150px;
height: 150px;
margin-left: -75px; }
.timeline > li .timeline-image h4 {
margin-top: 30px;
font-size: 18px;
line-height: 26px; }
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 20px 20px; } }
@media (min-width: 1200px) {
.timeline > li {
min-height: 170px; }
.timeline > li .timeline-panel {
padding: 0 20px 20px 100px; }
.timeline > li .timeline-image {
width: 170px;
height: 170px;
margin-left: -85px; }
.timeline > li .timeline-image h4 {
margin-top: 40px; }
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 100px 20px 20px; } }
.pagehead {
height: 15em !important;
min-height: 15em !important; }
.page-section-smaller {
padding: 2rem 0; }
ul.icons {
cursor: default;
list-style: none;
padding-left: 0; }
ul.icons li {
display: inline-block;
padding: 0 1em 0 0; }
ul.icons li:last-child {
padding-right: 0 !important; }
ul.icons.bulleted li {
padding-left: 2em;
position: relative;
display: block; }
ul.icons.bulleted li.icon:before {
left: 0;
position: absolute;
top: 0; }
ul.icons.bulleted li > :last-child {
margin-bottom: 1em; } | _site/assets/css/main.css | .member-box {
max-width: 400px;
margin: 50px auto 0; }
@media (min-width: 992px) {
.member-box {
margin: 20px auto 0; } }
.member-box p {
margin-bottom: 0; }
.member-box img {
width: 80%;
height: 80%;
object-fit: cover;
overflow: hidden;
border-radius: 50%; }
.timeline {
position: relative;
padding: 0;
list-style: none; }
.timeline:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 40px;
width: 2px;
margin-left: -1.5px;
background-color: #f1f1f1; }
.timeline > li {
position: relative;
margin-bottom: 50px;
min-height: 50px; }
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table; }
.timeline > li:after {
clear: both; }
.timeline > li .timeline-panel {
float: right;
position: relative;
width: 100%;
padding: 0 20px 0 100px;
text-align: left; }
.timeline > li .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0; }
.timeline > li .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0; }
.timeline > li .timeline-image {
z-index: 100;
position: absolute;
left: 0;
width: 80px;
height: 80px;
margin-left: 0;
border: 7px solid #f1f1f1;
border-radius: 100%;
text-align: center;
color: #fff;
background-color: #f1f1f1; }
.timeline > li .timeline-image h4 {
margin-top: 12px;
font-size: 10px;
line-height: 14px; }
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 20px 0 100px;
text-align: left; }
.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0; }
.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0; }
.timeline > li:last-child {
margin-bottom: 0; }
.timeline .timeline-heading h4 {
margin-top: 0;
color: inherit; }
.timeline .timeline-heading h4.subheading {
text-transform: none; }
.timeline .timeline-body > p,
.timeline .timeline-body > ul {
margin-bottom: 0; }
.timeline a {
color: black; }
@media (min-width: 768px) {
.timeline:before {
left: 50%; }
.timeline > li {
margin-bottom: 100px;
min-height: 100px; }
.timeline > li .timeline-panel {
float: left;
width: 41%;
padding: 0 20px 20px 30px;
text-align: right; }
.timeline > li .timeline-image {
left: 50%;
width: 100px;
height: 100px;
margin-left: -50px; }
.timeline > li .timeline-image h4 {
margin-top: 16px;
font-size: 13px;
line-height: 18px; }
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
padding: 0 30px 20px 20px;
text-align: left; } }
@media (min-width: 992px) {
.timeline > li {
min-height: 150px; }
.timeline > li .timeline-panel {
padding: 0 20px 20px; }
.timeline > li .timeline-image {
width: 150px;
height: 150px;
margin-left: -75px; }
.timeline > li .timeline-image h4 {
margin-top: 30px;
font-size: 18px;
line-height: 26px; }
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 20px 20px; } }
@media (min-width: 1200px) {
.timeline > li {
min-height: 170px; }
.timeline > li .timeline-panel {
padding: 0 20px 20px 100px; }
.timeline > li .timeline-image {
width: 170px;
height: 170px;
margin-left: -85px; }
.timeline > li .timeline-image h4 {
margin-top: 40px; }
.timeline > li.timeline-inverted > .timeline-panel {
padding: 0 100px 20px 20px; } }
.pagehead {
height: 15em !important;
min-height: 15em !important; }
.page-section-smaller {
padding: 2rem 0; }
ul.icons {
cursor: default;
list-style: none;
padding-left: 0; }
ul.icons li {
display: inline-block;
padding: 0 1em 0 0; }
ul.icons li:last-child {
padding-right: 0 !important; }
ul.icons.bulleted li {
padding-left: 2em;
position: relative;
display: block; }
ul.icons.bulleted li.icon:before {
left: 0;
position: absolute;
top: 0; }
ul.icons.bulleted li > :last-child {
margin-bottom: 1em; } | 0.579757 | 0.072966 |
@-webkit-keyframes rotate-center {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate-center {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes jello-vertical {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
3% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
4% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
5% {
-webkit-transform: scale3d(0.85, 1.15, 1);
transform: scale3d(0.85, 1.15, 1);
}
6.5% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
7.5% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
10% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes jello-vertical {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
3% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
4% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
5% {
-webkit-transform: scale3d(0.85, 1.15, 1);
transform: scale3d(0.85, 1.15, 1);
}
6.5% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
7.5% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
10% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@font-face {
font-family: "poppinsBold";
font-weight: bold;
src: url('../fonts/Poppins-Bold.ttf');
}
@font-face {
font-family: "poppinsMedium";
font-weight: medium;
src: url('../fonts/Poppins-Medium.ttf');
}
body
{
width: 100%;
height: 100vh;
display: flex;
user-select: none;
overflow: hidden;
}
.leftContainer
{
width: 10%;
height: 100%;
background-color: #FFF;
z-index: 999;
}
.sideBarre
{
position: absolute;
height: 100%;
width: 50px;
left: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.sideBarre_content
{
position: relative;
width: 100%;
height: 80%;
display: flex;
justify-content: center;
align-items: flex-end;
}
.sideBarre img
{
height: 100%;
position: absolute;
}
.sideBarre img:first-child
{
z-index: 3;
}
.sideBarre img:last-child
{
z-index: 1;
}
.hiddenBarre
{
width: 100%;
height: 90%;
background-color: #FFF;
z-index: 2;
}
.middleContainer
{
width: 65%;
height: 100%;
background-color: #ecf0f1;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
padding: 10px 30px;
border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
-webkit-border-radius: 10px 0px 0px 10px;
border: 0px solid #000000;
}
.flickity-slider
{
height: 98%;
}
.main-carousel
{
width: 100%;
height: 100%;
}
.carousel-cell
{
width: 100%;
height: 100%;
overflow-y: auto;
}
.wrapCarousel
{
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 0 100px;
}
.messageContainer
{
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: flex-end;
box-sizing: border-box;
padding-bottom: 20px;
}
.messageContainer>div
{
display: flex;
justify-content: flex-end;
align-items: center;
}
.messageContainer>div>div
{
border-radius: 18px 18px 3px 18px;
-moz-border-radius: 18px 18px 3px 18px;
-webkit-border-radius: 18px 18px 3px 18px;
border: 0px solid #000000;
padding: 20px;
margin-top: 10px;
max-width: 80%;
}
.messageContainer p
{
font-family:"poppinsMedium", sans-serif;
color: #FFF;
font-size: 13px;
}
.messageContainer>div>div
{
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.messageContainer input[type="submit"]
{
cursor: pointer;
border-radius: 50%;
margin-right: 5px;
width: 20px;
height: 20px;
transition: .2s;
}
.messageContainer .input_validated
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 0);
}
.messageContainer .input_incomplete
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 0);
}
.messageContainer .input_declined
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 0);
}
.messageContainer .input_validated:hover
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 1);
}
.messageContainer .input_incomplete:hover
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 1);
}
.messageContainer .input_declined:hover
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 1);
}
.messageContainer .input_validated-select
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 1);
}
.messageContainer .input_incomplete-select
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 1);
}
.messageContainer .input_declined-select
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 1);
}
.messageContainer .treatment
{
background-color: #636e72;
}
.messageContainer .treatment::before
{
background-color: #636e72;
}
.messageContainer .declined
{
background-color: #EA2027;
}
.messageContainer .declined::before
{
background-color: #EA2027;
}
.messageContainer .validated
{
background-color: #27ae60;
}
.messageContainer .validated::before
{
background-color: #27ae60;
}
.messageContainer .incomplete
{
background-color: #F39C12;
}
.messageContainer .incomplete::before
{
background-color: #F39C12;
}
.sendContainer
{
width: 100%;
height: 10%;
display: flex;
justify-content: center;
align-items: center;
}
.sendContainer form
{
width: 100%;
height: 90%;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
background-color: #FFF;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 0 50px;
}
.sendContainer form textarea
{
border: none;
resize: none;
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 20px 10px 0 10px;
font-family:"poppinsMedium", sans-serif;
color: #000;
font-size: 13px;
}
.sendContainer form>div
{
margin-left: 10px;
}
.sendContainer form input[type="submit"]
{
background-image: url(../img/paper-plane.png);
background-repeat: no-repeat;
background-position: center;
background-color: #00A19C;
height: 35px;
width: 35px;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
cursor: pointer;
-webkit-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
}
.rightContainer
{
width: 25%;
height: 100%;
background-color: #ecf0f1;
border-left: 1px solid rgba(189, 195, 199,.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
z-index: 999;
}
.typeM
{
width: 80%;
height: 10%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
display: flex;
justify-content: center;
align-items: center;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
}
.flickiButton-select::before
{
content: '';
width: 10px;
height: 10px;
background-color: #00A19C;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
p
{
font-family:"poppinsMedium", sans-serif;
color: #00A19C;
font-size: 15px;
}
.nav
{
width: 80%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
}
.nav>div
{
width: 100%;
}
.nav>div:first-child
{
box-sizing: border-box;
padding: 10px 0;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid rgba(189, 195, 199,.5);
}
.nav>div:last-child
{
box-sizing: border-box;
padding: 5px 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.nav>div:last-child span
{
font-family:"poppinsMedium", sans-serif;
color: #000;
font-size: 13px;
cursor: pointer;
margin: 5px 0;
display: flex;
align-items: center;
}
.advancement
{
width: 80%;
height: 10%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
display: flex;
justify-content: center;
align-items: center;
}
.advancement span
{
font-family: "poppinsMedium", sans-serif;
color:#00A19C;
font-size: 15px;
}
.legend
{
width: 80%;
height: 20%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
display: flex;
flex-direction: column;
justify-content: center;
box-sizing: border-box;
padding-left: 30px;
}
.legend span
{
font-family:"poppinsMedium", sans-serif;
font-size: 13px;
}
.legend span:nth-of-type(1)
{
color: #27ae60;
display: flex;
align-items: center;
}
.legend span:nth-of-type(2)
{
color: #EA2027;
display: flex;
align-items: center;
}
.legend span:nth-of-type(3)
{
color: #F39C12;
display: flex;
align-items: center;
}
.legend span:nth-of-type(4)
{
color: #636e72;
display: flex;
align-items: center;
}
.legend span:nth-of-type(1):before
{
content: '';
width: 10px;
height: 10px;
background-color: #27ae60;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(2):before
{
content: '';
width: 10px;
height: 10px;
background-color: #EA2027;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(3):before
{
content: '';
width: 10px;
height: 10px;
background-color: #F39C12;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(4):before
{
content: '';
width: 10px;
height: 10px;
background-color: #636e72;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
} | www/css/style_admin.css | @-webkit-keyframes rotate-center {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes rotate-center {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
50% {
-webkit-transform: rotate(0);
transform: rotate(0);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@-webkit-keyframes jello-vertical {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
3% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
4% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
5% {
-webkit-transform: scale3d(0.85, 1.15, 1);
transform: scale3d(0.85, 1.15, 1);
}
6.5% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
7.5% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
10% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes jello-vertical {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
3% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
4% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
5% {
-webkit-transform: scale3d(0.85, 1.15, 1);
transform: scale3d(0.85, 1.15, 1);
}
6.5% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
7.5% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
10% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@font-face {
font-family: "poppinsBold";
font-weight: bold;
src: url('../fonts/Poppins-Bold.ttf');
}
@font-face {
font-family: "poppinsMedium";
font-weight: medium;
src: url('../fonts/Poppins-Medium.ttf');
}
body
{
width: 100%;
height: 100vh;
display: flex;
user-select: none;
overflow: hidden;
}
.leftContainer
{
width: 10%;
height: 100%;
background-color: #FFF;
z-index: 999;
}
.sideBarre
{
position: absolute;
height: 100%;
width: 50px;
left: 20px;
display: flex;
justify-content: center;
align-items: center;
}
.sideBarre_content
{
position: relative;
width: 100%;
height: 80%;
display: flex;
justify-content: center;
align-items: flex-end;
}
.sideBarre img
{
height: 100%;
position: absolute;
}
.sideBarre img:first-child
{
z-index: 3;
}
.sideBarre img:last-child
{
z-index: 1;
}
.hiddenBarre
{
width: 100%;
height: 90%;
background-color: #FFF;
z-index: 2;
}
.middleContainer
{
width: 65%;
height: 100%;
background-color: #ecf0f1;
display: flex;
flex-direction: column;
align-items: center;
box-sizing: border-box;
padding: 10px 30px;
border-radius: 10px 0px 0px 10px;
-moz-border-radius: 10px 0px 0px 10px;
-webkit-border-radius: 10px 0px 0px 10px;
border: 0px solid #000000;
}
.flickity-slider
{
height: 98%;
}
.main-carousel
{
width: 100%;
height: 100%;
}
.carousel-cell
{
width: 100%;
height: 100%;
overflow-y: auto;
}
.wrapCarousel
{
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 0 100px;
}
.messageContainer
{
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: flex-end;
box-sizing: border-box;
padding-bottom: 20px;
}
.messageContainer>div
{
display: flex;
justify-content: flex-end;
align-items: center;
}
.messageContainer>div>div
{
border-radius: 18px 18px 3px 18px;
-moz-border-radius: 18px 18px 3px 18px;
-webkit-border-radius: 18px 18px 3px 18px;
border: 0px solid #000000;
padding: 20px;
margin-top: 10px;
max-width: 80%;
}
.messageContainer p
{
font-family:"poppinsMedium", sans-serif;
color: #FFF;
font-size: 13px;
}
.messageContainer>div>div
{
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.messageContainer input[type="submit"]
{
cursor: pointer;
border-radius: 50%;
margin-right: 5px;
width: 20px;
height: 20px;
transition: .2s;
}
.messageContainer .input_validated
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 0);
}
.messageContainer .input_incomplete
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 0);
}
.messageContainer .input_declined
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 0);
}
.messageContainer .input_validated:hover
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 1);
}
.messageContainer .input_incomplete:hover
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 1);
}
.messageContainer .input_declined:hover
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 1);
}
.messageContainer .input_validated-select
{
border: #27ae60 2px solid;
background-color: rgba(39, 174, 96, 1);
}
.messageContainer .input_incomplete-select
{
border: #F39C12 2px solid;
background-color: rgba(243, 156, 18, 1);
}
.messageContainer .input_declined-select
{
border: #EA2027 2px solid;
background-color: rgba(234, 32, 39, 1);
}
.messageContainer .treatment
{
background-color: #636e72;
}
.messageContainer .treatment::before
{
background-color: #636e72;
}
.messageContainer .declined
{
background-color: #EA2027;
}
.messageContainer .declined::before
{
background-color: #EA2027;
}
.messageContainer .validated
{
background-color: #27ae60;
}
.messageContainer .validated::before
{
background-color: #27ae60;
}
.messageContainer .incomplete
{
background-color: #F39C12;
}
.messageContainer .incomplete::before
{
background-color: #F39C12;
}
.sendContainer
{
width: 100%;
height: 10%;
display: flex;
justify-content: center;
align-items: center;
}
.sendContainer form
{
width: 100%;
height: 90%;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
background-color: #FFF;
display: flex;
justify-content: space-between;
align-items: center;
box-sizing: border-box;
padding: 0 50px;
}
.sendContainer form textarea
{
border: none;
resize: none;
height: 100%;
width: 100%;
box-sizing: border-box;
padding: 20px 10px 0 10px;
font-family:"poppinsMedium", sans-serif;
color: #000;
font-size: 13px;
}
.sendContainer form>div
{
margin-left: 10px;
}
.sendContainer form input[type="submit"]
{
background-image: url(../img/paper-plane.png);
background-repeat: no-repeat;
background-position: center;
background-color: #00A19C;
height: 35px;
width: 35px;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
cursor: pointer;
-webkit-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.75);
}
.rightContainer
{
width: 25%;
height: 100%;
background-color: #ecf0f1;
border-left: 1px solid rgba(189, 195, 199,.5);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
z-index: 999;
}
.typeM
{
width: 80%;
height: 10%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
display: flex;
justify-content: center;
align-items: center;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
}
.flickiButton-select::before
{
content: '';
width: 10px;
height: 10px;
background-color: #00A19C;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
p
{
font-family:"poppinsMedium", sans-serif;
color: #00A19C;
font-size: 15px;
}
.nav
{
width: 80%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
}
.nav>div
{
width: 100%;
}
.nav>div:first-child
{
box-sizing: border-box;
padding: 10px 0;
display: flex;
justify-content: center;
align-items: center;
border-bottom: 1px solid rgba(189, 195, 199,.5);
}
.nav>div:last-child
{
box-sizing: border-box;
padding: 5px 0;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.nav>div:last-child span
{
font-family:"poppinsMedium", sans-serif;
color: #000;
font-size: 13px;
cursor: pointer;
margin: 5px 0;
display: flex;
align-items: center;
}
.advancement
{
width: 80%;
height: 10%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
display: flex;
justify-content: center;
align-items: center;
}
.advancement span
{
font-family: "poppinsMedium", sans-serif;
color:#00A19C;
font-size: 15px;
}
.legend
{
width: 80%;
height: 20%;
background-color: #FFF;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border: 0px solid #000000;
-webkit-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
box-shadow: 0px 0px 7px -5px rgba(0,0,0,0.75);
display: flex;
flex-direction: column;
justify-content: center;
box-sizing: border-box;
padding-left: 30px;
}
.legend span
{
font-family:"poppinsMedium", sans-serif;
font-size: 13px;
}
.legend span:nth-of-type(1)
{
color: #27ae60;
display: flex;
align-items: center;
}
.legend span:nth-of-type(2)
{
color: #EA2027;
display: flex;
align-items: center;
}
.legend span:nth-of-type(3)
{
color: #F39C12;
display: flex;
align-items: center;
}
.legend span:nth-of-type(4)
{
color: #636e72;
display: flex;
align-items: center;
}
.legend span:nth-of-type(1):before
{
content: '';
width: 10px;
height: 10px;
background-color: #27ae60;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(2):before
{
content: '';
width: 10px;
height: 10px;
background-color: #EA2027;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(3):before
{
content: '';
width: 10px;
height: 10px;
background-color: #F39C12;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
}
.legend span:nth-of-type(4):before
{
content: '';
width: 10px;
height: 10px;
background-color: #636e72;
display: block;
border-radius: 200px 200px 200px 200px;
-moz-border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
border: 0px solid #000000;
margin-right: 10px;
} | 0.368519 | 0.204958 |
@font-face {
font-family: '<NAME>';
src: url('../fonts/RGerstner-Bold.woff2') format('woff2'),
url('../fonts/RGerstner-Bold.woff') format('woff'),
url('../fonts/RGerstner-Bold.ttf') format('truetype'),
url('../fonts/RGerstner-Bold.svg#RGerstner-Bold') format('svg');
font-weight: bold;
font-style: normal;
font-display: swap;
}
h1, h2, h3 {
font-family: '<NAME>', sans-serif;
font-weight: bold;
}
.tipo-cliente {
color: #f30;
}
header {
background-color: #444;
min-height: 100px;
}
header a:hover {
text-decoration: none;
}
a.titulo {
font-family: '<NAME>', sans-serif;
font-weight: bold;
color: white;
background-color: #ef3340;
padding: 5px 10px 8px 5px;
border-radius: 3px;
}
.menu-principal {
color: white;
}
.menu-principal a {
color: white;
}
.filtros-link {
cursor: pointer;
}
footer {
margin-top: 35px;
background-color: #444;
min-height: 100px;
padding: 20px 10px;
color: #BFBFBF;
}
footer a {
color: #ccc;
text-decoration: underline;
}
footer a:hover {
color: white;
}
/*
Aumento del tamaño de la ventana modal para
pantallas grandes
*/
@media (min-width: 992px) {
.modal-dialog {
max-width: 80%;
}
}
.tabla-incidencias {
border-collapse: separate;
border-spacing: 5px;
width: 100%;
}
.tabla-incidencias td,
.tabla-incidencias th {
width: 10%;
}
.tabla-listado-incidencias th {
white-space: nowrap;
}
.tabla-listado-incidencias td {
font-size: 0.8rem;
}
.celda-hora {
color: #000;
background-color: #eee;
}
.celda-incidencias,
.celda-hora {
text-align: center;
font-weight: 400;
border: 1px solid #d2d2d2;
padding: 7px;
border-radius: 4px;
}
.dato-inc,
.dato-inc-total {
font-family: '<NAME>', sans-serif;
font-weight: bold;
text-decoration: none;
font-size: 1.5rem;
}
a.dato-inc:hover {
color: black;
}
.dato-inc-nosensibilidad {
color: #444;
}
.dato-inc-sensibilidad-min {
color: #b94a48;
}
.dato-inc-sensibilidad-max {
color: #f2dede;
}
.dato-des {
font-size: 0.9rem;
}
.dato-des-min {
color: #b94a48;
}
.dato-des-max {
color: #f2dede;
}
td.sensibilidad-min {
background-color: #f2dede;
}
td.sensibilidad-max {
background-color: #b94a48;
}
/*
.celda-incidencias:hover {
background-color: #eee;
}
*/
/*
a.dato-inc-normal {
color: black;
}
*/
a.dato-inc:hover {
cursor: pointer;
/*font-weight: bold;*/
}
a.dato-inc-ntt,
a.dato-inc-ntt-total {
color: #444;
}
.celda-cabecera {
white-space: normal;
width: 10%;
}
.enlace-servicio {
color: white;
}
.enlace-servicio:hover {
color: white;
}
.menu-agrupacion {
border-bottom: 1px solid #eee;
}
.menu-agrupacion-sub {
background-color: #f0f4f8;
}
a.nav-link-active,
a.nav-sublink-active {
color: #ef3340;
}
a.nav-link-active {
font-weight: bold;
}
/*
Modal
*/
.modal-listado {
max-height: 450px;
overflow: auto;
}
.popover-body ul {
list-style-type: none;
padding: 0;
margin: 0;
}
/*
Botón para regresar al comienzo de la página (scroll to top)
*/
#boton-top {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: red; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 5px 15px; /* Some padding */
border-radius: 5px; /* Rounded corners */
font-size: 1.2rem; /* Increase font size */
}
#boton-top:hover {
background-color: #ef3340; /* Add a dark-grey background on hover */
} | assets/css/estilos.css | @font-face {
font-family: '<NAME>';
src: url('../fonts/RGerstner-Bold.woff2') format('woff2'),
url('../fonts/RGerstner-Bold.woff') format('woff'),
url('../fonts/RGerstner-Bold.ttf') format('truetype'),
url('../fonts/RGerstner-Bold.svg#RGerstner-Bold') format('svg');
font-weight: bold;
font-style: normal;
font-display: swap;
}
h1, h2, h3 {
font-family: '<NAME>', sans-serif;
font-weight: bold;
}
.tipo-cliente {
color: #f30;
}
header {
background-color: #444;
min-height: 100px;
}
header a:hover {
text-decoration: none;
}
a.titulo {
font-family: '<NAME>', sans-serif;
font-weight: bold;
color: white;
background-color: #ef3340;
padding: 5px 10px 8px 5px;
border-radius: 3px;
}
.menu-principal {
color: white;
}
.menu-principal a {
color: white;
}
.filtros-link {
cursor: pointer;
}
footer {
margin-top: 35px;
background-color: #444;
min-height: 100px;
padding: 20px 10px;
color: #BFBFBF;
}
footer a {
color: #ccc;
text-decoration: underline;
}
footer a:hover {
color: white;
}
/*
Aumento del tamaño de la ventana modal para
pantallas grandes
*/
@media (min-width: 992px) {
.modal-dialog {
max-width: 80%;
}
}
.tabla-incidencias {
border-collapse: separate;
border-spacing: 5px;
width: 100%;
}
.tabla-incidencias td,
.tabla-incidencias th {
width: 10%;
}
.tabla-listado-incidencias th {
white-space: nowrap;
}
.tabla-listado-incidencias td {
font-size: 0.8rem;
}
.celda-hora {
color: #000;
background-color: #eee;
}
.celda-incidencias,
.celda-hora {
text-align: center;
font-weight: 400;
border: 1px solid #d2d2d2;
padding: 7px;
border-radius: 4px;
}
.dato-inc,
.dato-inc-total {
font-family: '<NAME>', sans-serif;
font-weight: bold;
text-decoration: none;
font-size: 1.5rem;
}
a.dato-inc:hover {
color: black;
}
.dato-inc-nosensibilidad {
color: #444;
}
.dato-inc-sensibilidad-min {
color: #b94a48;
}
.dato-inc-sensibilidad-max {
color: #f2dede;
}
.dato-des {
font-size: 0.9rem;
}
.dato-des-min {
color: #b94a48;
}
.dato-des-max {
color: #f2dede;
}
td.sensibilidad-min {
background-color: #f2dede;
}
td.sensibilidad-max {
background-color: #b94a48;
}
/*
.celda-incidencias:hover {
background-color: #eee;
}
*/
/*
a.dato-inc-normal {
color: black;
}
*/
a.dato-inc:hover {
cursor: pointer;
/*font-weight: bold;*/
}
a.dato-inc-ntt,
a.dato-inc-ntt-total {
color: #444;
}
.celda-cabecera {
white-space: normal;
width: 10%;
}
.enlace-servicio {
color: white;
}
.enlace-servicio:hover {
color: white;
}
.menu-agrupacion {
border-bottom: 1px solid #eee;
}
.menu-agrupacion-sub {
background-color: #f0f4f8;
}
a.nav-link-active,
a.nav-sublink-active {
color: #ef3340;
}
a.nav-link-active {
font-weight: bold;
}
/*
Modal
*/
.modal-listado {
max-height: 450px;
overflow: auto;
}
.popover-body ul {
list-style-type: none;
padding: 0;
margin: 0;
}
/*
Botón para regresar al comienzo de la página (scroll to top)
*/
#boton-top {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: red; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 5px 15px; /* Some padding */
border-radius: 5px; /* Rounded corners */
font-size: 1.2rem; /* Increase font size */
}
#boton-top:hover {
background-color: #ef3340; /* Add a dark-grey background on hover */
} | 0.268749 | 0.062046 |
header{
background: #586EFD;
margin: -32px;
}
.para p{
display: inline;
margin-left: 36px;
color: rgb(255, 255, 255);
}
.para{
margin-left: 800px;
font-size: larger;
font-family: sans-serif;
padding-top: 31px;
padding-bottom: 16px;
}
.img2{
width: 160px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -18%;
}
a:link{
text-decoration:none;
}
.zonePE {
display: block;
margin: auto;
margin-top: 17%;
border: 0px solid;
padding: 30px 15px;
box-shadow: 3px 5px 17px 0px #8888;
border-radius: 20px;
background-color: white;
}
.zonePE p{
font-size: 18px;
font-family: inherit;}
#btn1{
margin-left: 83%;
margin-top: -28%;
}
.btn1{
border-radius: 50%;
padding:0.5vw 0.9vw;
margin:1vw;
border:1px solid #586efd;
background-color: white;
font-size: large;
color: #586efd;
transition: all 0.2s ease;
outline: none;
-moz-box-shadow: inset 0 0 3px #586efd;
-webkit-box-shadow: inset 0 0 3px #586efd;
box-shadow: inset 0 0 3px #586efd;
}
#btn2{
margin-left: 83%;
margin-top: 2%;
}
.para2{
margin-top: 0px;
margin-left: 14px;
}
@media only screen and (max-width: 1440px) {
#btn1 {
margin-left: 83%;
margin-top: -28%;
}
}
@media only screen and (max-width: 1024px) {
#btn1{
margin-left: 84%;
margin-top: -34%;
}
#btn2{
margin-left: 84%;
margin-top: 2%;
}
.img2{
width: 140px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -18%;
}
}
@media only screen and (max-width: 768px) {
#btn1{
margin-left: 66%;
margin-top: 2%;
}
#btn2{
margin-left: 13%;
margin-top: -6%;
}
.img2{
width: 120px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -15%;
}
}
@media only screen and (max-width: 425px) {
#btn1{
margin-left: 35%;
margin-top: 14%
}
#btn2 {
margin-left: 34%;
margin-top: 4%;
}
} | public/custom/css/styleprofil.css | header{
background: #586EFD;
margin: -32px;
}
.para p{
display: inline;
margin-left: 36px;
color: rgb(255, 255, 255);
}
.para{
margin-left: 800px;
font-size: larger;
font-family: sans-serif;
padding-top: 31px;
padding-bottom: 16px;
}
.img2{
width: 160px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -18%;
}
a:link{
text-decoration:none;
}
.zonePE {
display: block;
margin: auto;
margin-top: 17%;
border: 0px solid;
padding: 30px 15px;
box-shadow: 3px 5px 17px 0px #8888;
border-radius: 20px;
background-color: white;
}
.zonePE p{
font-size: 18px;
font-family: inherit;}
#btn1{
margin-left: 83%;
margin-top: -28%;
}
.btn1{
border-radius: 50%;
padding:0.5vw 0.9vw;
margin:1vw;
border:1px solid #586efd;
background-color: white;
font-size: large;
color: #586efd;
transition: all 0.2s ease;
outline: none;
-moz-box-shadow: inset 0 0 3px #586efd;
-webkit-box-shadow: inset 0 0 3px #586efd;
box-shadow: inset 0 0 3px #586efd;
}
#btn2{
margin-left: 83%;
margin-top: 2%;
}
.para2{
margin-top: 0px;
margin-left: 14px;
}
@media only screen and (max-width: 1440px) {
#btn1 {
margin-left: 83%;
margin-top: -28%;
}
}
@media only screen and (max-width: 1024px) {
#btn1{
margin-left: 84%;
margin-top: -34%;
}
#btn2{
margin-left: 84%;
margin-top: 2%;
}
.img2{
width: 140px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -18%;
}
}
@media only screen and (max-width: 768px) {
#btn1{
margin-left: 66%;
margin-top: 2%;
}
#btn2{
margin-left: 13%;
margin-top: -6%;
}
.img2{
width: 120px;
border-radius: 50%;
margin-left: 40%;
margin-bottom: -15%;
}
}
@media only screen and (max-width: 425px) {
#btn1{
margin-left: 35%;
margin-top: 14%
}
#btn2 {
margin-left: 34%;
margin-top: 4%;
}
} | 0.230486 | 0.070272 |
.wrapper {
box-sizing: border-box;
margin : 0 auto;
font-family: Geneva, Tahoma, Verdana, sans-serif;
/** clock size */
--clock-size : 16em;
--clock-padding : 0.8em;
--clock-hand-height : 1.8em;
padding-top: .8em;
width: calc(var(--clock-size) + (var(--clock-padding) * 2) );
}
.title {
text-align: center;
font-size: 1.5em;
padding-bottom: .4em;
}
.clockface {
position: relative;
padding : var(--clock-padding);
}
.clock {
height: var(--clock-size);
width: var(--clock-size);
border-radius: 50%;
}
.hand_wrapper {
position: absolute;
top: calc( (var(--clock-size) / 2) );
width: calc(var(--clock-size) / 2);
height: var(--clock-hand-height);
transform-origin: left;
}
.btns {
position: relative;
z-index: 2;
cursor: pointer;
width: var(--clock-hand-height);
height: var(--clock-hand-height);
line-height: var(--clock-hand-height);
text-align: center;
display: inline-block;
float: right;
margin-left: .5em;
margin-right: .4em;
border-radius: 50%;
transition: all .2s linear;
transform:scale(1) rotate(var(--font-rotation));
composes: no_select from "./root.css";
}
.hh {
composes: btns;
}
.mm {
composes : btns;
}
.hh:hover, .mm:hover {
background: var(--hover-bg-color) !important;
color: var(--hover-color) !important;
transform:scale(1.2) rotate(var(--font-rotation));
}
.hand {
z-index: 1;
pointer-events: none;
position: absolute;
height: 1px;
transform-origin: left;
transition: all .2s linear;
}
.mm_hand {
composes : hand;
width: calc( (var(--clock-size) / 2) - var(--clock-hand-height) );
}
.hh_hand {
composes : hand;
width: calc( (var(--clock-size) / 2) - (var(--clock-hand-height) * 2.5) );
}
.meridiem {
cursor: pointer;
position: absolute;
bottom: .4em;
height: 2.5em;
line-height: 2.5em;
width: 2.5em;
text-align: center;
border-radius: 50%;
transition: all .2s linear;
}
.meridiem_am {
left: .4em;
composes: no_select from "./root.css";
}
.meridiem_pm {
right: .4em;
composes: no_select from "./root.css";
}
.meridiem:hover {
color: var(--hover-color) !important;
background: var(--hover-bg-color) !important;
}
.picker_input_wrapper {
position: relative;
}
.picker_input {
composes: input from "./root.css";
/* 1.7 is padding in input */
width: calc(100% - 1.7em);
text-align: center;
} | src/styles/timepicker.css | .wrapper {
box-sizing: border-box;
margin : 0 auto;
font-family: Geneva, Tahoma, Verdana, sans-serif;
/** clock size */
--clock-size : 16em;
--clock-padding : 0.8em;
--clock-hand-height : 1.8em;
padding-top: .8em;
width: calc(var(--clock-size) + (var(--clock-padding) * 2) );
}
.title {
text-align: center;
font-size: 1.5em;
padding-bottom: .4em;
}
.clockface {
position: relative;
padding : var(--clock-padding);
}
.clock {
height: var(--clock-size);
width: var(--clock-size);
border-radius: 50%;
}
.hand_wrapper {
position: absolute;
top: calc( (var(--clock-size) / 2) );
width: calc(var(--clock-size) / 2);
height: var(--clock-hand-height);
transform-origin: left;
}
.btns {
position: relative;
z-index: 2;
cursor: pointer;
width: var(--clock-hand-height);
height: var(--clock-hand-height);
line-height: var(--clock-hand-height);
text-align: center;
display: inline-block;
float: right;
margin-left: .5em;
margin-right: .4em;
border-radius: 50%;
transition: all .2s linear;
transform:scale(1) rotate(var(--font-rotation));
composes: no_select from "./root.css";
}
.hh {
composes: btns;
}
.mm {
composes : btns;
}
.hh:hover, .mm:hover {
background: var(--hover-bg-color) !important;
color: var(--hover-color) !important;
transform:scale(1.2) rotate(var(--font-rotation));
}
.hand {
z-index: 1;
pointer-events: none;
position: absolute;
height: 1px;
transform-origin: left;
transition: all .2s linear;
}
.mm_hand {
composes : hand;
width: calc( (var(--clock-size) / 2) - var(--clock-hand-height) );
}
.hh_hand {
composes : hand;
width: calc( (var(--clock-size) / 2) - (var(--clock-hand-height) * 2.5) );
}
.meridiem {
cursor: pointer;
position: absolute;
bottom: .4em;
height: 2.5em;
line-height: 2.5em;
width: 2.5em;
text-align: center;
border-radius: 50%;
transition: all .2s linear;
}
.meridiem_am {
left: .4em;
composes: no_select from "./root.css";
}
.meridiem_pm {
right: .4em;
composes: no_select from "./root.css";
}
.meridiem:hover {
color: var(--hover-color) !important;
background: var(--hover-bg-color) !important;
}
.picker_input_wrapper {
position: relative;
}
.picker_input {
composes: input from "./root.css";
/* 1.7 is padding in input */
width: calc(100% - 1.7em);
text-align: center;
} | 0.57093 | 0.116412 |
body {
margin: 0px;
font-family: "Helvetica", Georgia, Serif;
background-color: #000000;
}
div#header{
height:7%;
margin:0 px;
padding: 0;
color: #ffffff;
background-color: #001A4C;
width: 100%;
overflow:hidden;
}
div#signBox{
position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
margin: auto;
width: 40%;
height:55%;
text-align: center;
display: table-cell;
vertical-align: middle;
border-radius: 15px;
padding: 12px 12px 12px 12px;
color: #ffffff;
background-color: #001A4C;
}
input[type=text]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 10px;
margin-right: 6px;
margin-top: 10px;
outline: 0 none;
padding: 0px 0px 0px 0px;
width: 70%;
border-radius: 2px;
}
input[type=password]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 16px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 5px 0px 5px 5px;
width: 70%;
border-radius: 2px;
}
input[type=date]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 16px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 5px 0px 5px 5px;
width: 70%;
border-radius: 2px;
}
p{
text-align: center;
}
h1{
font-size: 30px;
line-height: 0px;
font-weight: bold;
color: #ffffff;
padding-bottom: 0px;
margin-bottom: 0px;
}
h3{
text-align: left;
padding-bottom: 0px;
margin-bottom: 0px;
}
input[type=submit]{
border-style: solid;
border-width: 1px;
border-color: #000000;
font-weight: bold;
border: 1px #000000;
width:375px;
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 5px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 0px 0px px 0px;
width: 70%;
border-radius: 2px;
}
.side
{
width:50%;
height:100%;
float:left;
text-align:left;
}
div#fixedBox{
float:center;
height: 75%;
color: #ffffff;
overflow: auto;
white-space: normal;
display: block;
background-color: #000F2E;
width: 95%;
}
/* unvisited link */
a:link {
font-weight: bold;
color: #ffffff;
text-decoration: none;
}
/* visited link */
a:visited {
color: #ffffff;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #CACACA;
text-decoration: none;
} | jsp/indexStyle.css | body {
margin: 0px;
font-family: "Helvetica", Georgia, Serif;
background-color: #000000;
}
div#header{
height:7%;
margin:0 px;
padding: 0;
color: #ffffff;
background-color: #001A4C;
width: 100%;
overflow:hidden;
}
div#signBox{
position: absolute;
top: 0; bottom: 0;
left: 0; right: 0;
margin: auto;
width: 40%;
height:55%;
text-align: center;
display: table-cell;
vertical-align: middle;
border-radius: 15px;
padding: 12px 12px 12px 12px;
color: #ffffff;
background-color: #001A4C;
}
input[type=text]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 10px;
margin-right: 6px;
margin-top: 10px;
outline: 0 none;
padding: 0px 0px 0px 0px;
width: 70%;
border-radius: 2px;
}
input[type=password]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 16px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 5px 0px 5px 5px;
width: 70%;
border-radius: 2px;
}
input[type=date]{
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 16px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 5px 0px 5px 5px;
width: 70%;
border-radius: 2px;
}
p{
text-align: center;
}
h1{
font-size: 30px;
line-height: 0px;
font-weight: bold;
color: #ffffff;
padding-bottom: 0px;
margin-bottom: 0px;
}
h3{
text-align: left;
padding-bottom: 0px;
margin-bottom: 0px;
}
input[type=submit]{
border-style: solid;
border-width: 1px;
border-color: #000000;
font-weight: bold;
border: 1px #000000;
width:375px;
background:#000F2E;
border: none;
color: #E0E0E0;
height: 25px;
line-height:15px;
margin-bottom: 5px;
margin-right: 6px;
margin-top: 2px;
outline: 0 none;
padding: 0px 0px px 0px;
width: 70%;
border-radius: 2px;
}
.side
{
width:50%;
height:100%;
float:left;
text-align:left;
}
div#fixedBox{
float:center;
height: 75%;
color: #ffffff;
overflow: auto;
white-space: normal;
display: block;
background-color: #000F2E;
width: 95%;
}
/* unvisited link */
a:link {
font-weight: bold;
color: #ffffff;
text-decoration: none;
}
/* visited link */
a:visited {
color: #ffffff;
text-decoration: none;
}
/* mouse over link */
a:hover {
color: #CACACA;
text-decoration: none;
} | 0.211051 | 0.047669 |
@charset "utf-8";
/**************************************************************
layout popup
**************************************************************/
.theme-dark .ddp-wrap-popup2 {
border: 1px solid #ddd;
border-radius: 2px;
background-color: #fff;
z-index: 11;
text-align: left;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-wrap-popup2 .ddp-ui-label {
padding: 5px 10px 0px 10px;
color: #b7b9c2;
font-size: 12px;
font-weight: bold;
}
.theme-dark .ddp-wrap-popup2 .ddp-ui-label:first-of-type {
margin-top: 7px;
}
.theme-dark .ddp-wrap-popup2.ddp-types2 {
max-height: 220px;
overflow-y: auto;
}
.theme-dark .ddp-wrap-popup2.ddp-types2 ul li a {
padding-right: 14px;
}
.theme-dark .ddp-wrap-popup2 span.ddp-txt-label {
display: block;
margin: 10px 0 0 0;
padding: 6px 14px 7px 14px;
color: #b7b9c2;
font-size: 12px;
font-weight: 700;
cursor: default;
}
.theme-dark .ddp-wrap-popup2 span.ddp-txt-label2 {
display: block;
padding: 10px 13px 4px 13px;
color: #b7b9c2;
font-size: 12px;
font-weight: bold;
}
.theme-dark .ddp-wrap-popup2.ddp-multy {
padding: 10px 0;
}
.theme-dark .ddp-wrap-popup2.ddp-multy .ddp-list-popup {
padding: 0;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a {
position: relative;
padding-left: 35px;
font-weight: normal;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a:hover {
background-color: #edf7fb;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup {
white-space: nowrap;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup + ul.ddp-list-popup {
border-top: 1px solid #eaedf5;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li ul.ddp-list-popup.ddp-padd li a {
padding-left: 6px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup.ddp-type {
border-bottom: 1px solid #eaedf5;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup.ddp-type li a {
padding-left: 14px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a span.ddp-data-name {
color: #b7b9c2;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
cursor: default;
font-size: 13px;
}
/* layout popup 아이콘 */
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-type-"] {
display: inline-block;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-measure-"],
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-dimension-"] {
position: absolute;
top: 50%;
left: 10px;
margin-top: -6px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li.ddp-txt-list a {
padding-left: 14px;
}
.theme-dark .ddp-types ul.ddp-list-popup {
white-space: nowrap;
}
.theme-dark .ddp-types ul.ddp-list-popup + ul.ddp-list-popup {
border-top: 1px solid #eaedf5;
}
.theme-dark .ddp-types ul.ddp-list-popup li a {
position: relative;
padding-left: 35px;
font-weight: normal;
}
.theme-dark .ddp-types ul.ddp-list-popup li ul.ddp-list-popup.ddp-padd li a {
padding-left: 6px;
}
.theme-dark .ddp-types ul.ddp-list-popup li a:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-types ul.ddp-list-popup li a span.ddp-data-name {
color: #b7b9c2;
}
.theme-dark .ddp-types ul.ddp-list-popup li a .ddp-label-checkbox i.ddp-icon-checkbox,
.theme-dark .ddp-types ul.ddp-list-popup li a .ddp-label-checkbox input[type="checkbox"] {
top: 8px;
left: 20px;
}
.theme-dark .ddp-types ul.ddp-list-popup.ddp-type {
border-bottom: 1px solid #eaedf5;
}
.theme-dark .ddp-types ul.ddp-list-popup.ddp-type li a {
padding-left: 14px;
}
.theme-dark ul.ddp-list-popup {
padding: 3px 0;
}
.theme-dark ul.ddp-list-popup li {
position: relative;
}
.theme-dark ul.ddp-list-popup li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
font-size: 13px;
cursor: default;
}
.theme-dark ul.ddp-list-popup li a {
display: block;
position: relative;
padding: 6px 14px 6px 14px;
font-size: 13px;
color: #4e5368;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.theme-dark ul.ddp-list-popup li a:hover {
background-color: #edf7fb;
}
.theme-dark ul.ddp-list-popup li a .ddp-icons {
display: inline-block;
position: relative;
width: 17px;
height: 15px;
vertical-align: middle;
}
.theme-dark ul.ddp-list-popup li a .ddp-icons [class*="ddp-icon-"] {
position: absolute;
top: 1px;
left: 0;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a {
color: #1972d0 !important;
padding-right: 28px;
}
.theme-dark ul.ddp-list-popup.ddp-type li.ddp-selected > a {
padding-right: 14px;
}
.theme-dark ul.ddp-list-popup.ddp-hover-none li a:hover {
background: none !important;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-check {
display: block;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-ab {
background-position-x: -70px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-tf {
background-position-x: -75px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-int {
background-position-x: -43px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-float {
background-position-x: -84px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-calen {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-latitude {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-longitude {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-phone {
background-position-x: -14px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-email {
background-position-x: -13px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-gender {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-url {
background-position-x: -16px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-zipcode {
background-position-x: -17px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-private {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-image {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-binary {
background-position-x: -10px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-spatial {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-etc {
background-position-x: -15px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-point {
background-position-x: -10px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-line {
background-position-x: -11px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-polygon {
background-position-x: -14px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-expression {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-time5 {
position: absolute;
left: 10px;
top: 50%;
margin-top: -7px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-time5 {
background-position: -14px -16px;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: '';
z-index: 10;
cursor: no-drop;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled:hover .ddp-wrap-popup2 {
display: none;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled a {
opacity: 0.3;
}
.theme-dark ul.ddp-list-popup li .ddp-wrap-popup2 {
display: none;
position: absolute;
left: 100%;
top: 0;
width: 160px;
margin-left: -5px;
}
.theme-dark ul.ddp-list-popup li:hover > .ddp-wrap-popup2 {
display: block;
}
.theme-dark ul.ddp-list-popup li a span.ddp-column-type {
display: block;
position: relative;
padding-left: 20px;
}
.theme-dark ul.ddp-list-popup li a span.ddp-column-type [class*="ddp-icon"] {
left: 0;
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-view {
display: inline-block;
position: absolute;
top: 50%;
right: 10px;
margin-top: -4px;
width: 4px;
height: 7px;
background: url(../../../images/icon_tagview.png) no-repeat;
transform: rotate(180deg);
}
.theme-dark ul.ddp-list-popup li.ddp-sub a em.ddp-icon-view {
background: url(../../../images/icon_dataview.png) no-repeat;
background-position: left -19px;
transform: rotate(0);
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-check {
display: none;
position: absolute;
top: 50%;
right: 10px;
width: 11px;
height: 8px;
margin-top: -6px;
background: url(../../../images/icon_select2.png) no-repeat;
background-position: -15px top;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-add2 {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -7px;
width: 13px;
height: 13px;
background: url(../../../images/icon_add.png) no-repeat;
background-position: -84px -22px;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-clone {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -7px;
width: 13px;
height: 13px;
background: url(../../../images/icon_clone.png) no-repeat;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-snapshot {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -6px;
width: 14px;
height: 11px;
background: url(../../../images/icon_shot.png) no-repeat;
background-position: -34px top;
}
/* sub popup */
.theme-dark ul.ddp-list-popup li.ddp-sub .ddp-wrap-popup2 {
display: none;
}
.theme-dark ul.ddp-list-popup li.ddp-sub:hover {
background-color: #f4f6fc;
}
.theme-dark ul.ddp-list-popup li.ddp-sub:hover .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
selectbox - 1
**************************************************************/
.theme-dark .ddp-wrap-selectbox {
position: relative;
}
.theme-dark .ddp-wrap-selectbox .ddp-data-selectbox {
position: relative;
padding-right: 16px;
color: #a2a9c1;
font-size: 12px;
cursor: pointer;
}
.theme-dark .ddp-wrap-selectbox .ddp-data-selectbox:after {
display: inline-block;
content: '';
position: absolute;
top: 50%;
right: 0;
width: 8px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
background-position: -8px top;
}
.theme-dark .ddp-wrap-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 20px;
right: 0;
white-space: nowrap;
}
.theme-dark .ddp-wrap-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
selectbox - 2
**************************************************************/
.theme-dark .ddp-type-selectbox {
position: relative;
padding: 6px 23px 6px 10px;
border-radius: 2px;
border: 1px solid #d0d1d9;
background-color: #fff;
cursor: pointer;
box-sizing: border-box;
}
.theme-dark .ddp-type-selectbox:hover {
border: 1px solid #8f96a0;
}
.theme-dark .ddp-type-selectbox input.ddp-input-selectbox {
display: none;
position: absolute;
top: 0;
left: 0;
right: 60px;
bottom: 0;
width: 100%;
padding: 7px 26px 6px 13px;
box-sizing: border-box;
border: none;
font-size: 13px;
background-color: #fff;
z-index: 1;
}
.theme-dark .ddp-type-selectbox input.ddp-input-selectbox.ddp-value {
color: #666eb3;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox {
display: block;
color: #4a515c;
font-size: 13px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-wrap: normal;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox .ddp-icons {
display: inline-block;
float: left;
position: relative;
width: 17px;
height: 16px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox .ddp-icons [class*="ddp-icon-"] {
left: 0px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-type-txt {
padding-left: 22px;
color: #4e5368;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox.ddp-result {
color: #4e5368;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-type-"],
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-dimension-"],
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-measure-"] {
position: absolute;
top: 50%;
left: 10px;
margin-top: -6px;
}
.theme-dark .ddp-type-selectbox:after {
display: inline-block;
position: absolute;
top: 50%;
right: 9px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-type-selectbox:hover:after,
.theme-dark .ddp-type-selectbox.ddp-selected:after {
background-position: -8px 0;
z-index: 1;
}
.theme-dark .ddp-type-selectbox.ddp-selected:after {
transform: rotate(180deg);
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 32px;
left: 0;
right: 0;
max-height: 190px;
overflow-y: auto;
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 ul.ddp-list-selectbox2 li {
padding: 5px 10px;
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 ul.ddp-list-selectbox2 li label.ddp-label-checkbox span {
font-size: 12px;
}
.theme-dark ul.ddp-list-selectbox2.ddp-hover-none li:hover {
background: none !important;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected ul.ddp-list-selectbox {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-input-selectbox {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected.ddp-del .ddp-input-selectbox {
padding-right: 50px;
}
.theme-dark .ddp-type-selectbox.ddp-selected.ddp-del .ddp-input-selectbox + .ddp-btn-del {
position: absolute;
top: 50%;
right: 25px;
margin-top: -8px;
width: 15px;
height: 15px;
background: url(../../../images/btn_close.png) no-repeat;
background-position: left -132px;
z-index: 1;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-wrap-popup2.ddp-scroll-none {
max-height: inherit;
overflow: initial;
}
.theme-dark .ddp-type-selectbox.ddp-selected {
z-index: 55;
border: 1px solid #8f96a0;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(240, 240, 240, 0.3);
cursor: no-drop;
z-index: 1;
content: '';
}
.theme-dark .ddp-type-selectbox.ddp-disabled {
opacity: 0.6;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:hover:after {
background-position-x: 0px;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:hover {
border: 1px solid #d0d1d9;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown {
bottom: inherit;
top: 34px;
z-index: 50;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-ellipsis li a {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-pass {
left: inherit;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-pass2 {
left: 0;
right: inherit;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a span.ddp-txt-search {
color: #1972d0;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a span.ddp-num {
margin-left: 5px;
color: #7e8aa5;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-scrollnone {
overflow: inherit;
}
.theme-dark .ddp-type-selectbox.ddp-setting {
width: 290px;
}
.theme-dark .ddp-type-selectbox.ddp-full {
width: 100% !important;
}
.theme-dark .ddp-type-selectbox.ddp-inline {
display: inline-block;
vertical-align: middle;
}
.theme-dark .ddp-type-selectbox.ddp-non-select {
padding: 6px 10px 7px 10px;
cursor: default;
}
.theme-dark .ddp-type-selectbox.ddp-non-select:after {
display: none;
}
.theme-dark .ddp-offset .ddp-drop {
position: fixed !important;
box-sizing: border-box;
border-top: none;
}
.theme-dark .ddp-type-selectbox.ddp-nowrap-r ul.ddp-list-selectbox {
left: inherit;
right: 0;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox.ddp-size {
width: 78px;
box-sizing: border-box;
display: inline-block;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-column-type {
display: block;
position: relative;
padding-left: 20px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-column-type [class*="ddp-icon"] {
left: 0;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox.ddp-icon {
padding-left: 25px;
}
/**************************************************************
selectbox - 2 disabled
**************************************************************/
.theme-dark .ddp-selectbox-disabled {position:relative;}
.theme-dark .ddp-selectbox-disabled.ddp-inline {display:inline-block;}
.theme-dark .ddp-selectbox-disabled:before {display:inline-block; content:'';position:absolute; top:0; left:0; right:0; bottom:0; background-color:rgba(240,240,240,0.3); cursor:no-drop; z-index:1;}
/**************************************************************
selectbox - 3
**************************************************************/
.theme-dark .ddp-type-selectbox.ddp-type-search-select span.ddp-txt-selectbox {
position: relative;
padding-left: 20px;
box-sizing: border-box;
color: #b7bac2;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select span.ddp-txt-selectbox:before {
display: inline-block;
position: absolute;
top: 50%;
left: 0;
width: 11px;
height: 11px;
margin-top: -6px;
background: url(../../../images/icon_search.png) no-repeat;
background-position: -24px top;
content: '';
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-disabled {
opacity: 0.5;
cursor: no-drop;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-disabled:hover {
border: 1px solid #d0d1d9;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-result span.ddp-txt-selectbox {
color: #4e5368;
padding-left: 0px;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-result span.ddp-txt-selectbox:before {
display: none;
}
.theme-dark .ddp-type-selectbox.ddp-search-type .ddp-input-search {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/**************************************************************
selectbox - 4
**************************************************************/
.theme-dark .ddp-type-dropdown {
position: relative;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown {
position: relative;
padding-right: 15px;
color: #7e8aa5;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown:hover {
color: #545b65;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown:after {
display: inline-block;
content: '';
position: absolute;
top: 50%;
right: 0;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_selecview.png) no-repeat;
background-position: -21px -7px;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort {
position: relative;
color: #b7b9c2;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort:hover {
color: #4e5368;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort em[class*="ddp-icon-array-"] {
margin-left: 7px;
top: 0;
}
.theme-dark .ddp-type-dropdown .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 100%;
right: -20px;
white-space: nowrap;
min-width: 120px;
}
.theme-dark .ddp-type-dropdown.ddp-selected .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
hover selectbox
**************************************************************/
.theme-dark .ddp-hover-selectbox {
display: inline-block;
position: relative;
min-width: 174px;
margin: -8px 0 -8px -9px;
border: 1px solid #fff;
border-radius: 2px;
}
.theme-dark .ddp-hover-selectbox:hover,
.theme-dark .ddp-hover-selectbox.ddp-selected {
border: 1px solid #acb0bb;
}
.theme-dark .ddp-hover-selectbox > a {
display: block;
position: relative;
padding: 7px 23px 7px 9px;
color: #4e5368;
font-size: 13px;
}
.theme-dark .ddp-hover-selectbox > a.ddp-icon-type {
padding-left: 26px;
}
.theme-dark .ddp-hover-selectbox:hover > a:after,
.theme-dark .ddp-hover-selectbox.ddp-selected > a:after {
display: inline-block;
position: absolute;
top: 50%;
right: 9px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-hover-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-hover-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 100%;
left: 0;
margin-top: 3px;
min-width: 100%;
}
.theme-dark table.ddp-table-detail2 tr td .ddp-icon-type-txt {
display: inline-block;
position: relative;
padding: 7px 9px 7px 26px;
margin-top: -5px;
margin-left: -8px;
}
/**************************************************************
drop search
**************************************************************/
.theme-dark .ddp-wrap-drop-search {
position: relative;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 {
position: relative;
padding: 6px 26px 6px 13px;
border-radius: 2px;
border: 1px solid #d0d1d9;
background-color: #fff;
cursor: pointer;
}
.theme-dark .ddp-type-selectbox2:hover {
border: 1px solid #8f96a0;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2.ddp-selected {
z-index: 30;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2:after {
display: inline-block;
position: absolute;
top: 50%;
right: 12px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2:hover:after {
background-position: -8px top;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 span.ddp-txt-selectbox {
display: block;
position: relative;
padding-left: 20px;
color: #b7bac2;
font-size: 13px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-wrap: normal;
box-sizing: border-box;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search {
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
border: 1px solid #ddd;
border-radius: 2px;
background-color: #fff;
z-index: 10;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search:after {
display: inline-block;
position: absolute;
top: 12px;
right: 12px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
background-position: -8px top;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search input.ddp-input-search {
display: block;
width: 100%;
padding: 7px 26px 6px 13px;
box-sizing: border-box;
border: none;
font-size: 13px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search input.ddp-input-search.ddp-value {
color: #666eb3;
}
/**************************************************************
drop down list
**************************************************************/
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 span.ddp-txt-selectbox:before {
display: inline-block;
position: absolute;
left: 0;
top: 50%;
width: 11px;
height: 11px;
margin-top: -6px;
background: url(../../../images/icon_search.png) no-repeat;
background-position: -24px top;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 {
max-height: 175px;
padding: 3px 0;
border-top: 1px solid #ddd;
box-sizing: border-box;
overflow-y: auto;
white-space: nowrap;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.type-border {
border-top:none;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.type-scroll-none {max-height:none;}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li {
padding: 5px 13px;
font-size: 13px;
cursor: pointer;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li a {
display: block;
margin: -5px -13px;
padding: 5px 13px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.ddp-list-popup li a {
padding-right: 28px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.ddp-list-popup li.ddp-selected a {
color: #4e5368;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li label.ddp-label-checkbox {
padding: 5px 10px 5px 20px;
margin: -5px -10px -5px 0;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search .ddp-data-message {
padding: 5px 13px;
color: #c3c8d3;
font-size: 12px;
cursor: default;
}
.theme-dark .ddp-wrap-drop-search.ddp-selected .ddp-ui-drop-search {
display: block;
}
.theme-dark .ddp-wrap-drop-search.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(240, 240, 240, 0.5);
z-index: 1;
cursor: no-drop;
content: '';
}
.theme-dark .ddp-wrap-drop-search.ddp-result .ddp-type-selectbox2 span.ddp-txt-selectbox {
padding-left: 0px;
color: #4e5368;
}
.theme-dark .ddp-wrap-drop-search.ddp-result .ddp-type-selectbox2 span.ddp-txt-selectbox:before {
display: none;
}
/**************************************************************
select list
**************************************************************/
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox {
display: none;
position: absolute;
bottom: 34px;
left: 0;
right: 0;
max-height: 160px;
padding: 7px 0;
background-color: #fff;
border: 1px solid #ddd;
overflow-y: auto;
z-index: 1;
box-sizing: border-box;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a {
display: block;
position: relative;
padding: 5px 10px;
color: #4b525b;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
cursor: default;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li .ddp-wrap-popup2 {
position: absolute;
left: 100%;
bottom: 28px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li:hover .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a em.ddp-icon-subview {
display: inline-block;
position: absolute;
top: 50%;
right: 10px;
margin-top: -5px;
width: 5px;
height: 9px;
background: url(../../../images/icon_subview.png) no-repeat;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li.ddp-data-select {
padding: 6px 10px;
color: #adb0bb;
font-size: 11px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li.ddp-data-select strong {
color: #656eb2;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a em.ddp-ui-round {
display: inline-block;
padding: 2px 2px 1px 2px;
margin-left: 2px;
margin-right: 5px;
border-radius: 50%;
border: 1px solid #656eb2;
color: #656eb2;
font-size: 9px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a span.ddp-ui-type {
display: block;
color: #656eb2;
font-size: 12px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a span.ddp-ui-code {
display: block;
padding: 0px 0 0 29px;
color: #b7b9c2;
font-size: 12px;
}
.theme-dark .ddp-box-command .ddp-type-selectbox ul.ddp-list-selectbox.ddp-list-command {
max-height: 344px;
}
.theme-dark .ddp-box-command .ddp-type-selectbox ul.ddp-list-selectbox.ddp-list-command li a:hover {
background: none;
}
/**************************************************************
dropdown
**************************************************************/
.theme-dark .ddp-hover-status {
display: inline-block;
position: relative;
}
.theme-dark .ddp-hover-status .ddp-status-active .ddp-icon-view {
display: inline-block;
position: absolute;
top: -3px;
right: 0;
width: 17px;
height: 17px;
}
.theme-dark .ddp-hover-status .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 20px;
right: 0;
min-width: 130px;
}
.theme-dark .ddp-hover-status.ddp-selected .ddp-wrap-popup2 {
display: block;
} | discovery-frontend/src/assets/css/theme_dark/component/component.selectbox.css | @charset "utf-8";
/**************************************************************
layout popup
**************************************************************/
.theme-dark .ddp-wrap-popup2 {
border: 1px solid #ddd;
border-radius: 2px;
background-color: #fff;
z-index: 11;
text-align: left;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-wrap-popup2 .ddp-ui-label {
padding: 5px 10px 0px 10px;
color: #b7b9c2;
font-size: 12px;
font-weight: bold;
}
.theme-dark .ddp-wrap-popup2 .ddp-ui-label:first-of-type {
margin-top: 7px;
}
.theme-dark .ddp-wrap-popup2.ddp-types2 {
max-height: 220px;
overflow-y: auto;
}
.theme-dark .ddp-wrap-popup2.ddp-types2 ul li a {
padding-right: 14px;
}
.theme-dark .ddp-wrap-popup2 span.ddp-txt-label {
display: block;
margin: 10px 0 0 0;
padding: 6px 14px 7px 14px;
color: #b7b9c2;
font-size: 12px;
font-weight: 700;
cursor: default;
}
.theme-dark .ddp-wrap-popup2 span.ddp-txt-label2 {
display: block;
padding: 10px 13px 4px 13px;
color: #b7b9c2;
font-size: 12px;
font-weight: bold;
}
.theme-dark .ddp-wrap-popup2.ddp-multy {
padding: 10px 0;
}
.theme-dark .ddp-wrap-popup2.ddp-multy .ddp-list-popup {
padding: 0;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a {
position: relative;
padding-left: 35px;
font-weight: normal;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a:hover {
background-color: #edf7fb;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup {
white-space: nowrap;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup + ul.ddp-list-popup {
border-top: 1px solid #eaedf5;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li ul.ddp-list-popup.ddp-padd li a {
padding-left: 6px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup.ddp-type {
border-bottom: 1px solid #eaedf5;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup.ddp-type li a {
padding-left: 14px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a span.ddp-data-name {
color: #b7b9c2;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
cursor: default;
font-size: 13px;
}
/* layout popup 아이콘 */
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-type-"] {
display: inline-block;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-measure-"],
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li a em[class*="ddp-icon-dimension-"] {
position: absolute;
top: 50%;
left: 10px;
margin-top: -6px;
}
.theme-dark .ddp-wrap-popup2.ddp-types ul.ddp-list-popup li.ddp-txt-list a {
padding-left: 14px;
}
.theme-dark .ddp-types ul.ddp-list-popup {
white-space: nowrap;
}
.theme-dark .ddp-types ul.ddp-list-popup + ul.ddp-list-popup {
border-top: 1px solid #eaedf5;
}
.theme-dark .ddp-types ul.ddp-list-popup li a {
position: relative;
padding-left: 35px;
font-weight: normal;
}
.theme-dark .ddp-types ul.ddp-list-popup li ul.ddp-list-popup.ddp-padd li a {
padding-left: 6px;
}
.theme-dark .ddp-types ul.ddp-list-popup li a:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-types ul.ddp-list-popup li a span.ddp-data-name {
color: #b7b9c2;
}
.theme-dark .ddp-types ul.ddp-list-popup li a .ddp-label-checkbox i.ddp-icon-checkbox,
.theme-dark .ddp-types ul.ddp-list-popup li a .ddp-label-checkbox input[type="checkbox"] {
top: 8px;
left: 20px;
}
.theme-dark .ddp-types ul.ddp-list-popup.ddp-type {
border-bottom: 1px solid #eaedf5;
}
.theme-dark .ddp-types ul.ddp-list-popup.ddp-type li a {
padding-left: 14px;
}
.theme-dark ul.ddp-list-popup {
padding: 3px 0;
}
.theme-dark ul.ddp-list-popup li {
position: relative;
}
.theme-dark ul.ddp-list-popup li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
font-size: 13px;
cursor: default;
}
.theme-dark ul.ddp-list-popup li a {
display: block;
position: relative;
padding: 6px 14px 6px 14px;
font-size: 13px;
color: #4e5368;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.theme-dark ul.ddp-list-popup li a:hover {
background-color: #edf7fb;
}
.theme-dark ul.ddp-list-popup li a .ddp-icons {
display: inline-block;
position: relative;
width: 17px;
height: 15px;
vertical-align: middle;
}
.theme-dark ul.ddp-list-popup li a .ddp-icons [class*="ddp-icon-"] {
position: absolute;
top: 1px;
left: 0;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a {
color: #1972d0 !important;
padding-right: 28px;
}
.theme-dark ul.ddp-list-popup.ddp-type li.ddp-selected > a {
padding-right: 14px;
}
.theme-dark ul.ddp-list-popup.ddp-hover-none li a:hover {
background: none !important;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-check {
display: block;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-ab {
background-position-x: -70px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-tf {
background-position-x: -75px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-int {
background-position-x: -43px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-float {
background-position-x: -84px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-calen {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-latitude {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-longitude {
background-position-x: -60px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-phone {
background-position-x: -14px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-email {
background-position-x: -13px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-gender {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-url {
background-position-x: -16px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-zipcode {
background-position-x: -17px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-private {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-image {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-binary {
background-position-x: -10px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-spatial {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-etc {
background-position-x: -15px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-point {
background-position-x: -10px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-line {
background-position-x: -11px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-polygon {
background-position-x: -14px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-type-expression {
background-position-x: -12px;
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-time5 {
position: absolute;
left: 10px;
top: 50%;
margin-top: -7px;
}
.theme-dark ul.ddp-list-popup li.ddp-selected > a em.ddp-icon-time5 {
background-position: -14px -16px;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: '';
z-index: 10;
cursor: no-drop;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled:hover .ddp-wrap-popup2 {
display: none;
}
.theme-dark ul.ddp-list-popup li.ddp-disabled a {
opacity: 0.3;
}
.theme-dark ul.ddp-list-popup li .ddp-wrap-popup2 {
display: none;
position: absolute;
left: 100%;
top: 0;
width: 160px;
margin-left: -5px;
}
.theme-dark ul.ddp-list-popup li:hover > .ddp-wrap-popup2 {
display: block;
}
.theme-dark ul.ddp-list-popup li a span.ddp-column-type {
display: block;
position: relative;
padding-left: 20px;
}
.theme-dark ul.ddp-list-popup li a span.ddp-column-type [class*="ddp-icon"] {
left: 0;
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-view {
display: inline-block;
position: absolute;
top: 50%;
right: 10px;
margin-top: -4px;
width: 4px;
height: 7px;
background: url(../../../images/icon_tagview.png) no-repeat;
transform: rotate(180deg);
}
.theme-dark ul.ddp-list-popup li.ddp-sub a em.ddp-icon-view {
background: url(../../../images/icon_dataview.png) no-repeat;
background-position: left -19px;
transform: rotate(0);
}
.theme-dark ul.ddp-list-popup li a em.ddp-icon-check {
display: none;
position: absolute;
top: 50%;
right: 10px;
width: 11px;
height: 8px;
margin-top: -6px;
background: url(../../../images/icon_select2.png) no-repeat;
background-position: -15px top;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-add2 {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -7px;
width: 13px;
height: 13px;
background: url(../../../images/icon_add.png) no-repeat;
background-position: -84px -22px;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-clone {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -7px;
width: 13px;
height: 13px;
background: url(../../../images/icon_clone.png) no-repeat;
}
.theme-dark .ddp-types ul.ddp-list-popup li a em.ddp-icon-snapshot {
display: inline-block;
position: absolute;
top: 50%;
left: 12px;
margin-top: -6px;
width: 14px;
height: 11px;
background: url(../../../images/icon_shot.png) no-repeat;
background-position: -34px top;
}
/* sub popup */
.theme-dark ul.ddp-list-popup li.ddp-sub .ddp-wrap-popup2 {
display: none;
}
.theme-dark ul.ddp-list-popup li.ddp-sub:hover {
background-color: #f4f6fc;
}
.theme-dark ul.ddp-list-popup li.ddp-sub:hover .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
selectbox - 1
**************************************************************/
.theme-dark .ddp-wrap-selectbox {
position: relative;
}
.theme-dark .ddp-wrap-selectbox .ddp-data-selectbox {
position: relative;
padding-right: 16px;
color: #a2a9c1;
font-size: 12px;
cursor: pointer;
}
.theme-dark .ddp-wrap-selectbox .ddp-data-selectbox:after {
display: inline-block;
content: '';
position: absolute;
top: 50%;
right: 0;
width: 8px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
background-position: -8px top;
}
.theme-dark .ddp-wrap-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 20px;
right: 0;
white-space: nowrap;
}
.theme-dark .ddp-wrap-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
selectbox - 2
**************************************************************/
.theme-dark .ddp-type-selectbox {
position: relative;
padding: 6px 23px 6px 10px;
border-radius: 2px;
border: 1px solid #d0d1d9;
background-color: #fff;
cursor: pointer;
box-sizing: border-box;
}
.theme-dark .ddp-type-selectbox:hover {
border: 1px solid #8f96a0;
}
.theme-dark .ddp-type-selectbox input.ddp-input-selectbox {
display: none;
position: absolute;
top: 0;
left: 0;
right: 60px;
bottom: 0;
width: 100%;
padding: 7px 26px 6px 13px;
box-sizing: border-box;
border: none;
font-size: 13px;
background-color: #fff;
z-index: 1;
}
.theme-dark .ddp-type-selectbox input.ddp-input-selectbox.ddp-value {
color: #666eb3;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox {
display: block;
color: #4a515c;
font-size: 13px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-wrap: normal;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox .ddp-icons {
display: inline-block;
float: left;
position: relative;
width: 17px;
height: 16px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox .ddp-icons [class*="ddp-icon-"] {
left: 0px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-type-txt {
padding-left: 22px;
color: #4e5368;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox.ddp-result {
color: #4e5368;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-type-"],
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-dimension-"],
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox em[class*="ddp-icon-measure-"] {
position: absolute;
top: 50%;
left: 10px;
margin-top: -6px;
}
.theme-dark .ddp-type-selectbox:after {
display: inline-block;
position: absolute;
top: 50%;
right: 9px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-type-selectbox:hover:after,
.theme-dark .ddp-type-selectbox.ddp-selected:after {
background-position: -8px 0;
z-index: 1;
}
.theme-dark .ddp-type-selectbox.ddp-selected:after {
transform: rotate(180deg);
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 32px;
left: 0;
right: 0;
max-height: 190px;
overflow-y: auto;
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 ul.ddp-list-selectbox2 li {
padding: 5px 10px;
}
.theme-dark .ddp-type-selectbox .ddp-wrap-popup2 ul.ddp-list-selectbox2 li label.ddp-label-checkbox span {
font-size: 12px;
}
.theme-dark ul.ddp-list-selectbox2.ddp-hover-none li:hover {
background: none !important;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected ul.ddp-list-selectbox {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-input-selectbox {
display: block;
}
.theme-dark .ddp-type-selectbox.ddp-selected.ddp-del .ddp-input-selectbox {
padding-right: 50px;
}
.theme-dark .ddp-type-selectbox.ddp-selected.ddp-del .ddp-input-selectbox + .ddp-btn-del {
position: absolute;
top: 50%;
right: 25px;
margin-top: -8px;
width: 15px;
height: 15px;
background: url(../../../images/btn_close.png) no-repeat;
background-position: left -132px;
z-index: 1;
}
.theme-dark .ddp-type-selectbox.ddp-selected .ddp-wrap-popup2.ddp-scroll-none {
max-height: inherit;
overflow: initial;
}
.theme-dark .ddp-type-selectbox.ddp-selected {
z-index: 55;
border: 1px solid #8f96a0;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(240, 240, 240, 0.3);
cursor: no-drop;
z-index: 1;
content: '';
}
.theme-dark .ddp-type-selectbox.ddp-disabled {
opacity: 0.6;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:hover:after {
background-position-x: 0px;
}
.theme-dark .ddp-type-selectbox.ddp-disabled:hover {
border: 1px solid #d0d1d9;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown {
bottom: inherit;
top: 34px;
z-index: 50;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-ellipsis li a {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-pass {
left: inherit;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-selectdown.ddp-pass2 {
left: 0;
right: inherit;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a span.ddp-txt-search {
color: #1972d0;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a span.ddp-num {
margin-left: 5px;
color: #7e8aa5;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox.ddp-scrollnone {
overflow: inherit;
}
.theme-dark .ddp-type-selectbox.ddp-setting {
width: 290px;
}
.theme-dark .ddp-type-selectbox.ddp-full {
width: 100% !important;
}
.theme-dark .ddp-type-selectbox.ddp-inline {
display: inline-block;
vertical-align: middle;
}
.theme-dark .ddp-type-selectbox.ddp-non-select {
padding: 6px 10px 7px 10px;
cursor: default;
}
.theme-dark .ddp-type-selectbox.ddp-non-select:after {
display: none;
}
.theme-dark .ddp-offset .ddp-drop {
position: fixed !important;
box-sizing: border-box;
border-top: none;
}
.theme-dark .ddp-type-selectbox.ddp-nowrap-r ul.ddp-list-selectbox {
left: inherit;
right: 0;
min-width: 100%;
white-space: nowrap;
}
.theme-dark .ddp-type-selectbox.ddp-size {
width: 78px;
box-sizing: border-box;
display: inline-block;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-column-type {
display: block;
position: relative;
padding-left: 20px;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox span.ddp-column-type [class*="ddp-icon"] {
left: 0;
}
.theme-dark .ddp-type-selectbox span.ddp-txt-selectbox.ddp-icon {
padding-left: 25px;
}
/**************************************************************
selectbox - 2 disabled
**************************************************************/
.theme-dark .ddp-selectbox-disabled {position:relative;}
.theme-dark .ddp-selectbox-disabled.ddp-inline {display:inline-block;}
.theme-dark .ddp-selectbox-disabled:before {display:inline-block; content:'';position:absolute; top:0; left:0; right:0; bottom:0; background-color:rgba(240,240,240,0.3); cursor:no-drop; z-index:1;}
/**************************************************************
selectbox - 3
**************************************************************/
.theme-dark .ddp-type-selectbox.ddp-type-search-select span.ddp-txt-selectbox {
position: relative;
padding-left: 20px;
box-sizing: border-box;
color: #b7bac2;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select span.ddp-txt-selectbox:before {
display: inline-block;
position: absolute;
top: 50%;
left: 0;
width: 11px;
height: 11px;
margin-top: -6px;
background: url(../../../images/icon_search.png) no-repeat;
background-position: -24px top;
content: '';
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-disabled {
opacity: 0.5;
cursor: no-drop;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-disabled:hover {
border: 1px solid #d0d1d9;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-result span.ddp-txt-selectbox {
color: #4e5368;
padding-left: 0px;
}
.theme-dark .ddp-type-selectbox.ddp-type-search-select.ddp-result span.ddp-txt-selectbox:before {
display: none;
}
.theme-dark .ddp-type-selectbox.ddp-search-type .ddp-input-search {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
/**************************************************************
selectbox - 4
**************************************************************/
.theme-dark .ddp-type-dropdown {
position: relative;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown {
position: relative;
padding-right: 15px;
color: #7e8aa5;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown:hover {
color: #545b65;
}
.theme-dark .ddp-type-dropdown a.ddp-data-dropdown:after {
display: inline-block;
content: '';
position: absolute;
top: 50%;
right: 0;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_selecview.png) no-repeat;
background-position: -21px -7px;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort {
position: relative;
color: #b7b9c2;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort:hover {
color: #4e5368;
}
.theme-dark .ddp-type-dropdown a.ddp-data-sort em[class*="ddp-icon-array-"] {
margin-left: 7px;
top: 0;
}
.theme-dark .ddp-type-dropdown .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 100%;
right: -20px;
white-space: nowrap;
min-width: 120px;
}
.theme-dark .ddp-type-dropdown.ddp-selected .ddp-wrap-popup2 {
display: block;
}
/**************************************************************
hover selectbox
**************************************************************/
.theme-dark .ddp-hover-selectbox {
display: inline-block;
position: relative;
min-width: 174px;
margin: -8px 0 -8px -9px;
border: 1px solid #fff;
border-radius: 2px;
}
.theme-dark .ddp-hover-selectbox:hover,
.theme-dark .ddp-hover-selectbox.ddp-selected {
border: 1px solid #acb0bb;
}
.theme-dark .ddp-hover-selectbox > a {
display: block;
position: relative;
padding: 7px 23px 7px 9px;
color: #4e5368;
font-size: 13px;
}
.theme-dark .ddp-hover-selectbox > a.ddp-icon-type {
padding-left: 26px;
}
.theme-dark .ddp-hover-selectbox:hover > a:after,
.theme-dark .ddp-hover-selectbox.ddp-selected > a:after {
display: inline-block;
position: absolute;
top: 50%;
right: 9px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-hover-selectbox.ddp-selected .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-hover-selectbox .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 100%;
left: 0;
margin-top: 3px;
min-width: 100%;
}
.theme-dark table.ddp-table-detail2 tr td .ddp-icon-type-txt {
display: inline-block;
position: relative;
padding: 7px 9px 7px 26px;
margin-top: -5px;
margin-left: -8px;
}
/**************************************************************
drop search
**************************************************************/
.theme-dark .ddp-wrap-drop-search {
position: relative;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 {
position: relative;
padding: 6px 26px 6px 13px;
border-radius: 2px;
border: 1px solid #d0d1d9;
background-color: #fff;
cursor: pointer;
}
.theme-dark .ddp-type-selectbox2:hover {
border: 1px solid #8f96a0;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2.ddp-selected {
z-index: 30;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2:after {
display: inline-block;
position: absolute;
top: 50%;
right: 12px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2:hover:after {
background-position: -8px top;
}
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 span.ddp-txt-selectbox {
display: block;
position: relative;
padding-left: 20px;
color: #b7bac2;
font-size: 13px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
word-wrap: normal;
box-sizing: border-box;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search {
display: none;
position: absolute;
top: 0;
left: 0;
right: 0;
border: 1px solid #ddd;
border-radius: 2px;
background-color: #fff;
z-index: 10;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search:after {
display: inline-block;
position: absolute;
top: 12px;
right: 12px;
width: 7px;
height: 4px;
margin-top: -2px;
background: url(../../../images/icon_select.png) no-repeat;
background-position: -8px top;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search input.ddp-input-search {
display: block;
width: 100%;
padding: 7px 26px 6px 13px;
box-sizing: border-box;
border: none;
font-size: 13px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search input.ddp-input-search.ddp-value {
color: #666eb3;
}
/**************************************************************
drop down list
**************************************************************/
.theme-dark .ddp-wrap-drop-search .ddp-type-selectbox2 span.ddp-txt-selectbox:before {
display: inline-block;
position: absolute;
left: 0;
top: 50%;
width: 11px;
height: 11px;
margin-top: -6px;
background: url(../../../images/icon_search.png) no-repeat;
background-position: -24px top;
content: '';
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 {
max-height: 175px;
padding: 3px 0;
border-top: 1px solid #ddd;
box-sizing: border-box;
overflow-y: auto;
white-space: nowrap;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.type-border {
border-top:none;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.type-scroll-none {max-height:none;}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li {
padding: 5px 13px;
font-size: 13px;
cursor: pointer;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li a {
display: block;
margin: -5px -13px;
padding: 5px 13px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.ddp-list-popup li a {
padding-right: 28px;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2.ddp-list-popup li.ddp-selected a {
color: #4e5368;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search ul.ddp-list-selectbox2 li label.ddp-label-checkbox {
padding: 5px 10px 5px 20px;
margin: -5px -10px -5px 0;
}
.theme-dark .ddp-wrap-drop-search .ddp-ui-drop-search .ddp-data-message {
padding: 5px 13px;
color: #c3c8d3;
font-size: 12px;
cursor: default;
}
.theme-dark .ddp-wrap-drop-search.ddp-selected .ddp-ui-drop-search {
display: block;
}
.theme-dark .ddp-wrap-drop-search.ddp-disabled:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(240, 240, 240, 0.5);
z-index: 1;
cursor: no-drop;
content: '';
}
.theme-dark .ddp-wrap-drop-search.ddp-result .ddp-type-selectbox2 span.ddp-txt-selectbox {
padding-left: 0px;
color: #4e5368;
}
.theme-dark .ddp-wrap-drop-search.ddp-result .ddp-type-selectbox2 span.ddp-txt-selectbox:before {
display: none;
}
/**************************************************************
select list
**************************************************************/
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox {
display: none;
position: absolute;
bottom: 34px;
left: 0;
right: 0;
max-height: 160px;
padding: 7px 0;
background-color: #fff;
border: 1px solid #ddd;
overflow-y: auto;
z-index: 1;
box-sizing: border-box;
-moz-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
-webkit-box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
box-shadow: 0 1px 3px rgba(84, 97, 104, 0.3);
/* drop shadow */
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a {
display: block;
position: relative;
padding: 5px 10px;
color: #4b525b;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a:hover {
background-color: #f4f6fc;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li span.ddp-noresult {
display: block;
padding: 5px 10px;
color: #b7b9c2;
cursor: default;
font-size: 13px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li .ddp-wrap-popup2 {
position: absolute;
left: 100%;
bottom: 28px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li:hover .ddp-wrap-popup2 {
display: block;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-selectbox li a em.ddp-icon-subview {
display: inline-block;
position: absolute;
top: 50%;
right: 10px;
margin-top: -5px;
width: 5px;
height: 9px;
background: url(../../../images/icon_subview.png) no-repeat;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li.ddp-data-select {
padding: 6px 10px;
color: #adb0bb;
font-size: 11px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li.ddp-data-select strong {
color: #656eb2;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a em.ddp-ui-round {
display: inline-block;
padding: 2px 2px 1px 2px;
margin-left: 2px;
margin-right: 5px;
border-radius: 50%;
border: 1px solid #656eb2;
color: #656eb2;
font-size: 9px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a span.ddp-ui-type {
display: block;
color: #656eb2;
font-size: 12px;
}
.theme-dark .ddp-type-selectbox ul.ddp-list-command li a span.ddp-ui-code {
display: block;
padding: 0px 0 0 29px;
color: #b7b9c2;
font-size: 12px;
}
.theme-dark .ddp-box-command .ddp-type-selectbox ul.ddp-list-selectbox.ddp-list-command {
max-height: 344px;
}
.theme-dark .ddp-box-command .ddp-type-selectbox ul.ddp-list-selectbox.ddp-list-command li a:hover {
background: none;
}
/**************************************************************
dropdown
**************************************************************/
.theme-dark .ddp-hover-status {
display: inline-block;
position: relative;
}
.theme-dark .ddp-hover-status .ddp-status-active .ddp-icon-view {
display: inline-block;
position: absolute;
top: -3px;
right: 0;
width: 17px;
height: 17px;
}
.theme-dark .ddp-hover-status .ddp-wrap-popup2 {
display: none;
position: absolute;
top: 20px;
right: 0;
min-width: 130px;
}
.theme-dark .ddp-hover-status.ddp-selected .ddp-wrap-popup2 {
display: block;
} | 0.284874 | 0.055695 |
@import url(https://fonts.googleapis.com/css?family=Oswald:300);
body,html{
height: 100%;
}
body {
font-family: 'Oswald', sans-serif;
background-color: #333;
font-weight: 300;
}
/* Login */
.page-login{
height: 100%;
background-image: url(../images/login-bg.jpg);
}
.page-login > div > div > div{
margin-left: 24%;
}
.page-login .login-box{
margin-top: 180px;
background: rgba(0,0,0,0.3);
}
/* iframe */
iframe{
width: 100%;
height: 100%;
border: none;
overflow: hidden;
}
/* Core */
#wrapper {
width: 100%;
height: 100%;
}
#page-wrapper {
height: 100%;
background-color: #F1F4F9;
}
@media(min-width:768px) {
#page-wrapper {
position: inherit;
margin: 0 0 0 160px;
}
}
#page-wrapper > .container-fluid {
padding: 0;
}
#page-wrapper > .container-fluid, #page-wrapper > .container-fluid > .tab-content, #page-wrapper > .container-fluid > .tab-content > .tab-pane {
height: 97%;
}
/* Logo */
.logo{
padding:15px;
background: #333;
}
/* Profile */
.profile{
padding: 15px;
background: #2B384E;
}
.profile img{
float: left;
width: 65px;
border: 3px solid #395079;
}
.profile h3{
float: right;
color: #fff;
font-size: 13px;
margin-bottom: 3px;
}
.profile span{
float: right;
color: #aaa;
font-size: 12px;
}
/* Table Inside Table*/
.table-inside, .table-inside input{
width: 100%;
}
.table-inside .chosen-container{
width: 100% !important;
}
/* Sidebar Menu */
.sidebar {
display: block;
float: left;
width: 160px;
}
@media(min-width:768px) {
.sidebar {
z-index: 1;
position: absolute;
}
}
.sidebar-nav {
padding: 0;
background-color: #333;
}
.sidebar-nav ul a {
padding: 10px 20px;
color: #fff;
}
.sidebar-nav ul ul a {
padding: 10px 30px;
background-color: rgba(0, 0, 0, 0.3);
}
.sidebar-nav ul ul a:hover, .sidebar-nav ul ul a:focus, .sidebar-nav ul ul a:active, .sidebar-nav ul ul a.active {
background-color: rgba(0, 0, 0, 0.4);
}
.sidebar-nav ul {
padding: 0;
margin: 0;
list-style: none;
}
.sidebar-nav a, .sidebar-nav a:hover, .sidebar-nav a:focus, .sidebar-nav a:active {
outline: none;
}
.sidebar-nav ul li, .sidebar-nav ul a {
display: block;
}
.sidebar-nav ul a:hover, .sidebar-nav ul a:focus, .sidebar-nav ul a:active {
color: #fff;
text-decoration: none;
}
.sidebar-nav-item {
padding-left: 5px;
}
.sidebar-nav-item-icon {
padding-right: 5px;
}
.sidebar-nav .nav>li>a:focus, .nav>li>a:hover {
background-color: #222;
}
.sidebar .arrow {
float: right;
}
.sidebar .fa.arrow:before {
content: "\f104";
}
.sidebar .active>a>.fa.arrow:before {
content: "\f107";
}
.container.white{
background-color: #fff;
padding: 20px 20px;
}
table.dataTable thead th, table.dataTable tfoot th{
background-color: #333;
color: #fff;
font-weight: 300;
}
table.dataTable.compact thead th, table.dataTable.compact thead td {
padding: 4px 17px 4px 10px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
background: #eee;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
background: #eee;
border-color:#ccc;
}
.dataTables_wrapper .dataTables_paginate{
padding-top: 15px;
}
#loader{
position: absolute;
height: 100%;
width: 100%;
z-index: 999;
background: url(../images/gears.gif) center center no-repeat;
background-color: rgba(255,255,255,0.85);
}
@media print {
body * {
visibility: hidden;
}
#print, #print * {
visibility: visible;
}
#print {
width: 100%;
position: absolute;
left: 0;
top: 0;
}
}
.multiline-textarea .input-group-addon{
background: #fff;
text-align: right;
line-height: 1.5;
padding: 3px 12px;
}
.input-group{
margin-bottom: 12px;
}
.input-group-addon{
padding: 6px 12px 6px 12px;
/*
min-width: 75px;
text-align: left;
*/
font-size: 11px;
font-weight: 700;
vertical-align: top;
} | assets/css/style.css | @import url(https://fonts.googleapis.com/css?family=Oswald:300);
body,html{
height: 100%;
}
body {
font-family: 'Oswald', sans-serif;
background-color: #333;
font-weight: 300;
}
/* Login */
.page-login{
height: 100%;
background-image: url(../images/login-bg.jpg);
}
.page-login > div > div > div{
margin-left: 24%;
}
.page-login .login-box{
margin-top: 180px;
background: rgba(0,0,0,0.3);
}
/* iframe */
iframe{
width: 100%;
height: 100%;
border: none;
overflow: hidden;
}
/* Core */
#wrapper {
width: 100%;
height: 100%;
}
#page-wrapper {
height: 100%;
background-color: #F1F4F9;
}
@media(min-width:768px) {
#page-wrapper {
position: inherit;
margin: 0 0 0 160px;
}
}
#page-wrapper > .container-fluid {
padding: 0;
}
#page-wrapper > .container-fluid, #page-wrapper > .container-fluid > .tab-content, #page-wrapper > .container-fluid > .tab-content > .tab-pane {
height: 97%;
}
/* Logo */
.logo{
padding:15px;
background: #333;
}
/* Profile */
.profile{
padding: 15px;
background: #2B384E;
}
.profile img{
float: left;
width: 65px;
border: 3px solid #395079;
}
.profile h3{
float: right;
color: #fff;
font-size: 13px;
margin-bottom: 3px;
}
.profile span{
float: right;
color: #aaa;
font-size: 12px;
}
/* Table Inside Table*/
.table-inside, .table-inside input{
width: 100%;
}
.table-inside .chosen-container{
width: 100% !important;
}
/* Sidebar Menu */
.sidebar {
display: block;
float: left;
width: 160px;
}
@media(min-width:768px) {
.sidebar {
z-index: 1;
position: absolute;
}
}
.sidebar-nav {
padding: 0;
background-color: #333;
}
.sidebar-nav ul a {
padding: 10px 20px;
color: #fff;
}
.sidebar-nav ul ul a {
padding: 10px 30px;
background-color: rgba(0, 0, 0, 0.3);
}
.sidebar-nav ul ul a:hover, .sidebar-nav ul ul a:focus, .sidebar-nav ul ul a:active, .sidebar-nav ul ul a.active {
background-color: rgba(0, 0, 0, 0.4);
}
.sidebar-nav ul {
padding: 0;
margin: 0;
list-style: none;
}
.sidebar-nav a, .sidebar-nav a:hover, .sidebar-nav a:focus, .sidebar-nav a:active {
outline: none;
}
.sidebar-nav ul li, .sidebar-nav ul a {
display: block;
}
.sidebar-nav ul a:hover, .sidebar-nav ul a:focus, .sidebar-nav ul a:active {
color: #fff;
text-decoration: none;
}
.sidebar-nav-item {
padding-left: 5px;
}
.sidebar-nav-item-icon {
padding-right: 5px;
}
.sidebar-nav .nav>li>a:focus, .nav>li>a:hover {
background-color: #222;
}
.sidebar .arrow {
float: right;
}
.sidebar .fa.arrow:before {
content: "\f104";
}
.sidebar .active>a>.fa.arrow:before {
content: "\f107";
}
.container.white{
background-color: #fff;
padding: 20px 20px;
}
table.dataTable thead th, table.dataTable tfoot th{
background-color: #333;
color: #fff;
font-weight: 300;
}
table.dataTable.compact thead th, table.dataTable.compact thead td {
padding: 4px 17px 4px 10px;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
background: #eee;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
background: #eee;
border-color:#ccc;
}
.dataTables_wrapper .dataTables_paginate{
padding-top: 15px;
}
#loader{
position: absolute;
height: 100%;
width: 100%;
z-index: 999;
background: url(../images/gears.gif) center center no-repeat;
background-color: rgba(255,255,255,0.85);
}
@media print {
body * {
visibility: hidden;
}
#print, #print * {
visibility: visible;
}
#print {
width: 100%;
position: absolute;
left: 0;
top: 0;
}
}
.multiline-textarea .input-group-addon{
background: #fff;
text-align: right;
line-height: 1.5;
padding: 3px 12px;
}
.input-group{
margin-bottom: 12px;
}
.input-group-addon{
padding: 6px 12px 6px 12px;
/*
min-width: 75px;
text-align: left;
*/
font-size: 11px;
font-weight: 700;
vertical-align: top;
} | 0.299822 | 0.069038 |
* {
box-sizing: border-box;
}
body {
margin: 0px 20px 0px 20px;
}
header {
background-color: #9CC3D5FF;
display: grid;
grid-template-columns: 60% 40%;
grid-template-rows: 200px 50px;
width: 100%;
justify-items: center;
align-items: center;
}
.brand {
grid-column: 1/3;
grid-row: 1/2;
text-align: center;
}
.brand-name {
font-family: 'Franklin Gothic Medium', sans-serif;
color: white;
font-size: 40px;
margin: 10px;
}
.brand-logo {
width: 100%;
max-width: 100px;
border-radius: 50%;
height: auto;
}
.header-nav {
grid-column: 1/2;
grid-row: 2/3;
font-family: 'Franklin Gothic Medium', sans-serif;
}
.header-tools {
grid-column: 2/3;
grid-row: 2/3;
}
.ul-navlist {
padding: 0;
}
.navlist {
display: inline;
padding: 0px 10px 0px 10px;
font-size: 25px;
}
.navlist-item {
color: #0063B2FF;
text-decoration: none;
text-shadow: 2px 2px #9ad7e2;
}
.wrap {
padding-right: 1%;
}
.hero-feature {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
text-align: center;
margin: 10px 0px 0px 0px;
padding: 10px;
background-color: #9CC3D5FF;
}
.skat-katalogu {
font-family: 'Franklin Gothic Medium', sans-serif;
margin: 0px;
text-align: center;
font-size: 30px;
border: 5px;
margin: 5px;
}
.hero-action {
margin: 10px 0px 10px 0px;
border: 5px;
padding: 10px;
background-color: #9CC3D5FF
}
.button1 {
background-color: rgb(4, 73, 105);
border: none;
border-radius: 15%;
color: rgb(236, 236, 236);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
}
.button1:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.rekl1 {
width: 100%;
max-width: 600px;
display: block;
margin: auto;
padding: 10px;
border: 5px dashed rgb(30, 32, 150);
border-radius: 15%;
}
.feature {
text-transform: uppercase;
text-shadow: 2px 2px #9ad7e2;
}
.never_image {
max-width: 100%;
border-radius: 15%;
}
.sac-logo {
max-width: 100%;
border-radius: 15%;
}
.article-feature {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
}
.article-listing {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
}
main {
background-color: #9CC3D5FF;
padding: 10px;
}
.sidebar {
background-color: #9CC3D5FF;
color: #0063B2FF;
font-family: 'Franklin Gothic Medium', sans-serif;
padding: 20px;
margin-top: 10px;
}
.sidebar-name {
text-shadow: 2px 2px #9ad7e2;
}
footer {
display: flex;
background-color: #9CC3D5FF;
color: white;
padding: 10px;
justify-content: space-between;
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
align-items: center;
}
.up1 {
color: #0063B2FF;
text-transform: uppercase;
text-shadow: 2px 2px #9ad7e2;
text-decoration: none;
}
.up1:hover {
text-shadow: 2px 2px 4px #000000;
color: rgb(85, 158, 253)
}
.follow-logos {
flex-shrink: 2;
}
.follow-logo {
width: 30px;
}
.ind-race1 {
text-shadow: 2px 2px #9ad7e2;
}
.sac-seriali {
text-shadow: 2px 2px #9ad7e2;
}
@media screen and (max-width: 382px) {
.follow-logos {
display: none;
}
.rekl2 {
display: none;
}
}
@media screen and (max-width: 575px) {
.hero-feature {
display: none;
}
header {
display: block;
}
.navlist {
display: block;
width: 100%;
cursor: pointer;
padding: 10px 24px;
color: white;
border: 1px solid black;
background-color: #9CC3D5FF;
text-align: center;
}
.navlist:hover {
background-color: #9CC3D5FF;
}
.ul-navlist {
color: #0063B2FF;
}
.navlist-item {
color: #0063B2FF;
text-decoration: none;
}
.header-tools {
text-align: center;
padding: 10px;
}
.brand {
text-align: center;
padding: 20px 0px 0px 5px;
}
.sidebar {
display: none;
}
.rekl2 {
display: none;
}
}
@media screen and (min-width: 576px) {
header {
display: flex;
justify-content: space-between;
}
.brand {
display: block;
padding: 10px;
}
.brand-logo {
display: block;
margin: auto;
}
.brand-name {
width: auto;
}
.navlist-item:hover {
text-shadow: 2px 2px 4px #000000;
color: #9CC3D5FF
}
.hero-feature {
display: block;
text-transform: uppercase;
}
.header-tools {
padding: 0px 15px 20px 0px;
}
main {
display: grid;
grid-template-columns: 60% 40%;
grid-template-rows: max-content;
}
.article-listing {
display: grid;
grid-column: 1/3;
grid-template-columns: 40% 60%;
}
.article-feature {
width: 100%;
padding: 10px
}
.rekl {
align-self: center;
}
.ind-race {
padding: 0px 10px 10px 10px;
border-right: 1px dashed rgb(75, 123, 161);
}
.sacensibas {
padding: 0px 10px 10px 10px;
}
footer {
margin: 10px 0px 0px 0px;
}
.sidebar {
display: block;
grid-column: 1/3;
}
.rekl2 {
display: none;
}
}
@media screen and (min-width: 992px) {
.rekl2 {
display: block;
padding: 10px;
border: 2px dashed rgb(49, 51, 148);
}
.hero {
display: inline-flex;
grid-template-columns: 45% 30% 25%;
grid-template-rows: 1fr;
justify-items: center;
align-items: center;
background-color: #9CC3D5FF;
margin: 10px 0px 10px 0px;
}
.rekl1 {
display: none;
}
main {
display: grid;
grid-template-columns: 20% 50% 30%;
grid-template-rows: 50% 50%;
align-items: stretch;
}
.article-feature {
grid-column: 1/2;
grid-row: 1/3;
padding: 0px 0px 0px 10px;
}
.article-listing {
grid-column: 2/3;
grid-row: 1/3;
padding: 0;
margin-right: 10px;
}
.sidebar {
grid-column: 3/4;
grid-row: 1/3;
padding: 10px;
margin: 0;
border: 2px dashed #0063B2FF;
}
} | style.css | * {
box-sizing: border-box;
}
body {
margin: 0px 20px 0px 20px;
}
header {
background-color: #9CC3D5FF;
display: grid;
grid-template-columns: 60% 40%;
grid-template-rows: 200px 50px;
width: 100%;
justify-items: center;
align-items: center;
}
.brand {
grid-column: 1/3;
grid-row: 1/2;
text-align: center;
}
.brand-name {
font-family: 'Franklin Gothic Medium', sans-serif;
color: white;
font-size: 40px;
margin: 10px;
}
.brand-logo {
width: 100%;
max-width: 100px;
border-radius: 50%;
height: auto;
}
.header-nav {
grid-column: 1/2;
grid-row: 2/3;
font-family: 'Franklin Gothic Medium', sans-serif;
}
.header-tools {
grid-column: 2/3;
grid-row: 2/3;
}
.ul-navlist {
padding: 0;
}
.navlist {
display: inline;
padding: 0px 10px 0px 10px;
font-size: 25px;
}
.navlist-item {
color: #0063B2FF;
text-decoration: none;
text-shadow: 2px 2px #9ad7e2;
}
.wrap {
padding-right: 1%;
}
.hero-feature {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
text-align: center;
margin: 10px 0px 0px 0px;
padding: 10px;
background-color: #9CC3D5FF;
}
.skat-katalogu {
font-family: 'Franklin Gothic Medium', sans-serif;
margin: 0px;
text-align: center;
font-size: 30px;
border: 5px;
margin: 5px;
}
.hero-action {
margin: 10px 0px 10px 0px;
border: 5px;
padding: 10px;
background-color: #9CC3D5FF
}
.button1 {
background-color: rgb(4, 73, 105);
border: none;
border-radius: 15%;
color: rgb(236, 236, 236);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
}
.button1:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.rekl1 {
width: 100%;
max-width: 600px;
display: block;
margin: auto;
padding: 10px;
border: 5px dashed rgb(30, 32, 150);
border-radius: 15%;
}
.feature {
text-transform: uppercase;
text-shadow: 2px 2px #9ad7e2;
}
.never_image {
max-width: 100%;
border-radius: 15%;
}
.sac-logo {
max-width: 100%;
border-radius: 15%;
}
.article-feature {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
}
.article-listing {
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
}
main {
background-color: #9CC3D5FF;
padding: 10px;
}
.sidebar {
background-color: #9CC3D5FF;
color: #0063B2FF;
font-family: 'Franklin Gothic Medium', sans-serif;
padding: 20px;
margin-top: 10px;
}
.sidebar-name {
text-shadow: 2px 2px #9ad7e2;
}
footer {
display: flex;
background-color: #9CC3D5FF;
color: white;
padding: 10px;
justify-content: space-between;
font-family: 'Franklin Gothic Medium', sans-serif;
color: #0063B2FF;
align-items: center;
}
.up1 {
color: #0063B2FF;
text-transform: uppercase;
text-shadow: 2px 2px #9ad7e2;
text-decoration: none;
}
.up1:hover {
text-shadow: 2px 2px 4px #000000;
color: rgb(85, 158, 253)
}
.follow-logos {
flex-shrink: 2;
}
.follow-logo {
width: 30px;
}
.ind-race1 {
text-shadow: 2px 2px #9ad7e2;
}
.sac-seriali {
text-shadow: 2px 2px #9ad7e2;
}
@media screen and (max-width: 382px) {
.follow-logos {
display: none;
}
.rekl2 {
display: none;
}
}
@media screen and (max-width: 575px) {
.hero-feature {
display: none;
}
header {
display: block;
}
.navlist {
display: block;
width: 100%;
cursor: pointer;
padding: 10px 24px;
color: white;
border: 1px solid black;
background-color: #9CC3D5FF;
text-align: center;
}
.navlist:hover {
background-color: #9CC3D5FF;
}
.ul-navlist {
color: #0063B2FF;
}
.navlist-item {
color: #0063B2FF;
text-decoration: none;
}
.header-tools {
text-align: center;
padding: 10px;
}
.brand {
text-align: center;
padding: 20px 0px 0px 5px;
}
.sidebar {
display: none;
}
.rekl2 {
display: none;
}
}
@media screen and (min-width: 576px) {
header {
display: flex;
justify-content: space-between;
}
.brand {
display: block;
padding: 10px;
}
.brand-logo {
display: block;
margin: auto;
}
.brand-name {
width: auto;
}
.navlist-item:hover {
text-shadow: 2px 2px 4px #000000;
color: #9CC3D5FF
}
.hero-feature {
display: block;
text-transform: uppercase;
}
.header-tools {
padding: 0px 15px 20px 0px;
}
main {
display: grid;
grid-template-columns: 60% 40%;
grid-template-rows: max-content;
}
.article-listing {
display: grid;
grid-column: 1/3;
grid-template-columns: 40% 60%;
}
.article-feature {
width: 100%;
padding: 10px
}
.rekl {
align-self: center;
}
.ind-race {
padding: 0px 10px 10px 10px;
border-right: 1px dashed rgb(75, 123, 161);
}
.sacensibas {
padding: 0px 10px 10px 10px;
}
footer {
margin: 10px 0px 0px 0px;
}
.sidebar {
display: block;
grid-column: 1/3;
}
.rekl2 {
display: none;
}
}
@media screen and (min-width: 992px) {
.rekl2 {
display: block;
padding: 10px;
border: 2px dashed rgb(49, 51, 148);
}
.hero {
display: inline-flex;
grid-template-columns: 45% 30% 25%;
grid-template-rows: 1fr;
justify-items: center;
align-items: center;
background-color: #9CC3D5FF;
margin: 10px 0px 10px 0px;
}
.rekl1 {
display: none;
}
main {
display: grid;
grid-template-columns: 20% 50% 30%;
grid-template-rows: 50% 50%;
align-items: stretch;
}
.article-feature {
grid-column: 1/2;
grid-row: 1/3;
padding: 0px 0px 0px 10px;
}
.article-listing {
grid-column: 2/3;
grid-row: 1/3;
padding: 0;
margin-right: 10px;
}
.sidebar {
grid-column: 3/4;
grid-row: 1/3;
padding: 10px;
margin: 0;
border: 2px dashed #0063B2FF;
}
} | 0.29696 | 0.187207 |
* {
padding: 0px;
margin: 0px;
}
body {
background: url(https://raw.githubusercontent.com/Shihara-Dilshan/img/master/18550908.jpg);
}
.show {
display: block;
}
.hide {
display: none !important;
}
.routes {
text-decoration: none !important;
}
a:hover {
color: #000000 !important ;
text-decoration: none !important;
}
a {
color: #ffffff !important;
text-decoration: none !important;
background-color: transparent !important;
}
.dropDown a {
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.dropDown a:hover {
color: grey !important ;
text-decoration: none !important;
}
#basic-nav-dropdown {
color: #ffffff !important;
text-decoration: none !important;
background-color: transparent !important;
}
#basic-nav-dropdown:hover {
color: #000000 !important ;
text-decoration: none !important;
}
.userProfile a{
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.userProfile a:hover{
color: grey !important ;
text-decoration: none !important;
}
.feed a{
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.feed a:hover{
color: grey !important ;
text-decoration: none !important;
}
#covid19data{
width: 100% !important
}
.test {
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} | font-end/noobstack/src/App.css | * {
padding: 0px;
margin: 0px;
}
body {
background: url(https://raw.githubusercontent.com/Shihara-Dilshan/img/master/18550908.jpg);
}
.show {
display: block;
}
.hide {
display: none !important;
}
.routes {
text-decoration: none !important;
}
a:hover {
color: #000000 !important ;
text-decoration: none !important;
}
a {
color: #ffffff !important;
text-decoration: none !important;
background-color: transparent !important;
}
.dropDown a {
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.dropDown a:hover {
color: grey !important ;
text-decoration: none !important;
}
#basic-nav-dropdown {
color: #ffffff !important;
text-decoration: none !important;
background-color: transparent !important;
}
#basic-nav-dropdown:hover {
color: #000000 !important ;
text-decoration: none !important;
}
.userProfile a{
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.userProfile a:hover{
color: grey !important ;
text-decoration: none !important;
}
.feed a{
color: #000000 !important;
text-decoration: none !important;
background-color: transparent !important;
}
.feed a:hover{
color: grey !important ;
text-decoration: none !important;
}
#covid19data{
width: 100% !important
}
.test {
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 1s; /* Firefox < 16 */
-ms-animation: fadein 1s; /* Internet Explorer */
-o-animation: fadein 1s; /* Opera < 12.1 */
animation: fadein 1s;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} | 0.385028 | 0.145267 |
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
body{margin:0}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
a{background:transparent}
a:active,a:hover{outline:0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
dfn{font-style:italic}
h1{font-size:2em;margin:.67em 0}
mark{background:#ff0;color:#000}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-.5em}
sub{bottom:-.25em}
img{border:0}
svg:not(:root){overflow:hidden}
figure{margin:1em 40px}
hr{box-sizing:content-box;height:0}
pre{overflow:auto}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
button{overflow:visible}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
input{line-height:normal}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}
input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0}
textarea{overflow:auto}
optgroup{font-weight:bold}
table{border-collapse:collapse;border-spacing:0}
td,th{padding:0}
a{-webkit-tap-highlight-color:rgba(0,0,0,0)}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url("https://fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2") format('woff2')}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:800;src:local('Open Sans Extrabold'),local('OpenSans-Extrabold'),url("https://fonts.gstatic.com/s/opensans/v10/EInbV5DfGHOiMmvb1Xr-hiYtBUPDK3WL7KRKS_3q7OE.woff2") format('woff2')}
h1,h2,h3,h4{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal}
@-webkit-keyframes animateGradient{0%{background-position:100% 90%}
99%{background-position:0% 90%}
100%{background-position:0% 90%;background-size:200% 7px}
}
@keyframes animateGradient{0%{background-position:100% 90%}
99%{background-position:0% 90%}
100%{background-position:0% 90%;background-size:200% 7px}
}
.icons-home{text-align:center;}
.icons-home a{display:inline-block;padding:.938rem;margin:.125rem;border-radius:50%;border:.125rem solid #fff;line-height:0;transition:all .7s;}
.icons-home a .icon{fill:#fff;width:18px;height:18px;}
@media only screen and (min-width:37.5rem){.icons-home a .icon{width:30px;height:30px}
}
.icons-home a:hover{background:#fff;}
.icons-home a:hover .icon{fill:#000847}
.down{position:absolute;bottom:50px;width:100%;display:block;text-align:center;}
.down .icon{position:absolute;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100px;height:100px;fill:#fff;-webkit-animation:pulse 1.3s infinite;animation:pulse 1.3s infinite}
.icon-arrow-menu{vertical-align:bottom;width:18px;height:15px}
#heart{color:#e41515}
*,*:before,*:after{box-sizing:border-box}
body{left:0;right:0;margin:auto}
a,aside,.overlay,body{transition:all .25s ease}
a.slideButton,.dosearch{position:absolute;display:block;width:40px;height:40px;top:10px;z-index:31}
.slideButton{left:10px}
.dosearch{right:10px;background:#000C6B;border-radius:.188rem;padding:.125rem .188rem}
.icon-menu{cursor:pointer;padding:.313rem;border-radius:.188rem;background:#000C6B;width:2.5rem;height:2.5rem;fill:#fff}
.icon-search{width:2.188rem;height:2.188rem}
.overlay{cursor:pointer}
#close{display:none}
aside{position:fixed;height:163px;width:100%;bottom:-100%;background:#2f2f33;z-index:20;box-shadow:inset -10px -1px 15px -9px rgba(0,0,0,0.5);}
aside li{margin:0;list-style-type:none}
aside ul{margin:0;padding:0}
aside #topmenu{background-color:#000847;border:2px solid #000847;*zoom:1;}
aside #topmenu:before,aside #topmenu:after{content:'';display:table}
aside #topmenu:after{clear:both}
aside #topmenu ul{*zoom:1;float:left;clear:none;text-align:inherit;width:63.95%;margin-left:0%;margin-right:3%;}
aside #topmenu ul:before,aside #topmenu ul:after{content:'';display:table}
aside #topmenu ul:after{clear:both}
aside #topmenu ul:last-child{margin-right:0%}
@media only screen and (max-width:1000px){aside #topmenu ul{*zoom:1;float:left;clear:none;text-align:inherit;width:100%;margin-left:0%;margin-right:3%}
aside #topmenu ul:before,aside #topmenu ul:after{content:'';display:table}
aside #topmenu ul:after{clear:both}
aside #topmenu ul:last-child{margin-right:0%}
}
aside #topmenu ul:nth-child(2){*zoom:1;float:left;clear:none;text-align:inherit;width:33.05%;margin-left:0%;margin-right:3%;display:none;text-align:right;}
aside #topmenu ul:nth-child(2):before,aside #topmenu ul:nth-child(2):after{content:'';display:table}
aside #topmenu ul:nth-child(2):after{clear:both}
aside #topmenu ul:nth-child(2):last-child{margin-right:0%}
aside #topmenu ul:nth-child(2) li:first-child{background:transparent;}
aside #topmenu ul:nth-child(2) li:first-child span{background:transparent;border-radius:0;color:#fff;width:45px}
aside #topmenu ul:nth-child(2) li:nth-child(2){padding-left:20px;padding-right:20px}
aside #topmenu ul:nth-child(2) li:nth-child(3){margin-right:-10px;padding-left:10px}
@media only screen and (min-width:1000px){aside #topmenu ul:nth-child(2){display:block}
}
aside #topmenu ul li{-webkit-transform:skewx(-20deg);transform:skewx(-20deg);padding:3px 4px 6px 4px;background:#2f2f33;display:inline-block;}
aside #topmenu ul li:first-child{background:#efb102;padding:4px 10px 4px 20px;margin-left:-10px;}
aside #topmenu ul li:first-child span{border-radius:100%;width:20px;height:20px;text-align:center;background-color:#000;color:#efb102;font-weight:300}
aside #topmenu ul li:nth-child(3){background:#ab67ab;padding-right:30px;padding-left:30px;}
aside #topmenu ul li:nth-child(3) span{color:#fff}
aside #topmenu ul li span{-webkit-transform:skewx(20deg);transform:skewx(20deg);display:block;font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal;font-size:.813rem;color:#ab67ab}
@media only screen and (max-width:37.5rem){aside #topmenu ul li:nth-child(3),aside #topmenu ul li:nth-child(4){display:none}
}
aside nav ul{padding:10px 0 0 10px;float:left;margin-right:80px;}
aside nav ul .counter-menu{color:#ab67ab;font-weight:800;margin-right:4px}
aside nav ul a{width:100%;cursor:pointer;text-decoration:none;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#b3b3b1;}
aside nav ul a:hover{background:rgba(135,116,169,0.42)}
aside.slide{bottom:0}
a.slideButton.slide{pointer-events:none}
.overlay{position:fixed;width:100%;height:100%;bottom:0;left:0;pointer-events:none;background:transparent;z-index:30;}
.overlay.slide{pointer-events:auto;bottom:162px;background:rgba(0,0,0,0.6)}
input[type="search"]{-ms-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}
.search-wrapper{-webkit-transform:translateY(-400px);transform:translateY(-400px);z-index:9999;}
.search-wrapper.active{-webkit-transform:translateY(0);transform:translateY(0)}
.search-form{position:relative;top:0;-webkit-transform:translateX(-200px);transform:translateX(-200px);z-index:9999;width:100%;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;transition:all 200ms 100ms cubic-bezier(0,.6,.4,1);}
.search-form h4{margin:.625rem 0}
.search-form .search-field{width:100%;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:1.625rem;color:#fff;background-color:transparent;border:0;border-bottom:1px solid #fff;border-radius:0;box-shadow:none;background-clip:padding-box;-webkit-appearance:none;}
.search-form .search-field:focus{outline:0;box-shadow:none}
.search-form.active{top:0;-webkit-transform:translateX(0);transform:translateX(0);-ms-filter:none;-webkit-filter:none;filter:none;opacity:1}
.search-form.hidden{display:none}
.search-form .icon-remove-sign{position:absolute;top:0;right:0;z-index:1;display:block;fill:#fff;width:30px;height:30px;text-align:center;cursor:pointer}
.search-form::-webkit-input-placeholder{font-size:1.625rem}
.search-form .search-field::-webkit-search-decoration,.search-form .search-field::-webkit-search-cancel-button,.search-form .search-field::-webkit-search-results-button,.search-form .search-field::-webkit-search-results-decoration{display:none}
.search-form .search-list{position:absolute;width:100%;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal}
.search-form h4,.search-form li,.search-form p,.search-form a,.search-form a:hover{color:#fff}
body.search-overlay{overflow:hidden;}
body.search-overlay:after{position:absolute;top:0;left:0;z-index:9001;width:100%;height:100%;min-height:100%;background-color:rgba(0,0,0,0.6);content:'';}
@media only screen and (max-width:37.5rem){body.search-overlay:after{background-color:#000847}
}
.search-wrapper{position:absolute;top:50px;width:100%;padding-right:10%;padding-left:10%;}
.search-wrapper *zoom 1:after,.search-wrapper *zoom 1:before{display:table;line-height:0;content:""}
.search-wrapper *zoom 1:after{clear:both}
.search-wrapper:before,.search-wrapper:after{display:table;line-height:0;content:""}
.search-list{padding:0;margin:0;list-style-type:none;}
.search-list .entry-date{float:right;display:none;font-size:14px;text-transform:uppercase}
.search-list a{text-decoration:none;display:block;padding:.938rem 0;width:100%;border-bottom:1px solid #fff;}
.search-list a:hover{color:#b3b3b3;border-bottom:1px solid #b3b3b3}
@media only screen and (min-width:48em){.search-wrapper{top:100px}
.search-list .entry-date{display:inline}
}
.tags{margin-top:1.875rem;}
.tags a{font-size:.875rem;color:#000847;display:inline-block;border:1px solid #000847;border-radius:.313rem;padding:.25rem .625rem;margin-right:.125rem;margin-bottom:.5rem;text-decoration:none;}
.tags a:hover{color:#2e273d;border:1px solid #2e273d}
.img-rounded{border-radius:50%}
.aboutme .recent{list-style:none}
.aboutme .post-title:before{content:""}
.aboutme h2:hover{background-color:rgba(135,116,169,0.42)}
html,body{height:100%}
.header-site,.header-post,.page-header{background:#000847;height:100%;}
.header-site .content,.header-post .content,.page-header .content{width:95%;position:absolute;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}
.header-site li{margin:0;list-style-type:none}
.header-site .person img{width:300px;border-radius:100%;margin-bottom:70px}
.header-site .recent{*zoom:1;width:auto;max-width:450px;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;}
@media only screen and (max-width:320px){.header-site .recent:last-child{display:none}
}
.header-site .recent:before,.header-site .recent:after{content:'';display:table}
.header-site .recent:after{clear:both}
.header-site .recent p{text-align:left;color:#fff}
.header-site .recent a{text-decoration:none;}
.header-site .recent a h2{text-align:left;margin:0;font-weight:300;font-size:1.063rem;border-bottom:1px solid #8774a9;}
.header-site .recent a h2:hover{background:rgba(135,116,169,0.42)}
.header-site h1,.header-site h2{color:#fff;text-align:center}
.header-site .site-title{font-size:1.875rem;line-height:1;margin-top:-80px;display:block;letter-spacing:9px;}
@media only screen and (min-width:37.5rem){.header-site .site-title{letter-spacing:16px;margin-bottom:0;font-size:1.25rem}
}
.header-site .site-description{font-size:1.25rem;display:block;margin:1.875rem 0;}
@media only screen and (min-width:37.5rem){.header-site .site-description{font-size:2.5rem}
}
.header-post{height:62px;}
@media only screen and (min-width:90.625rem){.header-post{background:transparent}
.header-post #open{position:fixed;background:transparent}
}
.header-post p{margin:0;padding-top:23px;text-align:center;color:#fff}
.page-header{height:62px;}
.page-header h1{text-align:center;text-transform:uppercase;font-size:1.875rem;margin:0 0 30px;padding-top:10px;color:#fff;font-weight:300;}
@media only screen and (min-width:37.5rem){.page-header h1{font-size:1.875rem}
}
.page_posts .tree-posts{display:block;width:100%}
.page_posts #search{background:transparent;}
.page_posts #search svg{background-color:transparent}
.tree-posts{padding-top:43px;width:347px;height:100%;position:fixed;background-color:#2f2f33;overflow-y:auto;top:0;}
@media only screen and (max-width:90.625rem){.tree-posts{display:none}
}
.tree-posts h3{color:#c06a64;position:relative;margin:.625rem 0;}
.tree-posts h3:before{content:"";width:100px;height:4px;position:absolute;bottom:0;background-color:#c06a64}
.post-item{text-align:left;padding:.313rem 1.25rem;position:relative;}
.post-item .content{*zoom:1;}
.post-item .content:before,.post-item .content:after{content:'';display:table}
.post-item .content:after{clear:both}
@media only screen and (max-width:37.5rem){.post-item .content{text-align:center;display:block;clear:both;float:none;width:100%;margin-left:auto;margin-right:auto}
.post-item .content:first-child{margin-left:auto}
.post-item .content:last-child{margin-right:auto}
}
.post-item .content a{text-transform:lowercase;text-decoration:none;border:none}
@media only screen and (min-width:37.5rem){.post-item .content a{*zoom:1;float:left;clear:none;text-align:inherit;width:69.1%;margin-left:0%;margin-right:3%}
.post-item .content a:before,.post-item .content a:after{content:'';display:table}
.post-item .content a:after{clear:both}
.post-item .content a:last-child{margin-right:0%}
}
.post-item .content .date{color:#000847}
.post-item .content .post-title{color:#c7b288;position:relative;padding:0;font-size:1rem;margin:0;text-align:center;}
.post-item .content .post-title.selected{background:#000847}
.post-item .content .post-title:hover{background-color:rgba(199,178,136,0.32)}
@media only screen and (min-width:37.5rem){.post-item .content .post-title{text-align:left;margin-left:-.625rem;display:initial;font-size:1.063rem;text-decoration:none}
}
@media only screen and (min-width:90.625rem){.post{margin-left:347px}
}
.post h1:before,.post h2:before,.post h3:before{color:#000847;font-weight:300;margin-right:10px}
.post h1{text-align:center;margin:0;font-size:1.875rem;}
@media only screen and (min-width:37.5rem){.post h1{font-size:2.5rem}
}
.post h1:before{content:"#";color:#000847;font-size:2.5rem}
.post .time{text-align:center;margin-top:30px;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal}
.post .music-read{text-align:center}
.post-content{padding:1rem 0;}
.post-content img{max-width:100%;margin:1.875rem auto;display:block}
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe{max-width:50rem;padding:0 1.25rem;margin:0 auto 1.875rem;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:1.125rem;line-height:2;letter-spacing:.01rem;}
@media only screen and (min-width:37.5rem){.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe{font-size:1.25rem}
}
.post-content p,.post-content li{color:#333;}
.post-content p code,.post-content li code{color:#615576}
.post-content a{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#000847;text-decoration:none;border-bottom:2px solid #000847;}
.post-content a:hover{background-color:rgba(135,116,169,0.42)}
.post-content iframe{margin-top:1.875rem;width:100%}
.post-content #twitter-widget-0{margin:auto !important}
.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal}
.post-content h1{font-size:1.875rem;line-height:1.4;}
@media only screen and (min-width:37.5rem){.post-content h1{font-size:2.813rem}
}
.post-content h2{font-size:1.375rem;line-height:1.4;}
.post-content h2:before{content:'##';font-size:1.563rem}
@media only screen and (min-width:37.5rem){.post-content h2{font-size:2.188rem}
}
.post-content h3{font-size:1.125rem;line-height:1.4;}
@media only screen and (min-width:37.5rem){.post-content h3{font-size:1.563rem}
}
.post-content ul,.post-content ol{padding-left:2.5rem}
.post-content ul.post-list{padding:0;}
@media only screen and (max-width:37.5rem){.post-content ul.post-list{padding:0 1.25rem}
}
.post-content blockquote{*zoom:1;width:auto;max-width:45.625rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;border-left:.313rem solid #000847;padding:0 1.875rem;margin:3.125rem auto;}
.post-content blockquote:before,.post-content blockquote:after{content:'';display:table}
.post-content blockquote:after{clear:both}
@media only screen and (max-width:37.5rem){.post-content blockquote{width:70%}
}
.post-content blockquote p{color:rgba(0,0,0,0.6);margin:0;}
@media only screen and (max-width:37.5rem){.post-content blockquote p{font-size:1.125rem;line-height:1.5;padding:0}
}
.post-content hr{*zoom:1;width:auto;max-width:47.5rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;border:1px solid #f2f2f2;margin:50px auto}
.post-content hr:before,.post-content hr:after{content:'';display:table}
.post-content hr:after{clear:both}
.post-content .about_perfil{width:200px}
.share{*zoom:1;width:auto;max-width:800px;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;text-align:center;border-top:1px solid #f2f2f2;padding-top:1.25rem;}
.share:before,.share:after{content:'';display:table}
.share:after{clear:both}
.share svg{margin:.938rem;width:35px;height:35px}
.share a{text-decoration:none;}
.share a:hover svg{fill:#000847}
table{margin:3.125rem auto;}
@media only screen and (max-width:37.5rem){table{display:none}
}
table th,table td{border:.125rem solid #ccc;padding:.313rem}
.tag-title{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:2.25rem;margin-top:3.75rem;*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;}
.tag-title:before,.tag-title:after{content:'';display:table}
.tag-title:after{clear:both}
@media only screen and (max-width:37.5rem){.tag-title{font-size:1.75rem;margin-top:1.25rem;padding:0 1.25rem}
}
.post-list{list-style:none;margin:1.563rem auto;}
@media only screen and (max-width:37.5rem){.post-list{padding:0 1.25rem}
}
.post-list a{display:block;border-bottom:1px solid #dadada;padding:.625rem 0;text-decoration:none;transition:all .5s;}
.post-list a:hover{color:#2e273d;border-bottom:1px solid #2e273d}
.post-list .entry-date{float:right;}
@media only screen and (max-width:37.5rem){.post-list .entry-date{display:none}
}
pre{width:100%;padding:1.25rem 0;color:#fff;margin:1.875rem 0;font-size:.875rem;}
@media only screen and (min-width:37.5rem){pre{font-size:1rem;padding:1.25rem 0;margin:1.25rem 0}
}
pre code{*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;padding:0 1.25rem;}
pre code:before,pre code:after{content:'';display:table}
pre code:after{clear:both}
@media only screen and (max-width:37.5rem){pre code{overflow-x:scroll}
}
pre span{line-height:1.5rem;font-family:'Monaco','Consolas','Menlo',monospace}
.highlight{white-space:pre;overflow:auto;word-wrap:normal;border-radius:0;padding:20px;background-color:#2f2f33;color:#c1c2c3;margin:0;margin-bottom:30px}
.highlight .hll{background-color:#ffc}
.highlight .gd{color:#2e3436;background-color:#0e1416}
.highlight .gr{color:#eeeeec;background-color:#c00}
.highlight .gi{color:#babdb6;background-color:#1f2b2d}
.highlight .go{color:#2c3032;background-color:#2c3032}
.highlight .kt{color:#e3e7df}
.highlight .ni{color:#888a85}
.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs{color:#8d9684}
.highlight .err,.highlight .g,.highlight .l,.highlight .n,.highlight .x,.highlight .p,.highlight .ge,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .ld,.highlight .s,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py,.highlight .ow,.highlight .w,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx,.highlight .sr,.highlight .s1,.highlight .ss,.highlight .bp{color:#c1c2c3}
.highlight .k,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .nt{color:#729fcf}
.highlight .cp,.highlight .gh,.highlight .gu,.highlight .na,.highlight .nf{color:#00021D}
.highlight .m,.highlight .nb,.highlight .no,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .il{color:#8ae234}
.highlight .o{color:#989daa}
.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi{color:#fff}
.author{background:#f2f2f2;display:table;width:100%;padding:2.5rem 0;margin:2.5rem 0;}
@media only screen and (min-width:37.5rem){.author{padding:3.125rem 0}
}
.author .details{margin:auto;max-width:50rem;padding:0 1.25rem;}
@media only screen and (max-width:37.5rem){.author .details{text-align:center}
}
.author img{border-radius:50%;display:block;margin:auto;}
@media only screen and (min-width:37.5rem){.author img{float:left;margin-right:3.125rem}
}
.author .def{color:#808080;font-size:1.125rem;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;margin:.625rem;}
@media only screen and (min-width:37.5rem){.author .def{margin:0;padding-top:1.563rem}
}
.author .name{margin:0;}
.author .name a{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal;text-decoration:none;color:#000;font-size:1.875rem;}
.author .name a:hover{color:#000847}
@media only screen and (min-width:37.5rem){.author .name a{font-size:2.813rem}
}
.author .desc{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;margin:.625rem;font-size:1rem;}
@media only screen and (min-width:37.5rem){.author .desc{font-size:1.25rem}
}
.author .email{text-decoration:none;color:#000847}
.comments{*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;padding:0 1.25rem;}
.comments:before,.comments:after{content:'';display:table}
.comments:after{clear:both}
.comments h3{margin:0 0 1.875rem;font-size:1.875rem}
footer{background:#000847;padding:1.563rem 0;margin-top:100px;clear:both;}
footer p{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#fff;text-align:center;margin:0} | assets/css/main.css | html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}
body{margin:0}
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block;vertical-align:baseline}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
a{background:transparent}
a:active,a:hover{outline:0}
abbr[title]{border-bottom:1px dotted}
b,strong{font-weight:bold}
dfn{font-style:italic}
h1{font-size:2em;margin:.67em 0}
mark{background:#ff0;color:#000}
small{font-size:80%}
sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sup{top:-.5em}
sub{bottom:-.25em}
img{border:0}
svg:not(:root){overflow:hidden}
figure{margin:1em 40px}
hr{box-sizing:content-box;height:0}
pre{overflow:auto}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}
button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
button{overflow:visible}
button,select{text-transform:none}
button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}
button[disabled],html input[disabled]{cursor:default}
button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
input{line-height:normal}
input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}
input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}
input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}
input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{border:0;padding:0}
textarea{overflow:auto}
optgroup{font-weight:bold}
table{border-collapse:collapse;border-spacing:0}
td,th{padding:0}
a{-webkit-tap-highlight-color:rgba(0,0,0,0)}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:300;src:local('Open Sans Light'),local('OpenSans-Light'),url("https://fonts.gstatic.com/s/opensans/v10/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2") format('woff2')}
@font-face{font-family:'Open Sans';font-style:normal;font-weight:800;src:local('Open Sans Extrabold'),local('OpenSans-Extrabold'),url("https://fonts.gstatic.com/s/opensans/v10/EInbV5DfGHOiMmvb1Xr-hiYtBUPDK3WL7KRKS_3q7OE.woff2") format('woff2')}
h1,h2,h3,h4{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal}
@-webkit-keyframes animateGradient{0%{background-position:100% 90%}
99%{background-position:0% 90%}
100%{background-position:0% 90%;background-size:200% 7px}
}
@keyframes animateGradient{0%{background-position:100% 90%}
99%{background-position:0% 90%}
100%{background-position:0% 90%;background-size:200% 7px}
}
.icons-home{text-align:center;}
.icons-home a{display:inline-block;padding:.938rem;margin:.125rem;border-radius:50%;border:.125rem solid #fff;line-height:0;transition:all .7s;}
.icons-home a .icon{fill:#fff;width:18px;height:18px;}
@media only screen and (min-width:37.5rem){.icons-home a .icon{width:30px;height:30px}
}
.icons-home a:hover{background:#fff;}
.icons-home a:hover .icon{fill:#000847}
.down{position:absolute;bottom:50px;width:100%;display:block;text-align:center;}
.down .icon{position:absolute;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);width:100px;height:100px;fill:#fff;-webkit-animation:pulse 1.3s infinite;animation:pulse 1.3s infinite}
.icon-arrow-menu{vertical-align:bottom;width:18px;height:15px}
#heart{color:#e41515}
*,*:before,*:after{box-sizing:border-box}
body{left:0;right:0;margin:auto}
a,aside,.overlay,body{transition:all .25s ease}
a.slideButton,.dosearch{position:absolute;display:block;width:40px;height:40px;top:10px;z-index:31}
.slideButton{left:10px}
.dosearch{right:10px;background:#000C6B;border-radius:.188rem;padding:.125rem .188rem}
.icon-menu{cursor:pointer;padding:.313rem;border-radius:.188rem;background:#000C6B;width:2.5rem;height:2.5rem;fill:#fff}
.icon-search{width:2.188rem;height:2.188rem}
.overlay{cursor:pointer}
#close{display:none}
aside{position:fixed;height:163px;width:100%;bottom:-100%;background:#2f2f33;z-index:20;box-shadow:inset -10px -1px 15px -9px rgba(0,0,0,0.5);}
aside li{margin:0;list-style-type:none}
aside ul{margin:0;padding:0}
aside #topmenu{background-color:#000847;border:2px solid #000847;*zoom:1;}
aside #topmenu:before,aside #topmenu:after{content:'';display:table}
aside #topmenu:after{clear:both}
aside #topmenu ul{*zoom:1;float:left;clear:none;text-align:inherit;width:63.95%;margin-left:0%;margin-right:3%;}
aside #topmenu ul:before,aside #topmenu ul:after{content:'';display:table}
aside #topmenu ul:after{clear:both}
aside #topmenu ul:last-child{margin-right:0%}
@media only screen and (max-width:1000px){aside #topmenu ul{*zoom:1;float:left;clear:none;text-align:inherit;width:100%;margin-left:0%;margin-right:3%}
aside #topmenu ul:before,aside #topmenu ul:after{content:'';display:table}
aside #topmenu ul:after{clear:both}
aside #topmenu ul:last-child{margin-right:0%}
}
aside #topmenu ul:nth-child(2){*zoom:1;float:left;clear:none;text-align:inherit;width:33.05%;margin-left:0%;margin-right:3%;display:none;text-align:right;}
aside #topmenu ul:nth-child(2):before,aside #topmenu ul:nth-child(2):after{content:'';display:table}
aside #topmenu ul:nth-child(2):after{clear:both}
aside #topmenu ul:nth-child(2):last-child{margin-right:0%}
aside #topmenu ul:nth-child(2) li:first-child{background:transparent;}
aside #topmenu ul:nth-child(2) li:first-child span{background:transparent;border-radius:0;color:#fff;width:45px}
aside #topmenu ul:nth-child(2) li:nth-child(2){padding-left:20px;padding-right:20px}
aside #topmenu ul:nth-child(2) li:nth-child(3){margin-right:-10px;padding-left:10px}
@media only screen and (min-width:1000px){aside #topmenu ul:nth-child(2){display:block}
}
aside #topmenu ul li{-webkit-transform:skewx(-20deg);transform:skewx(-20deg);padding:3px 4px 6px 4px;background:#2f2f33;display:inline-block;}
aside #topmenu ul li:first-child{background:#efb102;padding:4px 10px 4px 20px;margin-left:-10px;}
aside #topmenu ul li:first-child span{border-radius:100%;width:20px;height:20px;text-align:center;background-color:#000;color:#efb102;font-weight:300}
aside #topmenu ul li:nth-child(3){background:#ab67ab;padding-right:30px;padding-left:30px;}
aside #topmenu ul li:nth-child(3) span{color:#fff}
aside #topmenu ul li span{-webkit-transform:skewx(20deg);transform:skewx(20deg);display:block;font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal;font-size:.813rem;color:#ab67ab}
@media only screen and (max-width:37.5rem){aside #topmenu ul li:nth-child(3),aside #topmenu ul li:nth-child(4){display:none}
}
aside nav ul{padding:10px 0 0 10px;float:left;margin-right:80px;}
aside nav ul .counter-menu{color:#ab67ab;font-weight:800;margin-right:4px}
aside nav ul a{width:100%;cursor:pointer;text-decoration:none;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#b3b3b1;}
aside nav ul a:hover{background:rgba(135,116,169,0.42)}
aside.slide{bottom:0}
a.slideButton.slide{pointer-events:none}
.overlay{position:fixed;width:100%;height:100%;bottom:0;left:0;pointer-events:none;background:transparent;z-index:30;}
.overlay.slide{pointer-events:auto;bottom:162px;background:rgba(0,0,0,0.6)}
input[type="search"]{-ms-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}
input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}
.search-wrapper{-webkit-transform:translateY(-400px);transform:translateY(-400px);z-index:9999;}
.search-wrapper.active{-webkit-transform:translateY(0);transform:translateY(0)}
.search-form{position:relative;top:0;-webkit-transform:translateX(-200px);transform:translateX(-200px);z-index:9999;width:100%;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);opacity:0;transition:all 200ms 100ms cubic-bezier(0,.6,.4,1);}
.search-form h4{margin:.625rem 0}
.search-form .search-field{width:100%;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:1.625rem;color:#fff;background-color:transparent;border:0;border-bottom:1px solid #fff;border-radius:0;box-shadow:none;background-clip:padding-box;-webkit-appearance:none;}
.search-form .search-field:focus{outline:0;box-shadow:none}
.search-form.active{top:0;-webkit-transform:translateX(0);transform:translateX(0);-ms-filter:none;-webkit-filter:none;filter:none;opacity:1}
.search-form.hidden{display:none}
.search-form .icon-remove-sign{position:absolute;top:0;right:0;z-index:1;display:block;fill:#fff;width:30px;height:30px;text-align:center;cursor:pointer}
.search-form::-webkit-input-placeholder{font-size:1.625rem}
.search-form .search-field::-webkit-search-decoration,.search-form .search-field::-webkit-search-cancel-button,.search-form .search-field::-webkit-search-results-button,.search-form .search-field::-webkit-search-results-decoration{display:none}
.search-form .search-list{position:absolute;width:100%;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal}
.search-form h4,.search-form li,.search-form p,.search-form a,.search-form a:hover{color:#fff}
body.search-overlay{overflow:hidden;}
body.search-overlay:after{position:absolute;top:0;left:0;z-index:9001;width:100%;height:100%;min-height:100%;background-color:rgba(0,0,0,0.6);content:'';}
@media only screen and (max-width:37.5rem){body.search-overlay:after{background-color:#000847}
}
.search-wrapper{position:absolute;top:50px;width:100%;padding-right:10%;padding-left:10%;}
.search-wrapper *zoom 1:after,.search-wrapper *zoom 1:before{display:table;line-height:0;content:""}
.search-wrapper *zoom 1:after{clear:both}
.search-wrapper:before,.search-wrapper:after{display:table;line-height:0;content:""}
.search-list{padding:0;margin:0;list-style-type:none;}
.search-list .entry-date{float:right;display:none;font-size:14px;text-transform:uppercase}
.search-list a{text-decoration:none;display:block;padding:.938rem 0;width:100%;border-bottom:1px solid #fff;}
.search-list a:hover{color:#b3b3b3;border-bottom:1px solid #b3b3b3}
@media only screen and (min-width:48em){.search-wrapper{top:100px}
.search-list .entry-date{display:inline}
}
.tags{margin-top:1.875rem;}
.tags a{font-size:.875rem;color:#000847;display:inline-block;border:1px solid #000847;border-radius:.313rem;padding:.25rem .625rem;margin-right:.125rem;margin-bottom:.5rem;text-decoration:none;}
.tags a:hover{color:#2e273d;border:1px solid #2e273d}
.img-rounded{border-radius:50%}
.aboutme .recent{list-style:none}
.aboutme .post-title:before{content:""}
.aboutme h2:hover{background-color:rgba(135,116,169,0.42)}
html,body{height:100%}
.header-site,.header-post,.page-header{background:#000847;height:100%;}
.header-site .content,.header-post .content,.page-header .content{width:95%;position:absolute;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);text-align:center}
.header-site li{margin:0;list-style-type:none}
.header-site .person img{width:300px;border-radius:100%;margin-bottom:70px}
.header-site .recent{*zoom:1;width:auto;max-width:450px;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;}
@media only screen and (max-width:320px){.header-site .recent:last-child{display:none}
}
.header-site .recent:before,.header-site .recent:after{content:'';display:table}
.header-site .recent:after{clear:both}
.header-site .recent p{text-align:left;color:#fff}
.header-site .recent a{text-decoration:none;}
.header-site .recent a h2{text-align:left;margin:0;font-weight:300;font-size:1.063rem;border-bottom:1px solid #8774a9;}
.header-site .recent a h2:hover{background:rgba(135,116,169,0.42)}
.header-site h1,.header-site h2{color:#fff;text-align:center}
.header-site .site-title{font-size:1.875rem;line-height:1;margin-top:-80px;display:block;letter-spacing:9px;}
@media only screen and (min-width:37.5rem){.header-site .site-title{letter-spacing:16px;margin-bottom:0;font-size:1.25rem}
}
.header-site .site-description{font-size:1.25rem;display:block;margin:1.875rem 0;}
@media only screen and (min-width:37.5rem){.header-site .site-description{font-size:2.5rem}
}
.header-post{height:62px;}
@media only screen and (min-width:90.625rem){.header-post{background:transparent}
.header-post #open{position:fixed;background:transparent}
}
.header-post p{margin:0;padding-top:23px;text-align:center;color:#fff}
.page-header{height:62px;}
.page-header h1{text-align:center;text-transform:uppercase;font-size:1.875rem;margin:0 0 30px;padding-top:10px;color:#fff;font-weight:300;}
@media only screen and (min-width:37.5rem){.page-header h1{font-size:1.875rem}
}
.page_posts .tree-posts{display:block;width:100%}
.page_posts #search{background:transparent;}
.page_posts #search svg{background-color:transparent}
.tree-posts{padding-top:43px;width:347px;height:100%;position:fixed;background-color:#2f2f33;overflow-y:auto;top:0;}
@media only screen and (max-width:90.625rem){.tree-posts{display:none}
}
.tree-posts h3{color:#c06a64;position:relative;margin:.625rem 0;}
.tree-posts h3:before{content:"";width:100px;height:4px;position:absolute;bottom:0;background-color:#c06a64}
.post-item{text-align:left;padding:.313rem 1.25rem;position:relative;}
.post-item .content{*zoom:1;}
.post-item .content:before,.post-item .content:after{content:'';display:table}
.post-item .content:after{clear:both}
@media only screen and (max-width:37.5rem){.post-item .content{text-align:center;display:block;clear:both;float:none;width:100%;margin-left:auto;margin-right:auto}
.post-item .content:first-child{margin-left:auto}
.post-item .content:last-child{margin-right:auto}
}
.post-item .content a{text-transform:lowercase;text-decoration:none;border:none}
@media only screen and (min-width:37.5rem){.post-item .content a{*zoom:1;float:left;clear:none;text-align:inherit;width:69.1%;margin-left:0%;margin-right:3%}
.post-item .content a:before,.post-item .content a:after{content:'';display:table}
.post-item .content a:after{clear:both}
.post-item .content a:last-child{margin-right:0%}
}
.post-item .content .date{color:#000847}
.post-item .content .post-title{color:#c7b288;position:relative;padding:0;font-size:1rem;margin:0;text-align:center;}
.post-item .content .post-title.selected{background:#000847}
.post-item .content .post-title:hover{background-color:rgba(199,178,136,0.32)}
@media only screen and (min-width:37.5rem){.post-item .content .post-title{text-align:left;margin-left:-.625rem;display:initial;font-size:1.063rem;text-decoration:none}
}
@media only screen and (min-width:90.625rem){.post{margin-left:347px}
}
.post h1:before,.post h2:before,.post h3:before{color:#000847;font-weight:300;margin-right:10px}
.post h1{text-align:center;margin:0;font-size:1.875rem;}
@media only screen and (min-width:37.5rem){.post h1{font-size:2.5rem}
}
.post h1:before{content:"#";color:#000847;font-size:2.5rem}
.post .time{text-align:center;margin-top:30px;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal}
.post .music-read{text-align:center}
.post-content{padding:1rem 0;}
.post-content img{max-width:100%;margin:1.875rem auto;display:block}
.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe{max-width:50rem;padding:0 1.25rem;margin:0 auto 1.875rem;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:1.125rem;line-height:2;letter-spacing:.01rem;}
@media only screen and (min-width:37.5rem){.post-content p,.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content ul,.post-content ol,.post-content .tags,.post-content iframe{font-size:1.25rem}
}
.post-content p,.post-content li{color:#333;}
.post-content p code,.post-content li code{color:#615576}
.post-content a{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#000847;text-decoration:none;border-bottom:2px solid #000847;}
.post-content a:hover{background-color:rgba(135,116,169,0.42)}
.post-content iframe{margin-top:1.875rem;width:100%}
.post-content #twitter-widget-0{margin:auto !important}
.post-content h1,.post-content h2,.post-content h3,.post-content h4,.post-content h5{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal}
.post-content h1{font-size:1.875rem;line-height:1.4;}
@media only screen and (min-width:37.5rem){.post-content h1{font-size:2.813rem}
}
.post-content h2{font-size:1.375rem;line-height:1.4;}
.post-content h2:before{content:'##';font-size:1.563rem}
@media only screen and (min-width:37.5rem){.post-content h2{font-size:2.188rem}
}
.post-content h3{font-size:1.125rem;line-height:1.4;}
@media only screen and (min-width:37.5rem){.post-content h3{font-size:1.563rem}
}
.post-content ul,.post-content ol{padding-left:2.5rem}
.post-content ul.post-list{padding:0;}
@media only screen and (max-width:37.5rem){.post-content ul.post-list{padding:0 1.25rem}
}
.post-content blockquote{*zoom:1;width:auto;max-width:45.625rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;border-left:.313rem solid #000847;padding:0 1.875rem;margin:3.125rem auto;}
.post-content blockquote:before,.post-content blockquote:after{content:'';display:table}
.post-content blockquote:after{clear:both}
@media only screen and (max-width:37.5rem){.post-content blockquote{width:70%}
}
.post-content blockquote p{color:rgba(0,0,0,0.6);margin:0;}
@media only screen and (max-width:37.5rem){.post-content blockquote p{font-size:1.125rem;line-height:1.5;padding:0}
}
.post-content hr{*zoom:1;width:auto;max-width:47.5rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;border:1px solid #f2f2f2;margin:50px auto}
.post-content hr:before,.post-content hr:after{content:'';display:table}
.post-content hr:after{clear:both}
.post-content .about_perfil{width:200px}
.share{*zoom:1;width:auto;max-width:800px;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;text-align:center;border-top:1px solid #f2f2f2;padding-top:1.25rem;}
.share:before,.share:after{content:'';display:table}
.share:after{clear:both}
.share svg{margin:.938rem;width:35px;height:35px}
.share a{text-decoration:none;}
.share a:hover svg{fill:#000847}
table{margin:3.125rem auto;}
@media only screen and (max-width:37.5rem){table{display:none}
}
table th,table td{border:.125rem solid #ccc;padding:.313rem}
.tag-title{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;font-size:2.25rem;margin-top:3.75rem;*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;}
.tag-title:before,.tag-title:after{content:'';display:table}
.tag-title:after{clear:both}
@media only screen and (max-width:37.5rem){.tag-title{font-size:1.75rem;margin-top:1.25rem;padding:0 1.25rem}
}
.post-list{list-style:none;margin:1.563rem auto;}
@media only screen and (max-width:37.5rem){.post-list{padding:0 1.25rem}
}
.post-list a{display:block;border-bottom:1px solid #dadada;padding:.625rem 0;text-decoration:none;transition:all .5s;}
.post-list a:hover{color:#2e273d;border-bottom:1px solid #2e273d}
.post-list .entry-date{float:right;}
@media only screen and (max-width:37.5rem){.post-list .entry-date{display:none}
}
pre{width:100%;padding:1.25rem 0;color:#fff;margin:1.875rem 0;font-size:.875rem;}
@media only screen and (min-width:37.5rem){pre{font-size:1rem;padding:1.25rem 0;margin:1.25rem 0}
}
pre code{*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;padding:0 1.25rem;}
pre code:before,pre code:after{content:'';display:table}
pre code:after{clear:both}
@media only screen and (max-width:37.5rem){pre code{overflow-x:scroll}
}
pre span{line-height:1.5rem;font-family:'Monaco','Consolas','Menlo',monospace}
.highlight{white-space:pre;overflow:auto;word-wrap:normal;border-radius:0;padding:20px;background-color:#2f2f33;color:#c1c2c3;margin:0;margin-bottom:30px}
.highlight .hll{background-color:#ffc}
.highlight .gd{color:#2e3436;background-color:#0e1416}
.highlight .gr{color:#eeeeec;background-color:#c00}
.highlight .gi{color:#babdb6;background-color:#1f2b2d}
.highlight .go{color:#2c3032;background-color:#2c3032}
.highlight .kt{color:#e3e7df}
.highlight .ni{color:#888a85}
.highlight .c,.highlight .cm,.highlight .c1,.highlight .cs{color:#8d9684}
.highlight .err,.highlight .g,.highlight .l,.highlight .n,.highlight .x,.highlight .p,.highlight .ge,.highlight .gp,.highlight .gs,.highlight .gt,.highlight .ld,.highlight .s,.highlight .nc,.highlight .nd,.highlight .ne,.highlight .nl,.highlight .nn,.highlight .nx,.highlight .py,.highlight .ow,.highlight .w,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .s2,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx,.highlight .sr,.highlight .s1,.highlight .ss,.highlight .bp{color:#c1c2c3}
.highlight .k,.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kp,.highlight .kr,.highlight .nt{color:#729fcf}
.highlight .cp,.highlight .gh,.highlight .gu,.highlight .na,.highlight .nf{color:#00021D}
.highlight .m,.highlight .nb,.highlight .no,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo,.highlight .il{color:#8ae234}
.highlight .o{color:#989daa}
.highlight .nv,.highlight .vc,.highlight .vg,.highlight .vi{color:#fff}
.author{background:#f2f2f2;display:table;width:100%;padding:2.5rem 0;margin:2.5rem 0;}
@media only screen and (min-width:37.5rem){.author{padding:3.125rem 0}
}
.author .details{margin:auto;max-width:50rem;padding:0 1.25rem;}
@media only screen and (max-width:37.5rem){.author .details{text-align:center}
}
.author img{border-radius:50%;display:block;margin:auto;}
@media only screen and (min-width:37.5rem){.author img{float:left;margin-right:3.125rem}
}
.author .def{color:#808080;font-size:1.125rem;font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;margin:.625rem;}
@media only screen and (min-width:37.5rem){.author .def{margin:0;padding-top:1.563rem}
}
.author .name{margin:0;}
.author .name a{font-family:'Open Sans',sans-serif;font-weight:800;font-style:normal;text-decoration:none;color:#000;font-size:1.875rem;}
.author .name a:hover{color:#000847}
@media only screen and (min-width:37.5rem){.author .name a{font-size:2.813rem}
}
.author .desc{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;margin:.625rem;font-size:1rem;}
@media only screen and (min-width:37.5rem){.author .desc{font-size:1.25rem}
}
.author .email{text-decoration:none;color:#000847}
.comments{*zoom:1;width:auto;max-width:50rem;float:none;display:block;margin-right:auto;margin-left:auto;padding-left:0;padding-right:0;padding:0 1.25rem;}
.comments:before,.comments:after{content:'';display:table}
.comments:after{clear:both}
.comments h3{margin:0 0 1.875rem;font-size:1.875rem}
footer{background:#000847;padding:1.563rem 0;margin-top:100px;clear:both;}
footer p{font-family:'Open Sans',sans-serif;font-weight:300;font-style:normal;color:#fff;text-align:center;margin:0} | 0.280419 | 0.060891 |
@import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
@font-face {
font-family: "Bangers";
src: url(../fonts/Bangers-Regular.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@font-face {
font-family: "Roboto";
src: url(../fonts/Roboto-Medium.ttf);
}
* {
box-sizing: border-box;
}
a{
text-decoration: none;
}
html{
max-width: 100vw;
max-height: 100vh;
}
body {
width: 100%;
margin: 0px;
}
/* -------- HEADER -------- */
header {
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
background-color: rgb(255 137 0 / 0.74);
height: 50px;
font-family: "Bangers";
}
header > h1 {
margin: auto 10px;
text-align: center;
font-size: 45px;
}
.github{
width: 25px;
margin-left: 20px;
}
/* -------- MAIN -------- */
main {
min-height: calc(100vh - 140px);
margin: 20px;
font-family: "Roboto";
}
/* -------- BUSCADOR --------*/
.buscador{
height: 50px;
font-size: 1.25rem;
margin-bottom: 40px;
border: 5px solid #ffa842;
border-radius: 10px;
width: 720px;
padding: 5px;
}
.buscador *{
display: inline-block;
}
.buscador input{
height: 25px;
width: 300px;
}
.buscador button[name="Buscar"]{
width: 100px;
height: 29px;
font-size: 1.05rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
/*form[name="formularioDepartamento"]{
position: relative;
}*/
form[name="formularioDepartamento"] input[name="fechaBaja"]{
width: 90px;
}
form[name="formularioDepartamento"] input[name="codigoDepartamento"] {
width: 155px;
}
form[name="formularioDepartamento"] input[name="volumenNegocio"] {
width: 140px;
}
form[name="formularioDepartamento"] input{
border: none;
width: 100%;
}
button[name="volver"]{
position: absolute;
font-size: 1.2rem;
bottom: 0;
right: 0;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
button[name="insertar"],button[name="importar"],button[name="exportar"],button[name="mostrarCodigo"]{
position: absolute;
display: inline-block;
font-size: 1.2rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
button[name="importar"]{
bottom: 0;
left: 0;
}
button[name="exportar"]{
bottom: 0;
left: 125px;
}
button[name="insertar"]{
right: 0;
top: -35px;
}
button[name="mostrarCodigo"]{
bottom: 0px;
left: 775px;
}
form[name="formularioBotones"] button img{
width: 20px;
}
.tablaDepartamentos{
min-width: 1111px;
border: 5px solid #ffa842;
border-radius: 10px;
padding: 15px;
height: 555px;
}
.tablaDepartamentos thead, .tablaDepartamentos tbody{
display: block;
}
.tablaDepartamentos tbody{
width: 450px;
}
/*.buscador div:last-child input{
margin: auto;
}*/
/* -------- CONTENT --------*/
.content{
display: table;
position: relative;
padding-bottom: 60px;
margin: auto;
font-family: "Roboto";
/*overflow-y: scroll;*/
}
.content th, .content td, .content td a{
font-family: "Roboto";
font-size: 1.2rem;
text-align: left;
}
/*
.content th, .content td{
padding: 0px 20px;
}*/
.tablaDepartamentos th:nth-child(1),.tablaDepartamentos td:nth-child(1){
min-width:205px;
}
.tablaDepartamentos th:nth-child(2),.tablaDepartamentos td:nth-child(2){
min-width:370px;
}
.tablaDepartamentos th:nth-child(3),.tablaDepartamentos td:nth-child(3){
min-width:130px;
}
.tablaDepartamentos th:nth-child(4),.tablaDepartamentos td:nth-child(4){
min-width:170px;
}
.tablaDepartamentos td:last-child{
min-width: 180px;
}
button[name="editar"],button[name="consultar"],button[name="borrar"],button[name="alta"],button[name="baja"]{
background-color: transparent;
border: none;
font-size: 1.25rem;
}
/* -------- FOOTER -------- */
footer {
height: 50px;
text-align: center;
background-color: #908c8c75;
display: flex;
align-items: center;
justify-content: space-around;
font-family: "Bangers";
}
footer > address {
font-size: 20px;
padding: 10px 10px;
}
footer a{
text-decoration: none;
color: black;
}
form[name="departamento"] {
min-width: 600px;
border: 5px solid #ffa842;
border-radius: 10px;
padding: 10px;
}
/*
.fixed{
position: fixed;
bottom: 0;
width: 100vw;
}*/
.flex-container-align-item-center{
display: flex;
align-items: center;
justify-content: space-around;
}
.button{
font-size: 1.2rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
form[name="departamento"] input[name="CodDepartamento"]{
width: 50px;
}
form[name="departamento"] input[name="DescDepartamento"]{
width: 300px;
}
form[name="departamento"] input[name="FechaBaja"]{
}
form[name="departamento"] input[name="VolumenNegocio"]{
width: 60px;
}
form[name="departamento"] input[name="Aceptar"]{
font-size: 1.2rem;
background-color: #9cff8e;
border-radius: 20px;
border: 2px solid #48ff42;
}
form[name="departamento"] input[name="Cancelar"]{
font-size: 1.2rem;
background-color: #ff8e8e;
border-radius: 20px;
border: 2px solid #ff6e42;
}
.required{
background-color: #81BEF7;
}
input[readonly=""]{
border: none;
}
.imgButton{
width: 20px;
}
.bajaLogica{
color:red;
}
.verde{
color: green;
}
form[name="formularioPaginacion"] img{
width: 35px;
}
form[name="formularioPaginacion"] button{
background-color: transparent;
border: none;
}
form[name="formularioPaginacion"] button[name="paginaInicial"]{
position: absolute;
left: 40%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="retrocederPagina"]{
position: absolute;
left: 44%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="avanzarPagina"]{
position: absolute;
right: 44%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="paginaFinal"]{
position: absolute;
right: 40%;
bottom: 2%;
}
form[name="formularioPaginacion"] div{
position: absolute;
bottom: 4%;
left: 48%;
}
.rojo{
color: red;
} | webroot/css/estilos.css | @import url("https://fonts.googleapis.com/css2?family=Bangers&display=swap");
@font-face {
font-family: "Bangers";
src: url(../fonts/Bangers-Regular.ttf);
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
@font-face {
font-family: "Roboto";
src: url(../fonts/Roboto-Medium.ttf);
}
* {
box-sizing: border-box;
}
a{
text-decoration: none;
}
html{
max-width: 100vw;
max-height: 100vh;
}
body {
width: 100%;
margin: 0px;
}
/* -------- HEADER -------- */
header {
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 10px;
background-color: rgb(255 137 0 / 0.74);
height: 50px;
font-family: "Bangers";
}
header > h1 {
margin: auto 10px;
text-align: center;
font-size: 45px;
}
.github{
width: 25px;
margin-left: 20px;
}
/* -------- MAIN -------- */
main {
min-height: calc(100vh - 140px);
margin: 20px;
font-family: "Roboto";
}
/* -------- BUSCADOR --------*/
.buscador{
height: 50px;
font-size: 1.25rem;
margin-bottom: 40px;
border: 5px solid #ffa842;
border-radius: 10px;
width: 720px;
padding: 5px;
}
.buscador *{
display: inline-block;
}
.buscador input{
height: 25px;
width: 300px;
}
.buscador button[name="Buscar"]{
width: 100px;
height: 29px;
font-size: 1.05rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
/*form[name="formularioDepartamento"]{
position: relative;
}*/
form[name="formularioDepartamento"] input[name="fechaBaja"]{
width: 90px;
}
form[name="formularioDepartamento"] input[name="codigoDepartamento"] {
width: 155px;
}
form[name="formularioDepartamento"] input[name="volumenNegocio"] {
width: 140px;
}
form[name="formularioDepartamento"] input{
border: none;
width: 100%;
}
button[name="volver"]{
position: absolute;
font-size: 1.2rem;
bottom: 0;
right: 0;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
button[name="insertar"],button[name="importar"],button[name="exportar"],button[name="mostrarCodigo"]{
position: absolute;
display: inline-block;
font-size: 1.2rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
button[name="importar"]{
bottom: 0;
left: 0;
}
button[name="exportar"]{
bottom: 0;
left: 125px;
}
button[name="insertar"]{
right: 0;
top: -35px;
}
button[name="mostrarCodigo"]{
bottom: 0px;
left: 775px;
}
form[name="formularioBotones"] button img{
width: 20px;
}
.tablaDepartamentos{
min-width: 1111px;
border: 5px solid #ffa842;
border-radius: 10px;
padding: 15px;
height: 555px;
}
.tablaDepartamentos thead, .tablaDepartamentos tbody{
display: block;
}
.tablaDepartamentos tbody{
width: 450px;
}
/*.buscador div:last-child input{
margin: auto;
}*/
/* -------- CONTENT --------*/
.content{
display: table;
position: relative;
padding-bottom: 60px;
margin: auto;
font-family: "Roboto";
/*overflow-y: scroll;*/
}
.content th, .content td, .content td a{
font-family: "Roboto";
font-size: 1.2rem;
text-align: left;
}
/*
.content th, .content td{
padding: 0px 20px;
}*/
.tablaDepartamentos th:nth-child(1),.tablaDepartamentos td:nth-child(1){
min-width:205px;
}
.tablaDepartamentos th:nth-child(2),.tablaDepartamentos td:nth-child(2){
min-width:370px;
}
.tablaDepartamentos th:nth-child(3),.tablaDepartamentos td:nth-child(3){
min-width:130px;
}
.tablaDepartamentos th:nth-child(4),.tablaDepartamentos td:nth-child(4){
min-width:170px;
}
.tablaDepartamentos td:last-child{
min-width: 180px;
}
button[name="editar"],button[name="consultar"],button[name="borrar"],button[name="alta"],button[name="baja"]{
background-color: transparent;
border: none;
font-size: 1.25rem;
}
/* -------- FOOTER -------- */
footer {
height: 50px;
text-align: center;
background-color: #908c8c75;
display: flex;
align-items: center;
justify-content: space-around;
font-family: "Bangers";
}
footer > address {
font-size: 20px;
padding: 10px 10px;
}
footer a{
text-decoration: none;
color: black;
}
form[name="departamento"] {
min-width: 600px;
border: 5px solid #ffa842;
border-radius: 10px;
padding: 10px;
}
/*
.fixed{
position: fixed;
bottom: 0;
width: 100vw;
}*/
.flex-container-align-item-center{
display: flex;
align-items: center;
justify-content: space-around;
}
.button{
font-size: 1.2rem;
background-color: #ffcb8e;
border-radius: 20px;
border: 2px solid #ffa842;
}
form[name="departamento"] input[name="CodDepartamento"]{
width: 50px;
}
form[name="departamento"] input[name="DescDepartamento"]{
width: 300px;
}
form[name="departamento"] input[name="FechaBaja"]{
}
form[name="departamento"] input[name="VolumenNegocio"]{
width: 60px;
}
form[name="departamento"] input[name="Aceptar"]{
font-size: 1.2rem;
background-color: #9cff8e;
border-radius: 20px;
border: 2px solid #48ff42;
}
form[name="departamento"] input[name="Cancelar"]{
font-size: 1.2rem;
background-color: #ff8e8e;
border-radius: 20px;
border: 2px solid #ff6e42;
}
.required{
background-color: #81BEF7;
}
input[readonly=""]{
border: none;
}
.imgButton{
width: 20px;
}
.bajaLogica{
color:red;
}
.verde{
color: green;
}
form[name="formularioPaginacion"] img{
width: 35px;
}
form[name="formularioPaginacion"] button{
background-color: transparent;
border: none;
}
form[name="formularioPaginacion"] button[name="paginaInicial"]{
position: absolute;
left: 40%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="retrocederPagina"]{
position: absolute;
left: 44%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="avanzarPagina"]{
position: absolute;
right: 44%;
bottom: 2%;
}
form[name="formularioPaginacion"] button[name="paginaFinal"]{
position: absolute;
right: 40%;
bottom: 2%;
}
form[name="formularioPaginacion"] div{
position: absolute;
bottom: 4%;
left: 48%;
}
.rojo{
color: red;
} | 0.179999 | 0.082254 |
~~~ css
:root{
/*!2px;*/
/*!4px*/
/*!8px*/
/*!12px*/
/*!240px*/
/*!20px*/
/*!24px*/
/*!28px*/
/*!32px*/
/*!48px*/
/*!16px*/
}
/*!---------------sizing tokens---------------*/
/*!---------------Font size tokens---------------*/
.clearboth{
clear:both;
}
.clearboth-line{
clear:both;
border-bottom:1px solid #f5f5f5;
}
.clearboth-10{
clear:both;
height:5px;
}
.hidden{
display:none !important;
}
.nak-block{
display:block;
}
a.link-print{
display:none;
}
.align-right{
text-align:right;
}
.small-text{
color:#6f6f6f;
}
.nak-text-size--small,.small-text{
font-size:.9em;
}
.nak-text-size--large{
font-size:1.2em;
}
.nak-text-size--huge{
font-size:3em;
}
.text{
font-size:16px;
}
.nak-display--inline{
display:inline;
}
.nak-float-right{
float:right;
}
.nak-float-left{
float:left;
}
.nak-text-color{
color:#9fcad2;
}
.nak-text-color--secondary{
color:#ff1821;
}
.nak-text-color--third{
color:#5c91c0;
}
.nak-text-color--neutral{
color:#d6d6d6;
}
.nak-text--strong{
color:#000;
font-weight:700;
}
.nak-is-hidden{
display:none !important;
}
@media (min-width:800px){
.nak-is-hidden--min-medium{
display:none !important;
}
}
@media (min-width:500px){
.nak-is-hidden--min-small{
display:none !important;
}
}
.nak-align--right{
display:flex;
text-align:right;
}
.nak-align--right,.nak-align--right.nak-form-element--inline,.nak-align--right.nak-form-element__row{
justify-content:flex-end;
}
.nak-align--center{
display:flex;
justify-content:center;
text-align:center;
}
@media (max-width:500px){
.nak-align--center{
align-items:center;
text-align:center;
}
}
.nak-align--center p{
text-align:center;
}
@media (max-width:500px){
.nak-is-stacable--small{
flex-direction:column;
align-items:flex-start;
height:inherit;
}
.nak-is-stacable--small.nak-grid{
flex-wrap:wrap;
}
}
@media (max-width:800px){
.nak-is-stacable--medium{
flex-direction:column;
align-items:flex-start;
height:inherit;
}
}
@media (max-width:800px){
.nak-is-stacable--medium.nak-grid,.nak-is-wrappable--medium{
flex-wrap:wrap;
}
}
.nak-has-select:before{
position:absolute;
right:10px;
bottom:15px;
color:#9fcad2;
content:"\e904";
}
.nak-has-select:hover:before{
color:#ff1821;
}
.nak-image-mask--gradient{
mask-image:linear-gradient(0,#000 40%,transparent);
mask-repeat:space;
}
.nak-has-bg-image--gradient{
background:linear-gradient(45deg,#ebebeb 44%,hsla(0,0%,92%,0)),url(http://localhost-axabienestar:8888/skin/frontend/rwd/default/images/specialty/odontologia.jpg);
background-position:100% 0;
background-size:cover;
background-repeat:no-repeat;
}
.std:empty{
display:none;
}
.nak-bg-color--neutral{
background:#ebebeb;
}
.nak-width-input--inline{
width:60%;
}
.nak-obj-fit--contain{
width:100%;
object-fit:contain;
}
~~~ | _includes/utilities/utils.css | ~~~ css
:root{
/*!2px;*/
/*!4px*/
/*!8px*/
/*!12px*/
/*!240px*/
/*!20px*/
/*!24px*/
/*!28px*/
/*!32px*/
/*!48px*/
/*!16px*/
}
/*!---------------sizing tokens---------------*/
/*!---------------Font size tokens---------------*/
.clearboth{
clear:both;
}
.clearboth-line{
clear:both;
border-bottom:1px solid #f5f5f5;
}
.clearboth-10{
clear:both;
height:5px;
}
.hidden{
display:none !important;
}
.nak-block{
display:block;
}
a.link-print{
display:none;
}
.align-right{
text-align:right;
}
.small-text{
color:#6f6f6f;
}
.nak-text-size--small,.small-text{
font-size:.9em;
}
.nak-text-size--large{
font-size:1.2em;
}
.nak-text-size--huge{
font-size:3em;
}
.text{
font-size:16px;
}
.nak-display--inline{
display:inline;
}
.nak-float-right{
float:right;
}
.nak-float-left{
float:left;
}
.nak-text-color{
color:#9fcad2;
}
.nak-text-color--secondary{
color:#ff1821;
}
.nak-text-color--third{
color:#5c91c0;
}
.nak-text-color--neutral{
color:#d6d6d6;
}
.nak-text--strong{
color:#000;
font-weight:700;
}
.nak-is-hidden{
display:none !important;
}
@media (min-width:800px){
.nak-is-hidden--min-medium{
display:none !important;
}
}
@media (min-width:500px){
.nak-is-hidden--min-small{
display:none !important;
}
}
.nak-align--right{
display:flex;
text-align:right;
}
.nak-align--right,.nak-align--right.nak-form-element--inline,.nak-align--right.nak-form-element__row{
justify-content:flex-end;
}
.nak-align--center{
display:flex;
justify-content:center;
text-align:center;
}
@media (max-width:500px){
.nak-align--center{
align-items:center;
text-align:center;
}
}
.nak-align--center p{
text-align:center;
}
@media (max-width:500px){
.nak-is-stacable--small{
flex-direction:column;
align-items:flex-start;
height:inherit;
}
.nak-is-stacable--small.nak-grid{
flex-wrap:wrap;
}
}
@media (max-width:800px){
.nak-is-stacable--medium{
flex-direction:column;
align-items:flex-start;
height:inherit;
}
}
@media (max-width:800px){
.nak-is-stacable--medium.nak-grid,.nak-is-wrappable--medium{
flex-wrap:wrap;
}
}
.nak-has-select:before{
position:absolute;
right:10px;
bottom:15px;
color:#9fcad2;
content:"\e904";
}
.nak-has-select:hover:before{
color:#ff1821;
}
.nak-image-mask--gradient{
mask-image:linear-gradient(0,#000 40%,transparent);
mask-repeat:space;
}
.nak-has-bg-image--gradient{
background:linear-gradient(45deg,#ebebeb 44%,hsla(0,0%,92%,0)),url(http://localhost-axabienestar:8888/skin/frontend/rwd/default/images/specialty/odontologia.jpg);
background-position:100% 0;
background-size:cover;
background-repeat:no-repeat;
}
.std:empty{
display:none;
}
.nak-bg-color--neutral{
background:#ebebeb;
}
.nak-width-input--inline{
width:60%;
}
.nak-obj-fit--contain{
width:100%;
object-fit:contain;
}
~~~ | 0.393851 | 0.071235 |
body{
font-family: 'Raleway', sans-serif;
font-weight: 500;
}
.top-info{
padding: 10px;
background-color: #f5f5f5;
color: #0a0a0a;
}
sup {
top: 0px !important;
}
sup {
font-size: 25px !important;
}
.navb{
background-color: #fff;
padding: 16px 0px 12px 0px;
border-radius: 0px !important;
border-bottom: 3px solid #700e12;
}
.img-1{background-image: url(../../bootstrap/images/round-1.png);}
.img-2{background-image: url(../../bootstrap/images/round-2.png);}
.img-3{background-image: url(../../bootstrap/images/round-3.png);}
.img-size{
height: 280px;
width: 280px;
margin: 0 auto;
background-size: cover;
border-radius: 50%;
background-repeat: no-repeat;
box-shadow: inset 0 0 0 16px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.1);
}
.head-round {color: #000; text-transform: capitalize;}
.head-round:hover{ color: #700e12;}
.underline-none:hover{text-decoration: none !important;}
.img-size img{border-radius: 50%; border: 20px solid rgba(0, 0, 0, 0.3);}
.affix {top: 0; width: 100%; z-index: 9999 !important;}
.affix + .container-fluid { padding-top: 70px; }
.nav-space li a{padding: 0px 15px 0px 15px; font-size: 17px; color: #000;}
.pd-lf-8{padding-left: 8%;}
.drp-weight li a{
font-weight: 500;
}
.mg-minus{margin-top: -20px;}
.mg-bt-30{margin-bottom: 30px;}
.font-2size{ font-size: 34px !important; color: #700e12 !important;}
.size-round{
width: 150px !important;
height: 150px !important;
}
.link-social li a{color: #000;} .link-social li a:hover{color: #700e12;}
.size-round h3{
font-size: 15px !important;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
background-color: #700e12;
color: #fff;
}
.colr{
color: #000 !important;
font-size: 16px;
}
.current{
color: #700e12 !important;
font-weight: bold;
}
.donate-bt{
background: transparent;
color: #9f0012;
font-size: 16px;
border: 2px solid #9f0012;
border-radius: 5px;
}
.donate-bt:hover {
background: #9f0012 !important;
color: #fff !important;
font-size: 16px;
border: 2px solid #9f0012;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
background-color: transparent !important;
}
/*.bckclr1:hover {
color: #fff !important;
}*/
.drp{
padding: 15px 0 !important;
top: 125% !important;
}
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
text-decoration: underline;
}
.hght{
height: 70px;
margin-top: -25px;
margin-left: 10px;
}
.btn-color{
background: #fff;
color: #71030f;
padding: 10px 25px 10px 25px;
border: 2px solid #9f0012;
font-size: 17px;
font-weight: 500;
}
.btn-color:hover{
background: #9f0012;
color: #fff;
padding: 10px 25px 10px 25px;
font-size: 17px;
border: 2px solid #9f0012;
}
/*------------ slider ----------*/
.header-banner {
min-height: 160px;
position: relative;
overflow: hidden;
}
.caption-style {
text-align: left !important;
position: absolute;
bottom: 0px;
top: 10%;
left: 11%;
width: 500px;
height: auto;
}
.caption-style p{
color: #000;
text-shadow: none;
font-size: 16px;
}
.caption-style h2{
color: #000;
text-shadow: none;
}
/*-------------- video -----------*/
.sctn{
padding: 30px 0px 30px 0px;
}
.brief p{
color: #777;
font-size: 16px;
letter-spacing: 0.3px;
line-height: 28px;
}
.brief{
padding: 10px 0px 0px 15px;
}
.sctn-pd{
padding: 100px 0px 100px 0px;
}
.brief span{
color: #777;
font-size: 14px;
margin-bottom: 10px;
}
.brief h2{
margin-bottom: 37px;
font-size: 48px;
font-style: italic;
font-family: 'Lora',serif;
color: #b01933;
}
/*------------- contact-imfo -------------*/
.mar-bot{
color: #b01933;
}
.map-box{
padding: 4% 10% 0% 20%;
}
.map-box ul li{
margin: 10% 0% 10% 0%;
}
.map-box ul li span{
margin: 0% 5% 0% 0%;
}
.info-font{
font-size: 19px;
}
.colo-navlink li a{
color: #fff;
}
.socialmedia a{
color: #fff;
}
.socialmedia a:hover{
color: #b01933;
}
.socialmedia i{
padding-left: 5px;
}
/*-------------- footer -----23---------*/
.mainftr{
background-color: #333;
color: #999;
font-size: 16px;
}
.mainftr h3{
color: white;
}
.ftr2 {
color: #999;
background-color: #3e3e3e;
padding: 12px 0px 2px 0px;
font-family: 'Raleway', sans-serif;
}
.ftr2 span{
color: white;
}
.pd-tpbt{
padding: 24px 0px 8px 0px;
}
.gtstrtd p{
line-height: 26px;
font-size: 16px;
margin-bottom: 35px;
}
.label-style{ font-size: 16px;
line-height: 2;}
.gtstrtd a{
border: 2px solid #b01933;
background-color: transparent;
color: #b01933;
padding: 7px 30px;
text-decoration: none;
}
.gtstrtd a:hover{
border-color: #ef2245;
}
.ftr-list li a{
color: #fff;
}
.ftr-list li{
margin: 0px 0px 13px 0px;
}
/*----------------------- media query -----------*/
@media only screen and (min-width: 768px) {
.rspnsv{
width: 100%;
}
}
.wdth{
width: 1348px !important;
}
/*-------------------------------------- Contact Page -------------------------------------------------*/
.hdng h2{
margin-bottom: 30px;
font-size: 48px;
line-height: 60px;
color: #71030f;
margin-top: 0px;
font-family: 'Raleway', sans-serif;
text-align: center;
}
.bs-box h2{
font-size: 40px;
font-weight: bold;
line-height: 60px;
color: #71030f;
font-family: 'Raleway', sans-serif;
text-align: center;
}
.option-list option{font-weight: 500;}
.sec{
padding: 20px 0px 50px 0px;
}
.styl{
padding-top: 30px;
}
.styl span{
color: #777;
font-weight: bold;
line-height: 30px;
letter-spacing: 0.3px;
font-size: 20px;
}
.styl a{
color: #333;
line-height: 36px;
letter-spacing: 0.3px;
font-size: 16px;
}
.styl a:hover{
color: #b01933;
}
.styl p{
color: #777;
margin-bottom: 13px;
font-size: 18px;
letter-spacing: 0.3px;
line-height: 28px;
}
.styl2{
color: #777;
font-weight: 300 !important;
line-height: 30px;
letter-spacing: 0.3px;
font-size: 18px !important;
}
.formsec span{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
font-family: 'Lato', sans-serif;
}
.formsec label{
color: #777;
font-size: 18px;
margin-bottom: 7px;
font-family: 'Lato', sans-serif;
text-align: left;
padding-top: 15px;
padding-bottom: 5px;
font-weight: 300;
}
.formsec sup{
color: #b01933;
}
.formsec input{
height: 35px;
}
.buton{
background-color: #8f8e8c;
color: #fff;
border-color: #8f8e8c;
padding: 7px 30px;
border: 2px solid #8f8e8c;
margin-top: 25px;
margin-bottom: 25px;
border-radius: 5px;
}
/*-------------------- round ------------------*/
#mainContainer{ width: 100%; text-align:center;}
#divCircle {
margin-left:auto;
margin-right:auto;
width: 500px;
height: 500px;
position: relative;
}
#divCircle img{
position: absolute;
width: 20%;
height: 20%;
}
#middleBubble {
text-align:center;
vertical-align:top;
background: url(../../images/home-blank-bubble-1.png);
background-repeat: no-repeat;
background-size: cover;
color: #252525; /*#6d6e71*/
font-size: 1em;
height:50%;
width: 50%;
margin: auto;
position: absolute;
text-align:center;
}
#middleBubble b{
font-size: 1.2em;
}
#middleBubble p{
margin: 100px 5px 0px 5px;
}
.back-img{
margin: 10px 0px 50px 0px;
}
.heading-style{
margin-bottom: 37px;
font-family: 'Lora',serif;
color: #b01933;
}
/*-------------------------------------------- About ----------------------------------------------------*/
.sct{
padding: 5px 0px;
}
.mainabt span{
margin-bottom: 10px;
font-size: 14px;
color: #777;
letter-spacing: 1px;
}
.mainabt h2{
margin-bottom: 43px;
letter-spacing: 0.3px;
font-size: 48px;
color: #b01933;
line-height: 20px;
font-weight: bold;
}
.heading-color{color: #700e12;}
.mainabt p{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.contentbox h2{
line-height: 42px;
font-weight: bold;
margin-bottom: 26px;
color: #333;
}
.Process-list li{
font-size: 16px;
font-family: 'Raleway', sans-serif;
color: #777;
letter-spacing: 1px;
line-height: 27px;
font-weight: 500;
}
.contentbox p{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.padng{
padding-top: 11px;
margin-bottom: -23px;
}
.parallax {
background-image: url("../images/parallax.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax1 {
background-image: url("../images/parallax1.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.prlx{
padding-top: 80px;
padding-bottom: 110px;
}
.prlx span{
margin-bottom: 10px;
color: #b01933;
letter-spacing: 1px;
font-size: 14px;
}
.prlx h2{
margin-bottom: 37px;
font-size: 48px;
line-height: 60px;
font-style: italic;
color: #333;
}
.prlx p{
background-color: transparent;
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.prlx a{
color: #8f8e8c;
font-weight: 900;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.5px;
}
.backcolr{
background-color: #f7f7f7;
}
.blvsec h2{
text-align: center;
margin-bottom: 40px;
font-size: 36px;
line-height: 40px;
color: #333
}
.blvstyle i{
line-height: 10px;
margin-bottom: 26px;
font-size: 40px;
color: #b01933;
font-style: normal;
}
.blvstyle h4{
text-align: center;
margin-bottom: 13px;
font-weight: bold;
font-size: 30px;
line-height: 28px;
}
.blvstyle p{
padding: 0 15px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
text-align: center;
color: #777;
}
.slideshow-container {
position: relative;
background: transparent;
}
.mySlides1 {
display: none;
padding: 80px;
text-align: center;
color: #fff;
}
.mySlides1 q{
font-size: 30px;
line-height: 42px;
font-style: italic;
letter-spacing: 0.3px;
font-weight: 300;
}
.dot-container {
text-align: center;
padding: 20px;
background: transparent;
}
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #fff;
}
q {font-style: italic;}
.author {
padding-top: 25px;
margin-bottom: 5px;
font-size: 18px;
font-weight: bold;
line-height: 28px;
color: #fff;
}
/*------------------- Expert-page ----------------*/
.mg-top-bt{
margin: 30px 0px 30px 0px;
}
.img-boxsize{
width: 300px;
height: 250px;
margin: 0 auto;
}
.top-space{
position: relative;
top: 90px;
}
.bt-color{
color: #96222f;
text-decoration: none;
border: 2px solid #96222f;
padding: 7px 20px 7px 20px;
border-radius: 6px;
font-weight: bold;
background-color: transparent;
}
.bt-color:hover{
background-color: #96222f;
text-decoration: none;
border: none;
border-radius: 6px;
color: #fff;
}
.border-bt{
border-bottom: 1px solid #dedede;
}
.border-bt:last-child{
border-bottom:none;
}
.mg-tp-10{
margin-top: 10px;
}
.mg-tp-50{
margin: 0px 0px 50px 0px;
}
.mt-4{
margin-top: 40px;
}
.color-bt-nav{
color: #700e12 !important;
}
.pos-nav{
position: relative;
left: -40px !important;
}
.width-arrow{
width: 7% !important;
}
.width-arrow{
background-image: none !important;
color: #700e12 !important;
opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
.top-space{
position: relative;
top: 5px;
}
.pos-nav{
position: relative;
left: -119px;
}
}
/*----------------- slider -----------------*/
/*
inspired from https://codepen.io/Rowno/pen/Afykb
*/
.carousel-fade .carousel-inner .item {
opacity: 0;
transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
left: 0;
opacity: 0;
z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
opacity: 1;
}
.carousel-fade .carousel-control {
z-index: 2;
}
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-fade .carousel-inner > .item.next,
.carousel-fade .carousel-inner > .item.active.right {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.prev,
.carousel-fade .carousel-inner > .item.active.left {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.next.left,
.carousel-fade .carousel-inner > .item.prev.right,
.carousel-fade .carousel-inner > .item.active {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
/*-------------------------- responsive -----------------------*/
@media only screen and (max-width: 768px) {
.mar{
margin: 7.5px 105px;
}
.caption-style h2 {
font-size: 12px;
}
.caption-style p {
font-size: 10px !important;
height: 30px;
overflow: hidden;
}
.caption-style {
text-align: left !important;
position: absolute;
bottom: 0px;
top: -40% !important;
left: 7% !important;
width: 150px !important;
height: auto;
}
.res-bt{
font-size: 10px !important;
padding: 2px 10px 2px 10px !important;
}
.align-center{text-align: center !important;}
#divCircle img{
position: absolute;
width: 15%;
height: 15%;
}
#divCircle a{
margin: 0px !important;
}
#divCircle {
margin-left: auto;
margin-right: auto;
width: 300px;
height: 300px;
position: relative;
}
#middleBubble p {
margin: 45px 5px 0px 5px;
}
.top-info {
padding: 2px;
}
.mg-minus {
margin-top: -6px;
}
.mg-btminus{
margin-bottom: -8px;
}
.map-box {
padding: 3% 0% 0% 2%;
}
.res-textcenter{
text-align: center !important;
}
.hght {
height: 60px;
margin-top: -20px;
margin-left: -5px;
}
} | web1x/bootstrap/css/style.css | body{
font-family: 'Raleway', sans-serif;
font-weight: 500;
}
.top-info{
padding: 10px;
background-color: #f5f5f5;
color: #0a0a0a;
}
sup {
top: 0px !important;
}
sup {
font-size: 25px !important;
}
.navb{
background-color: #fff;
padding: 16px 0px 12px 0px;
border-radius: 0px !important;
border-bottom: 3px solid #700e12;
}
.img-1{background-image: url(../../bootstrap/images/round-1.png);}
.img-2{background-image: url(../../bootstrap/images/round-2.png);}
.img-3{background-image: url(../../bootstrap/images/round-3.png);}
.img-size{
height: 280px;
width: 280px;
margin: 0 auto;
background-size: cover;
border-radius: 50%;
background-repeat: no-repeat;
box-shadow: inset 0 0 0 16px rgba(255,255,255,0.6), 0 1px 2px rgba(0,0,0,0.1);
}
.head-round {color: #000; text-transform: capitalize;}
.head-round:hover{ color: #700e12;}
.underline-none:hover{text-decoration: none !important;}
.img-size img{border-radius: 50%; border: 20px solid rgba(0, 0, 0, 0.3);}
.affix {top: 0; width: 100%; z-index: 9999 !important;}
.affix + .container-fluid { padding-top: 70px; }
.nav-space li a{padding: 0px 15px 0px 15px; font-size: 17px; color: #000;}
.pd-lf-8{padding-left: 8%;}
.drp-weight li a{
font-weight: 500;
}
.mg-minus{margin-top: -20px;}
.mg-bt-30{margin-bottom: 30px;}
.font-2size{ font-size: 34px !important; color: #700e12 !important;}
.size-round{
width: 150px !important;
height: 150px !important;
}
.link-social li a{color: #000;} .link-social li a:hover{color: #700e12;}
.size-round h3{
font-size: 15px !important;
}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
background-color: #700e12;
color: #fff;
}
.colr{
color: #000 !important;
font-size: 16px;
}
.current{
color: #700e12 !important;
font-weight: bold;
}
.donate-bt{
background: transparent;
color: #9f0012;
font-size: 16px;
border: 2px solid #9f0012;
border-radius: 5px;
}
.donate-bt:hover {
background: #9f0012 !important;
color: #fff !important;
font-size: 16px;
border: 2px solid #9f0012;
}
.navbar-default .navbar-nav>.open>a, .navbar-default .navbar-nav>.open>a:focus, .navbar-default .navbar-nav>.open>a:hover {
background-color: transparent !important;
}
/*.bckclr1:hover {
color: #fff !important;
}*/
.drp{
padding: 15px 0 !important;
top: 125% !important;
}
.grow {
transition: all .2s ease-in-out;
}
.grow:hover {
transform: scale(1.1);
text-decoration: underline;
}
.hght{
height: 70px;
margin-top: -25px;
margin-left: 10px;
}
.btn-color{
background: #fff;
color: #71030f;
padding: 10px 25px 10px 25px;
border: 2px solid #9f0012;
font-size: 17px;
font-weight: 500;
}
.btn-color:hover{
background: #9f0012;
color: #fff;
padding: 10px 25px 10px 25px;
font-size: 17px;
border: 2px solid #9f0012;
}
/*------------ slider ----------*/
.header-banner {
min-height: 160px;
position: relative;
overflow: hidden;
}
.caption-style {
text-align: left !important;
position: absolute;
bottom: 0px;
top: 10%;
left: 11%;
width: 500px;
height: auto;
}
.caption-style p{
color: #000;
text-shadow: none;
font-size: 16px;
}
.caption-style h2{
color: #000;
text-shadow: none;
}
/*-------------- video -----------*/
.sctn{
padding: 30px 0px 30px 0px;
}
.brief p{
color: #777;
font-size: 16px;
letter-spacing: 0.3px;
line-height: 28px;
}
.brief{
padding: 10px 0px 0px 15px;
}
.sctn-pd{
padding: 100px 0px 100px 0px;
}
.brief span{
color: #777;
font-size: 14px;
margin-bottom: 10px;
}
.brief h2{
margin-bottom: 37px;
font-size: 48px;
font-style: italic;
font-family: 'Lora',serif;
color: #b01933;
}
/*------------- contact-imfo -------------*/
.mar-bot{
color: #b01933;
}
.map-box{
padding: 4% 10% 0% 20%;
}
.map-box ul li{
margin: 10% 0% 10% 0%;
}
.map-box ul li span{
margin: 0% 5% 0% 0%;
}
.info-font{
font-size: 19px;
}
.colo-navlink li a{
color: #fff;
}
.socialmedia a{
color: #fff;
}
.socialmedia a:hover{
color: #b01933;
}
.socialmedia i{
padding-left: 5px;
}
/*-------------- footer -----23---------*/
.mainftr{
background-color: #333;
color: #999;
font-size: 16px;
}
.mainftr h3{
color: white;
}
.ftr2 {
color: #999;
background-color: #3e3e3e;
padding: 12px 0px 2px 0px;
font-family: 'Raleway', sans-serif;
}
.ftr2 span{
color: white;
}
.pd-tpbt{
padding: 24px 0px 8px 0px;
}
.gtstrtd p{
line-height: 26px;
font-size: 16px;
margin-bottom: 35px;
}
.label-style{ font-size: 16px;
line-height: 2;}
.gtstrtd a{
border: 2px solid #b01933;
background-color: transparent;
color: #b01933;
padding: 7px 30px;
text-decoration: none;
}
.gtstrtd a:hover{
border-color: #ef2245;
}
.ftr-list li a{
color: #fff;
}
.ftr-list li{
margin: 0px 0px 13px 0px;
}
/*----------------------- media query -----------*/
@media only screen and (min-width: 768px) {
.rspnsv{
width: 100%;
}
}
.wdth{
width: 1348px !important;
}
/*-------------------------------------- Contact Page -------------------------------------------------*/
.hdng h2{
margin-bottom: 30px;
font-size: 48px;
line-height: 60px;
color: #71030f;
margin-top: 0px;
font-family: 'Raleway', sans-serif;
text-align: center;
}
.bs-box h2{
font-size: 40px;
font-weight: bold;
line-height: 60px;
color: #71030f;
font-family: 'Raleway', sans-serif;
text-align: center;
}
.option-list option{font-weight: 500;}
.sec{
padding: 20px 0px 50px 0px;
}
.styl{
padding-top: 30px;
}
.styl span{
color: #777;
font-weight: bold;
line-height: 30px;
letter-spacing: 0.3px;
font-size: 20px;
}
.styl a{
color: #333;
line-height: 36px;
letter-spacing: 0.3px;
font-size: 16px;
}
.styl a:hover{
color: #b01933;
}
.styl p{
color: #777;
margin-bottom: 13px;
font-size: 18px;
letter-spacing: 0.3px;
line-height: 28px;
}
.styl2{
color: #777;
font-weight: 300 !important;
line-height: 30px;
letter-spacing: 0.3px;
font-size: 18px !important;
}
.formsec span{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
font-family: 'Lato', sans-serif;
}
.formsec label{
color: #777;
font-size: 18px;
margin-bottom: 7px;
font-family: 'Lato', sans-serif;
text-align: left;
padding-top: 15px;
padding-bottom: 5px;
font-weight: 300;
}
.formsec sup{
color: #b01933;
}
.formsec input{
height: 35px;
}
.buton{
background-color: #8f8e8c;
color: #fff;
border-color: #8f8e8c;
padding: 7px 30px;
border: 2px solid #8f8e8c;
margin-top: 25px;
margin-bottom: 25px;
border-radius: 5px;
}
/*-------------------- round ------------------*/
#mainContainer{ width: 100%; text-align:center;}
#divCircle {
margin-left:auto;
margin-right:auto;
width: 500px;
height: 500px;
position: relative;
}
#divCircle img{
position: absolute;
width: 20%;
height: 20%;
}
#middleBubble {
text-align:center;
vertical-align:top;
background: url(../../images/home-blank-bubble-1.png);
background-repeat: no-repeat;
background-size: cover;
color: #252525; /*#6d6e71*/
font-size: 1em;
height:50%;
width: 50%;
margin: auto;
position: absolute;
text-align:center;
}
#middleBubble b{
font-size: 1.2em;
}
#middleBubble p{
margin: 100px 5px 0px 5px;
}
.back-img{
margin: 10px 0px 50px 0px;
}
.heading-style{
margin-bottom: 37px;
font-family: 'Lora',serif;
color: #b01933;
}
/*-------------------------------------------- About ----------------------------------------------------*/
.sct{
padding: 5px 0px;
}
.mainabt span{
margin-bottom: 10px;
font-size: 14px;
color: #777;
letter-spacing: 1px;
}
.mainabt h2{
margin-bottom: 43px;
letter-spacing: 0.3px;
font-size: 48px;
color: #b01933;
line-height: 20px;
font-weight: bold;
}
.heading-color{color: #700e12;}
.mainabt p{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.contentbox h2{
line-height: 42px;
font-weight: bold;
margin-bottom: 26px;
color: #333;
}
.Process-list li{
font-size: 16px;
font-family: 'Raleway', sans-serif;
color: #777;
letter-spacing: 1px;
line-height: 27px;
font-weight: 500;
}
.contentbox p{
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.padng{
padding-top: 11px;
margin-bottom: -23px;
}
.parallax {
background-image: url("../images/parallax.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.parallax1 {
background-image: url("../images/parallax1.jpg");
min-height: 500px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.prlx{
padding-top: 80px;
padding-bottom: 110px;
}
.prlx span{
margin-bottom: 10px;
color: #b01933;
letter-spacing: 1px;
font-size: 14px;
}
.prlx h2{
margin-bottom: 37px;
font-size: 48px;
line-height: 60px;
font-style: italic;
color: #333;
}
.prlx p{
background-color: transparent;
margin-bottom: 28px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
color: #777;
}
.prlx a{
color: #8f8e8c;
font-weight: 900;
font-size: 14px;
line-height: 24px;
letter-spacing: 0.5px;
}
.backcolr{
background-color: #f7f7f7;
}
.blvsec h2{
text-align: center;
margin-bottom: 40px;
font-size: 36px;
line-height: 40px;
color: #333
}
.blvstyle i{
line-height: 10px;
margin-bottom: 26px;
font-size: 40px;
color: #b01933;
font-style: normal;
}
.blvstyle h4{
text-align: center;
margin-bottom: 13px;
font-weight: bold;
font-size: 30px;
line-height: 28px;
}
.blvstyle p{
padding: 0 15px;
font-size: 18px;
line-height: 28px;
letter-spacing: 0.3px;
text-align: center;
color: #777;
}
.slideshow-container {
position: relative;
background: transparent;
}
.mySlides1 {
display: none;
padding: 80px;
text-align: center;
color: #fff;
}
.mySlides1 q{
font-size: 30px;
line-height: 42px;
font-style: italic;
letter-spacing: 0.3px;
font-weight: 300;
}
.dot-container {
text-align: center;
padding: 20px;
background: transparent;
}
.dot {
cursor: pointer;
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active, .dot:hover {
background-color: #fff;
}
q {font-style: italic;}
.author {
padding-top: 25px;
margin-bottom: 5px;
font-size: 18px;
font-weight: bold;
line-height: 28px;
color: #fff;
}
/*------------------- Expert-page ----------------*/
.mg-top-bt{
margin: 30px 0px 30px 0px;
}
.img-boxsize{
width: 300px;
height: 250px;
margin: 0 auto;
}
.top-space{
position: relative;
top: 90px;
}
.bt-color{
color: #96222f;
text-decoration: none;
border: 2px solid #96222f;
padding: 7px 20px 7px 20px;
border-radius: 6px;
font-weight: bold;
background-color: transparent;
}
.bt-color:hover{
background-color: #96222f;
text-decoration: none;
border: none;
border-radius: 6px;
color: #fff;
}
.border-bt{
border-bottom: 1px solid #dedede;
}
.border-bt:last-child{
border-bottom:none;
}
.mg-tp-10{
margin-top: 10px;
}
.mg-tp-50{
margin: 0px 0px 50px 0px;
}
.mt-4{
margin-top: 40px;
}
.color-bt-nav{
color: #700e12 !important;
}
.pos-nav{
position: relative;
left: -40px !important;
}
.width-arrow{
width: 7% !important;
}
.width-arrow{
background-image: none !important;
color: #700e12 !important;
opacity: 1 !important;
}
@media only screen and (max-width: 768px) {
.top-space{
position: relative;
top: 5px;
}
.pos-nav{
position: relative;
left: -119px;
}
}
/*----------------- slider -----------------*/
/*
inspired from https://codepen.io/Rowno/pen/Afykb
*/
.carousel-fade .carousel-inner .item {
opacity: 0;
transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
left: 0;
opacity: 0;
z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
opacity: 1;
}
.carousel-fade .carousel-control {
z-index: 2;
}
/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-fade .carousel-inner > .item.next,
.carousel-fade .carousel-inner > .item.active.right {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.prev,
.carousel-fade .carousel-inner > .item.active.left {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.next.left,
.carousel-fade .carousel-inner > .item.prev.right,
.carousel-fade .carousel-inner > .item.active {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
/*-------------------------- responsive -----------------------*/
@media only screen and (max-width: 768px) {
.mar{
margin: 7.5px 105px;
}
.caption-style h2 {
font-size: 12px;
}
.caption-style p {
font-size: 10px !important;
height: 30px;
overflow: hidden;
}
.caption-style {
text-align: left !important;
position: absolute;
bottom: 0px;
top: -40% !important;
left: 7% !important;
width: 150px !important;
height: auto;
}
.res-bt{
font-size: 10px !important;
padding: 2px 10px 2px 10px !important;
}
.align-center{text-align: center !important;}
#divCircle img{
position: absolute;
width: 15%;
height: 15%;
}
#divCircle a{
margin: 0px !important;
}
#divCircle {
margin-left: auto;
margin-right: auto;
width: 300px;
height: 300px;
position: relative;
}
#middleBubble p {
margin: 45px 5px 0px 5px;
}
.top-info {
padding: 2px;
}
.mg-minus {
margin-top: -6px;
}
.mg-btminus{
margin-bottom: -8px;
}
.map-box {
padding: 3% 0% 0% 2%;
}
.res-textcenter{
text-align: center !important;
}
.hght {
height: 60px;
margin-top: -20px;
margin-left: -5px;
}
} | 0.340814 | 0.10961 |
* {box-sizing: border-box}
/* body {
background: url('https://source.unsplash.com/random/1920x1080') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
} */
/* Full-width input fields */
.close span{ float:right}
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover {
opacity:1;
}
/* Extra styles for the cancel button */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}
/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
float: left;
width: 50%;
}
/* Add padding to container elements */
.container {
padding: 16px;
}
/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
}
}
/* Live Feed CSS */
#video {
border: 1px solid black;
width: 320px;
height: 240px;
}
#photo {
border: 1px solid black;
/* width: 320px;
height: 240px; */
height: 100%;
width: 100%;
object-fit: contain;
}
#canvas {
display: none;
}
.camera {
width: 340px;
display: inline-block;
}
.output {
width: 340px;
display: inline-block;
}
#startbutton {
display: block;
position: relative;
margin-left: auto;
margin-right: auto;
width: 10%;
bottom: 36px;
padding: 5px;
background-color: #6a67ce;
border: 1px solid rgba(255, 255, 255, 0.7);
font-size: 14px;
color: rgba(255, 255, 255, 1.0);
cursor: pointer;
}
.contentarea {
font-size: 16px;
font-family: Arial;
text-align: center;
} | static/sign_up.css | * {box-sizing: border-box}
/* body {
background: url('https://source.unsplash.com/random/1920x1080') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
} */
/* Full-width input fields */
.close span{ float:right}
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* Set a style for all buttons */
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover {
opacity:1;
}
/* Extra styles for the cancel button */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}
/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
float: left;
width: 50%;
}
/* Add padding to container elements */
.container {
padding: 16px;
}
/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
}
}
/* Live Feed CSS */
#video {
border: 1px solid black;
width: 320px;
height: 240px;
}
#photo {
border: 1px solid black;
/* width: 320px;
height: 240px; */
height: 100%;
width: 100%;
object-fit: contain;
}
#canvas {
display: none;
}
.camera {
width: 340px;
display: inline-block;
}
.output {
width: 340px;
display: inline-block;
}
#startbutton {
display: block;
position: relative;
margin-left: auto;
margin-right: auto;
width: 10%;
bottom: 36px;
padding: 5px;
background-color: #6a67ce;
border: 1px solid rgba(255, 255, 255, 0.7);
font-size: 14px;
color: rgba(255, 255, 255, 1.0);
cursor: pointer;
}
.contentarea {
font-size: 16px;
font-family: Arial;
text-align: center;
} | 0.40439 | 0.150403 |
@charset "UTF-8";
/*===================== TABLE OF CONTENT =======================
1. 8 DIFFERENT HOMEPAGES
2. LINE AWESOME FONTS
3. RESET CSS
4. CROSS BROWSER COMPATABILITY
5. ADVANCED SEARCH
7. DROPDOWN MENUS
8. RESPONSIVE HEADER
9. SLICK SLIDER (BANNER)
10. LISTING PAGES
11. BLOG PAGES
12. CLIENT'S FEEDBACK
13. PROPERTY PAGE
14. ERROR 404
=============================================================*/
@import url(../icons/font-awesome/css/font-awesome.min.css);
@import url(../icons/simple-line-icons/css/simple-line-icons.css);
@import url(../icons/simple-line-icons/css/line-awesome.min.css);
@import url(bootstrap.min.css);
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-regular.woff2') format('woff2'),
url('../icons/poppins/poppins-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-bold.woff2') format('woff2'),
url('../icons/poppins/poppins-bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-medium.woff2') format('woff2'),
url('../icons/poppins/poppins-medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-semibold.woff2') format('woff2'),
url('../icons/poppins/poppins-semibold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-bold.woff2') format('woff2'),
url('../icons/raleway/raleway-bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-medium.woff2') format('woff2'),
url('../icons/raleway/raleway-medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-regular.woff2') format('woff2'),
url('../icons/raleway/raleway-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
/* ==================================================================================
Reset 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
font-family: "Poppins";
color: #aeb4b6;
font-size: 14px;
font-weight: 400;
overflow-x: hidden;
}
body.pg {
line-height: 1;
}
a:focus,
a:hover {
text-decoration: none; }
a.link:focus,
a.link:hover {
color: #070f43; }
ul {
padding: 0;
margin: 0px; }
li {
list-style: none; }
h1,
h2,
h3,
h4,
h5,
h6 {
color: #242526;
font-weight: 500; }
p {
font-family: "Raleway", sans-serif;
font-size: 13px;
line-height: 24px;
}
section {
float: left;
width: 100%;
position: relative;
}
footer {
float: left;
width: 100%;
}
select:focus {
outline: none;
-webkit-box-shadow: none;
box-shadow: none; }
/* ==================================================================================
CROSS BROWSER COMPATABILITY
===================================================================================== */
a,
.dropdown-item,
.drop-menu,
.drop-menu .select i,
.wrapper:before,
.popup,
.price,
.price > h4,
.agent_info > h3,
.slick-prev,
.slick-next,
.categories-info,
.catg-icon > i,
.categories-info > h3,
.overlay-stick,
.map-city-links ul li a,
.header .navbar-nav .nav-item .nav-link,
.drop-menu .select .currency,
.drop-menu .dropeddown li,
.card .img-block:before,
.card .img-block:after,
.popular-cities .card:before,
.popular-cities .card:after,
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after,
.card .img-block .overlay,
.srch-btn .overlay,
.card .card-body h3,
.explore-feature .card .card-body i,
.popular-cities .card .overlay,
.popular-cities .card .card-body i,
.map-box h4 a,
.infoBox-close,
.map-box-icon,
.marker-card,
#geoLocation,
#mapnav-buttons a,
#scrollEnabling,
#streetView,
.bottom-list ul li a,
.footer-social a,
.alert-success,
.post-nfo li,
.post-nfo li a,
.post_info > h3 a,
.blog-img:before,
.agent_img:before,
.widget-catgs ul li a,
.widget-catgs ul li a span,
.ps-info > h3 a,
.widget-tags > ul li a,
.btn1,
.blog-single-post:hover .view-post,
.agent:hover .view-post,
.socio-links li a,
.social_links li a,
.btn-default,
.card .card-footer a .la-heart-o,
.partner-logo > a img,
.signin-btn b:before,
.model-item .title,
.h-page-card .title a,
.btn,
.language-selector .drop-menu .dropeddown li {
-webkit-transition: all 0.4s linear;
-moz-transition: all 0.4s linear;
-ms-transition: all 0.4s linear;
-o-transition: all 0.4s linear;
transition: all 0.4s linear;
}
.p-0 {
padding: 0px; }
.section-padding {
padding: 65px 0px;
}
.section-heading {
text-align: center;
float: left;
width: 100%;
}
.section-heading span {
font-size: 14px;
color: #aeb4b6;
float: left;
width: 100%;
margin-bottom: 2px;
}
.section-heading h3 {
font-size: 32px;
font-weight: 400;
float: left;
width: 100%;
margin-top: -4px;
}
.card {
border-radius: 0px;
position: relative;
}
.ext-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.card-body {
padding: 20px; }
.card-footer {
padding: 20px; }
button:focus {
outline: 0px; }
@media (min-width: 1200px) {
.container {
max-width: 1170px; padding: 0;} }
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #7e7f82; }
::-moz-placeholder {
/* Firefox 19+ */
color: #7e7f82; }
:-ms-input-placeholder {
/* IE 10+ */
color: #7e7f82; }
:-moz-placeholder {
/* Firefox 18- */
color: #7e7f82; }
header {
float: left;
width: 100%;
}
header.pb {
position: absolute;
top: 0;
left: 0;
z-index: 99;
}
.top-header {
background: #070f43;
height: 53px;
line-height: 55px;
border-bottom: 1px solid #0f1649;
}
.header-address a {
display: inline-block;
color: #d6d8e0;
}
.header {
height: 105px;
}
.header-address a i {
font-size: 18px;
margin-right: 9px;
position: relative;
top: 1px;
}
.header-address a span {
font-size: 12px;
margin-right: 29px;
font-weight: 500;
position: relative;
}
.header-social {
text-align: right;
position: relative;
top: -1px;
}
.header-social a {
display: inline-block;
color: #d6d8e0;
font-size: 13px;
padding: 0 9px;
}
.header-social a:last-child {
padding-right: 0px; }
.close-menu {
color: #000;
font-size: 36px;
position: absolute;
top: 10px;
right: 20px;
display: none;
}
.header .navbar-brand {
margin-right: 69px;
margin-top: 6px;
}
.header .navbar-brand img {
max-width: 105px; }
.header .dropdown-toggle::after {
font-family: FontAwesome;
content: "\f107";
border: 0px;
vertical-align: top;
font-size: 14px;
position: relative;
top: 3px;
left: 1px;
}
.menu-button {
width: 30px;
background-color: inherit;
border:0;
cursor: pointer;
margin-top: 10px;
display: none;
}
.menu-button span {
width: 100%;
height: 3px;
background-color: #111;
margin-bottom: 6px;
display: block;
}
header.pb .menu-button span {
background-color: #fff;
}
.header .navbar {
padding: 27px 0px; }
.header .navbar-nav .nav-item {
margin-right: 27px;
}
.header .navbar-nav .nav-item .nav-link {
color: #161616;
font-size: 14px;
position: relative;
}
.sbmt-btn:hover {
background-color: rgba(106, 123, 231, 0.8);
}
.sbmt-btn {
position: relative;
overflow: hidden;
}
.sbmt-btn:hover span,
.sbmt-btn:hover i {
color: #fff;
}
.header .navbar-nav .nav-item .dropdown-menu {
border-radius: 0px;
border: 0px;
padding: 0 20px;
border-top: 1px solid #d5d4d9;
overflow: hidden;
position: absolute;
top: 187.7%;
left: 0;
margin: 0;
}
.header .navbar-nav .nav-item .dropdown-menu:before {
content: '';
position: absolute;
top: -3px;
left: 0;
width: 100%;
height: 1px;
-webkit-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-moz-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-ms-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-o-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
}
.dropdown-item:last-child {
border-bottom: 0;
}
.dropdown-item {
padding: 15px 0 14px 0;
border-bottom: 1px solid #dfe0e5;
text-transform: capitalize;
line-height: 1;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
font-size: 14px; }
.header .navbar-nav .signin-btn {
margin-right: 25px !important;
margin-top: 3px; }
.header .navbar-nav .signin-btn a {
margin-top: 5px; }
.header .navbar-nav .signin-btn a i {
font-size: 18px;
margin-right: 7px;
position: relative;
top: 3px; }
.header .nav-item.signin-btn .nav-link {
margin-top: 3px;
}
.header .navbar-nav .nav-item .nav-link.sbmt-btn {
position: relative;
top: -1px;
}
.header .navbar-nav .nav-item.signin-btn {
margin-right: 25px;
}
.header .navbar-nav .submit-btn {
margin-right: 0px;
margin-top: 0; }
.header .navbar-nav .submit-btn a {
border: 1px solid;
border-radius: 30px;
padding: 0 25px;
height: 51px;
line-height: 48px;
color: #6a7be7 !important; }
.header .navbar-nav .submit-btn a i {
font-size: 16px;
margin-right: 10px;
position: relative;
top: 2px; }
.banner {
padding: 200px 0px;
background: url("https://via.placeholder.com/1920x674");
background-size: cover;
background-position: center;
min-height: 674px;
position: relative;
z-index: 1; }
.banner::after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(7, 15, 67, 0.8);
z-index: -1; }
.banner .container {
padding: 0 15px;
}
.banner-content h1 {
font-size: 44px;
color: #fff;
text-align: center;
font-weight: 400;
margin-bottom: 33px;
margin-top: 49px; }
.banner.hp2 {
padding: 230px 0 150px 0;
}
.banner-search {
background: #fff;
border-radius: 50px;
padding: 0px 7px 0px 10px;
height: 65px;
}
.banner-search .form-group {
margin: 0px;
padding: 0;
}
.banner-search .form-control {
font-size: 14px;
font-weight: 500;
height: 46px;
border: 0px;
margin: 9px 0px 10px 0px;
border-radius: 0px;
padding-left: 25px;
}
.half-map-sec .banner-search .form-control {
font-size: 12px;
}
.half-map-sec .drop-menu .select {
font-size: 12px;
}
.half-map-sec .features_list ul li {width: 25%;}
.half-map-sec .drop-menu .dropeddown li {
font-size: 12px;
}
.half-map-sec .features_list {margin-top: -50px;margin-bottom: 50px;}
.banner-search .form-control:hover, .banner-search .form-control:focus, .banner-search .form-control.active {
-webkit-box-shadow: none !important;
box-shadow: none !important; }
.banner-search .btn {
border-radius: 50px;
margin: 7px 0px;
padding: 0 36px;
height: 51px;
line-height: 51px;
float: right;
border:0;
font-size: 14px;
color: #fff;
box-shadow: none;
position: relative;
overflow: hidden;
z-index: 99;
}
.banner-search .btn:hover {
background-color: rgba(106, 123, 231, 0.8);
}
.banner-search .btn i {
margin-right: 8px;
font-size: 18px;
position: relative;
top: 2px;
}
.signin-btn b {
position: relative;
}
.signin-btn b:hover:before {
opacity: 1;
visibility: visible;
left: 0;
width: 100%;
}
.signin-btn b:before {
content: '';
position: absolute;
bottom: -5px;
left: 50%;
width: 0;
height: 2px;
opacity: 0;
visibility: hidden;
}
.drop-menu {
background: #fff;
width: 100%;
display: inline-block;
position: relative;
font-size: 14px;
height: 100%;
text-align: left;
margin: 7px 0;
border-left: 1px solid #e0e1e6;
/*padding-left: 10px; */
padding: 5px 10px 5px 10px;
}
.drop-menu .select {
cursor: pointer;
display: block;
padding: 10px;
color: #7e7f82;
font-weight: 500;
padding-left: 20px;
font-size: 14px;
text-transform: capitalize;
}
.drop-menu .select i {
font-size: 14px;
margin-top: 5px;
cursor: pointer;
float: right;
position: relative;
right: 10px;
}
.form_field {
float: left;
}
.addres {
width: 376px;
}
.tpmax {
width: 207px;
}
.srch-btn {
float: left;
width: 156px;
position: relative;
}
.drop-menu .select .currency {
font-size: 13px;
cursor: pointer;
float: right; }
.drop-menu.active {
border-radius: 5px 5px 0 0; }
.drop-menu.active:hover, .drop-menu.active:focus {
border-radius: 5px 5px 0 0; }
.drop-menu.active .select {
-webkit-box-shadow: none !important;
box-shadow: none !important;
outline: none; }
.drop-menu.active .select i {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.drop-menu:focus {
-webkit-box-shadow: none;
box-shadow: none;
outline: none; }
.drop-menu .dropeddown {
position: absolute;
width: 100%;
left: 0;
margin-top: 1px;
overflow: hidden;
display: none;
max-height: 144px;
overflow-y: auto;
z-index: 9999;
background: #fff;
padding: 0;
list-style: none;
padding: 0 30px;
border:1px solid #d3d3db;
top: 112%;
}
.drop-menu .dropeddown li {
padding: 15px 0 14px 0;
cursor: pointer;
color: #242526;
border-bottom: 1px solid #e0dfe5;
}
.drop-menu.active .select > span,
.drop-menu.active .select i,
.drop-menu .dropeddown li:hover {
color: #7686e6;
}
.drop-menu .dropeddown li:last-child {
border-bottom: 0;
}
.intro.section-padding {
padding: 110px 0px 6px; }
.intro .container {
padding: 0 15px;
}
.intro .row {
margin: 0;
}
.intro-content h3 {
font-size: 32px;
margin-top: 31px;
margin-bottom: 20px;
font-weight: 400; }
.intro-content > a {
margin-top: 30px;
}
.intro-content p {
font-family: "Raleway", sans-serif;
font-size: 16px;
color: #67686c;
line-height: 30px;
}
.view-btn {
margin-top: 14px;
border-radius: 30px;
display: inline-block;
border: 1px solid;
font-size: 14px;
height: 51px;
line-height: 49px;
padding: 0 26px 0 27px;
position: relative;
overflow: hidden;
z-index: 2;
}
.view-btn i {
margin-right: 5px;
font-size: 16px;
position: relative;
top: 2px;
padding-right: 7px;
}
.view-btn:hover, .view-btn:focus, .view-btn.active {
background: rgba(106, 123, 231, 0.8);
color: #fff;
border-color: transparent;
box-shadow: inherit;
}
.intro-img img {
width: 100%;
max-width: inherit;
}
.intro-thumb-row {
background: #fff;
padding: 30px 0px 30px;
z-index: 9999;
position: relative;
display: inline-block;
top: -69px;
}
.intro-thumb-row img {
vertical-align: middle;
border-style: none;
}
.intro-thumb:last-child {
margin-right: 30px;
}
.intro-thumb {
border: 1px solid #e0e1e6;
display: inline-block;
margin-right: 27px;
width: 270px;
}
.intro-img {padding-left: 15px;}
.intro-thumb h6 {
display: inline-block;
/*padding: 10px 15px;*/
padding-left: 15px;
position: relative;
top: 2px;
min-width: 150px;
font-size: 14px; }
.popular-listing .card {
margin-top: 0;
border:0;
cursor: pointer;
}
.popular-listing.hp5 .card {
margin-bottom: 30px;
}
.section-heading {
margin-bottom: 37px;
}
.popular-listing .card {
border:0;
cursor: pointer;
}
.popular-listing.section-padding {
padding: 1px 0 40px 0;
}
.card .img-block {
position: relative;
z-index: 1;
float: left;
width: 100%;
}
.card .img-block::after {
position: absolute;
content: '';
left: 0;
right: 0;
bottom: 0;
top: 0;
background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.5)));
background: transparent -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent -o-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
z-index: 0; }
.card .img-block h5,
.map-box .rate-info > h5 {
margin: 0px;
color: #fff;
font-size: 20px;
font-weight: 600;
float: left;
/*padding-left: 24px;*/
position: relative;
top: 5px;
}
.card .img-block span,
.map-box .rate-info > span {
color: #fff;
text-transform: uppercase;
font-size: 12px;
background: rgba(145, 147, 152, 0.7);
border-radius: 50px;
padding: 5px 13px;
float: right;
/*margin-right: 24px;*/
margin-top: 2px;
}
.card .img-block:before,
.card .img-block:after,
.popular-cities .card:before,
.popular-cities .card:after,
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
visibility: hidden;
}
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
background-color: rgba(48,62,148,0.50);
}
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
z-index: -1;
}
.intro-content a:after {
right: 0;
left: auto;
}
.banner-search .btn:after,
.sbmt-btn:after,
.btn2:after,
.btn-default:after {
right: 0;
left: auto;
}
.card .img-block:after {
right: 0;
left: auto;
}
.popular-cities .card:hover:after {
left: auto;
right: 0;
}
.banner-search .btn:hover:before,
.banner-search .btn:hover:after,
.intro-content a:hover:before,
.intro-content a:hover:after,
.sbmt-btn:hover:before,
.sbmt-btn:hover:after,
.btn2:hover:before,
.btn2:hover:after,
.btn-default:hover:before,
.btn-default:hover:after {
opacity: 1;
visibility: visible;
width: 0;
}
.card:hover .img-block:before,
.card:hover .img-block:after,
.popular-cities .card:hover:before,
.popular-cities .card:hover:after {
opacity: 1;
visibility: visible;
width: 0;
}
.card .img-block .overlay,
.srch-btn .overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
}
.card .card-body {
padding: 21px 23px 0;
border-left: 1px solid #dfe0e5;
border-right: 1px solid #dfe0e5;
}
.card .card-body h3 {
font-size: 18px;
margin-bottom: 2px;
color: #242526;
}
.card .card-body h3 a {
color: #242526;
}
.card .card-body p {
font-size: 12px;
color: #aeb4b6;
margin-bottom: 16px;
float: left;
width: 100%;
}
.card .card-body p i {
margin-right: 4px;
font-size: 14px;
margin-left: 0;
position: relative;
top: 2px;
}
.card .card-body ul {
border-bottom: 1px solid #ddd;
padding-bottom: 16px; }
.card .card-body ul li {
display: inline-block;
font-size: 12px;
color: #242526;
line-height: 11px;
border-right: 1px solid #ddd;
padding: 0px 17px 0px 17px;
margin-right: -3px;
}
.card .card-body ul li:first-child {
padding-left: 0px; }
.card .card-body ul li:last-child {
border-right: 0px; }
.card .card-footer {
background: transparent;
border-top: 0px;
border-right: 1px solid #dfe0e5;
border-bottom: 1px solid #dfe0e5;
border-left: 1px solid #dfe0e5;
padding: 14px 20px 17px 20px;
}
.card .card-footer a {
color: #aeb4b6;
font-size: 12px;
position: relative;
}
.card .card-footer a.pull-right {
margin-top: 6px;
}
.card .card-footer a .la-heart-o {
background: #f3f4f7;
color: #242526;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
display: inline-block;
font-size: 16px;
border-radius: 50px;
position: relative;
top: 1px;
padding-left: 3px;
z-index: 99;
}
.card .card-footer a .la-heart-o:hover {
color: #fff;
}
.card .card-footer a .fa-calendar {
margin-right: 7px;
font-size: 14px; }
.card:hover .img-block .overlay, .popular-listing .card:focus .img-block .overlay {
opacity: 1; }
.img-block img {
width: 100%;
float: left;
}
.card .card-footer a.pull-right i {
padding-right: 3px;
}
.explore-feature .card {
text-align: center;
border-color: #e0e1e6;
}
.explore-feature .card:hover .card-body i {
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
}
.explore-feature .card .card-body {
padding: 37px 15px 32px 15px;
border:0;
}
.explore-feature .card .card-body i {
font-size: 36px;
color: #fff;
border-radius: 100%;
height: 89px;
width: 89px;
line-height: 89px;
display: inline-block;
}
.explore-feature .card .card-body h3 {
font-size: 18px;
margin-top: 27px;
margin-bottom: 9px;
}
.explore-feature .card .card-body p {
font-size: 13px;
line-height: 22px;
margin-top: 0;
margin-bottom: 0px;
color: #67686c;
line-height: 24px;
padding: 0 10px;
}
.popular-cities.section-padding {
padding: 40px 0px 110px;
}
.hp_4 .discover-propt {
margin-bottom: 135px;
}
.popular-cities.hp3.section-padding {
padding: 0 0 0 0;
margin-top: -30px;
}
.popular-cities.hp3 .card {
margin-top: 0;
}
.card.mgb-30 {
margin-bottom: 30px;
}
.popular-cities .card:hover .overlay-stick {
opacity: 0;
}
.popular-cities.hp3 .card .img-fluid {
float: left;
}
.popular-cities.hp3 .card .card-body h4 {
font-size: 16px;
font-weight: 600;
}
.popular-cities .card {
position: relative;
margin-top: 0;
border:0;
}
.popular-cities .card .overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
}
.popular-cities .card::after {
position: absolute;
content: '';
left: 0;
right: 0;
bottom: 0;
top: 0;
background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.5)));
background: transparent -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent -o-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
z-index: 0;
}
.popular-cities .card .card-body {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
padding: 0 24px 22px 24px;
}
.rate-info {
float: left;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
padding: 40px 23px 20px 23px;
z-index: 2;
}
.popular-cities .card .card-body:before,
.rate-info:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(255,255,255,0.02),rgba(44,44,47,47));
z-index: -1;
}
.popular-cities .card .card-body h4 {
color: #fff;
margin-bottom: 0;
font-size: 20px;
font-weight: 600;
float: left;
}
.popular-cities.hp3 .card .card-body i {
bottom: 25px;
}
.popular-cities.hp3 .card .card-body {padding-bottom: 30px;}
.popular-cities .card .card-body p {
color: #fff;
margin: 0px;
display: inline-block;
font-size: 12px;
text-transform: uppercase;
font-family: "Poppins", sans-serif;
}
.popular-cities .card .card-body {
border: 0;
}
.popular-cities .card .card-body i {
position: absolute;
right: 24px;
bottom: 31px;
border: 1px solid #e0e1e6;
padding: 12px 12px;
color: #aeb4b6;
border-radius: 100%;
height: 40px;
width: 40px;
font-size: 14px;
text-align: center;
}
.popular-cities .card:hover .overlay, .popular-cities .card:focus .overlay {
opacity: 1;
}
.popular-cities .card:hover i, .popular-cities .card:focus i {
background: #fff;
color: #aeb4b6;
border-color: transparent;
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
*:after,
*:before {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.infoBox {
border-radius: 4px; }
.map-box {
background-color: #fff;
margin-bottom: 5px;
border-radius: 4px;
-webkit-box-shadow: 0 0 40px 0 rgba(3, 3, 3, 0.15);
box-shadow: 0 0 40px 0 rgba(3, 3, 3, 0.15);
position: relative; }
.map-box .listing-img-container img {
width: 100%;
border-radius: 4px 4px 0 0;
position: relative;
}
.map-box .rate-info {
position: absolute;
bottom: 84px;
left: 0;
padding-bottom: 20px;
}
.map-box .rate-info > h5 {
top: 4px;
}
.map-box h4 {
margin: 0;
padding: 0; }
.map-box h4 a {
padding: 0 0 2px;
font-size: 17px;
line-height: 25px;
display: inline-block; }
.listing-img-container {
position: relative;
height: 100%;
display: block; }
.map-box h4 a:hover {
color: #66676b; }
.map-box p {
padding: 0;
line-height: 25px;
margin: 2px 0 0;
font-size: 14px; }
.map-box ul.listing-details {
padding: 0;
font-size: 14px;
display: none; }
.map-box .listing-title {
padding: 16px 22px; }
.map-box .listing-img-content {
padding: 18px 22px; }
.map-box .listing-img-content span {
font-size: 21px; }
.map-box .listing-img-content .listing-price i {
font-size: 15px;
margin: -7px 0 0; }
.infoBox > img {
position: absolute !important;
right: 0;
top: 0; }
.map-box .listing-img-container::before {
content: "";
display: none;
position: absolute;
height: 100%;
width: 100%;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(35, 35, 37, 0.85)), color-stop(35%, rgba(35, 35, 37, 0.4)), color-stop(60%, rgba(22, 22, 23, 0)), to(transparent));
background: -webkit-linear-gradient(bottom, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background: -o-linear-gradient(bottom, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background: linear-gradient(to top, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background-color: rgba(35, 35, 37, 0.2); }
.map-box .listing-item-content {
position: static;
width: 100%;
margin-top: -3px;
background-color: #fff;
padding: 15px 23px 20px 23px;
border-left: 1px solid #e0e1e5;
border-right: 1px solid #e0e1e5;
border-bottom: 1px solid #e0e1e5;
}
.map-box .listing-item-content h3 {
color: #242526;
font-size: 16px;
padding: 0 0 2px;
font-weight: 500;
margin: 0;
line-height: 27px;
margin-bottom: 5px;
}
.map-box .listing-item-content span {
font-size: 12px;
font-weight: 400;
display: inline-block;
color: #aeb4b6;
}
.map-box .listing-item-content span i {
padding-right: 5px;
}
.infoBox-close {
position: absolute;
top: 10px;
right: 10px;
display: inline-block;
z-index: 999;
text-align: center;
line-height: 29px;
cursor: pointer;
font-size: 15px;
font-weight: 500;
height: 29px;
width: 29px;
background-color: #fff;
color: #333;
font-family: "FontAwesome";
border-radius: 50%;
-webkit-text-stroke: 1px #fff;
}
.infoBox-close:hover {
color: #fff;
background-color: #66676b;
-webkit-text-stroke: 1px #66676b; }
.map-box-icon {
height: 38px;
width: 38px;
position: absolute;
bottom: 0;
right: 0;
background-color: #3685cf;
display: block;
color: #fff;
font-size: 12px;
z-index: 101;
text-align: center;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
opacity: 0;
visibility: hidden; }
.map-box-icon:before {
content: "\f064";
font-family: "FontAwesome";
position: relative;
top: 7px;
display: block; }
.map-box-image:hover .map-box-icon {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-ms-transform: translateX(0);
transform: translateX(0); }
.map-box-image {
position: relative;
overflow: hidden;
display: block; }
/*.infoBox {
-webkit-animation: fadeIn 0.9s;
animation: fadeIn 0.9s; }
*/
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.infoBox .star-rating {
font-size: 16px;
margin-top: 1px; }
.infoBox .star-rating span {
margin-right: 3px; }
.infoBox .rating-counter {
position: relative;
top: -1px; }
.infoBox:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 12px solid transparent;
border-right: 12px solid transparent;
border-top: 12px solid #fff; }
#map {
height: 100%;
width: 100%;
margin: 0;
z-index: 990; }
#map-container {
position: relative;
top: 0;
left: 0;
height: 520px;
width: 100%;
z-index: 0;
margin-bottom: 60px; }
.gmnoprint {
margin: 10px; }
#map-container.fullwidth-home-map {
height: 600px;
margin-bottom: 0; }
#map-container.fullwidth-home-map.hp3 {
height: 490px;
}
#map-container.fullwidth-home-map .main-search-inner {
position: absolute;
display: block;
bottom: 60px;
top: auto;
-webkit-transform: none;
-ms-transform: none;
transform: none;
padding-bottom: 0;
z-index: 9999;
margin-top: 0;
margin-left: auto;
margin-right: auto;
width: 100%; }
#map-container.fullwidth-home-map .main-search-input {
margin-top: 0; }
.cluster img {
display: none; }
.cluster-visible {
text-align: center;
font-size: 15px !important;
color: #fff !important;
font-weight: 500;
border-radius: 50%;
width: 50px !important;
height: 50px !important;
line-height: 50px !important;
}
.cluster-visible:before {
border: 7px solid;
opacity: 0.2;
-webkit-box-shadow: inset 0 0 0 4px #6a7be7;
box-shadow: inset 0 0 0 4px #6a7be7;
content: '';
position: absolute;
border-radius: 50%;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-animation: cluster-animation 2.5s infinite;
animation: cluster-animation 2.5s infinite; }
@-webkit-keyframes cluster-animation {
0%,
100% {
-webkit-transform: scale(1.3) rotate(0deg);
transform: scale(1.3) rotate(0deg); }
50% {
-webkit-transform: scale(1.5) rotate(90deg);
transform: scale(1.5) rotate(90deg); } }
@keyframes cluster-animation {
0%,
100% {
-webkit-transform: scale(1.3) rotate(0deg);
transform: scale(1.3) rotate(0deg); }
50% {
-webkit-transform: scale(1.5) rotate(90deg);
transform: scale(1.5) rotate(90deg); } }
.map-marker-container {
position: absolute;
margin-top: 10px;
-webkit-transform: translate3d(-50%, -100%, 0);
transform: translate3d(-50%, -100%, 0); }
.marker-container {
position: relative;
margin: 10px auto;
width: 40px;
height: 40px;
z-index: 1;
border-radius: 50%;
cursor: pointer;
top: -5px; }
#singleListingMap .marker-container {
cursor: default; }
.marker-container {
-webkit-perspective: 1000;
perspective: 1000; }
.marker-card {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
z-index: 1; }
.map-marker-container.clicked .marker-card,
.marker-container:hover .marker-card {
-webkit-transform: rotateY(-180deg) translateY(0px);
transform: rotateY(-180deg) translateY(0px); }
.marker-arrow {
width: 0;
content: "";
height: 0;
border-style: solid;
border-width: 20px 13px 0;
border-color: #6a7be7 transparent transparent;
top: 35px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
position: absolute;
border-radius: 0;
z-index: 1; }
.face {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
text-align: center;
border-radius: 10%;
color: #fff;
z-index: 100;
border-radius: 50px; }
.face i {
line-height: 30px;
font-size: 16px;
}
.face.front {
background-color: #fff;
border: 6px solid;
z-index: 100; }
.face.back {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: #fff; }
.face.back i {
trasform: scaleX(-1);
line-height: 38px;
font-size: 18px; }
.face.back:after {
content: "";
display: block;
width: 36px;
height: 36px;
top: 2px;
left: 2px;
border-radius: 10%;
position: absolute; }
.custom-zoom-in,
.custom-zoom-out {
background-color: #fff;
color: #333;
cursor: pointer;
border-radius: 50%;
margin: 5px 15px;
-webkit-transition: color 0.3s, background-color 0.3s;
-o-transition: color 0.3s, background-color 0.3s;
transition: color 0.3s, background-color 0.3s;
-webkit-box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
text-align: center;
font-size: 15px;
height: 34px;
width: 34px; }
.custom-zoom-in:hover,
.custom-zoom-out:hover {
background-color: #66676b;
color: #fff; }
.custom-zoom-in:before,
.custom-zoom-out:before {
font-family: "FontAwesome";
width: 100%;
line-height: 35px;
transition: -webkit-text-stroke 0.3s;
-webkit-text-stroke: 1px #fff; }
.zoomControlWrapper {
position: absolute;
left: 0;
right: auto;
width: 70px; }
.custom-zoom-in:before {
content: "\f067"; }
.custom-zoom-out:before {
content: "\f068"; }
.custom-zoom-in:hover:before,
.custom-zoom-out:hover:before {
-webkit-text-stroke: 1px #66676b; }
#mapnav-buttons {
position: absolute;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
z-index: 999;
font-size: 14px;
display: inline-block;
bottom: 20px;
right: 20px;
list-style: none;
padding: 0; }
#mapnav-buttons.top {
top: 20px;
right: 20px;
bottom: auto; }
#mapnav-buttons li {
float: left;
margin-left: 4px;
line-height: 20px; }
#geoLocation,
#mapnav-buttons a,
#scrollEnabling,
#streetView {
color: #333;
background-color: #fff;
padding: 9px 18px 7px;
font-weight: 500;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
border-radius: 50px;
-webkit-box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2); }
#geoLocation:hover,
#mapnav-buttons a:hover,
#scrollEnabling.enabled,
#scrollEnabling:hover,
#streetView:hover {
background-color: #66676b;
color: #fff; }
#nextpoint:after,
#prevpoint:before {
font-family: "FontAwesome";
position: relative;
font-weight: 500;
margin: 0 0 0 6px;
font-size: 17px;
top: 0;
line-height: 1px; }
#prevpoint:before {
content: "\f104";
margin: 0 6px 0 0; }
#nextpoint:after {
content: "\f105";
margin: 0 0 0 6px; }
#geoLocation,
#scrollEnabling,
#streetView {
position: absolute;
top: 20px;
right: 20px;
z-index: 999;
font-size: 13px;
line-height: 21px; }
#geoLocation:before,
#scrollEnabling:before,
#streetView:before {
content: "\e015";
font-family: "simple-line-icons";
position: relative;
top: 2px;
margin: 0 6px 0 0;
font-size: 15px;
line-height: 1px; }
#scrollEnabling:before {
margin-left: -3px; }
#streetView:before {
content: "\f21d";
font-family: "FontAwesome";
font-size: 16px;
top: 1px;
margin-right: 8px; }
#geoLocation {
right: auto;
left: 20px;
padding: 8px 11px; }
#geoLocation:before {
content: "\f192";
font-family: "FontAwesome";
font-size: 16px;
margin: 0;
top: 2px; }
@-webkit-keyframes passing-through {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30%,
70% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@keyframes passing-through {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30%,
70% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); } }
@keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); } }
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
10% {
-webkit-transform: scale(1.1);
transform: scale(1.1); }
20% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
10% {
-webkit-transform: scale(1.1);
transform: scale(1.1); }
20% {
-webkit-transform: scale(1);
transform: scale(1); } }
.cta {
background: #303e94;
}
.cta.section-padding {
padding: 68px 0 67px 0;
}
.cta .cta-text {
text-align: center;
}
.cta .cta-text h2 {
font-size: 32px;
color: #fff;
margin: 0px;
}
.bottom.section-padding {
padding: 67px 0px 67px;
}
.bottom-list {
margin-top: 6px; }
.bottom-list h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 19px; }
.bottom-list ul li a {
line-height: 36px;
color: #67686c;
font-size: 14px;
padding-left: 23px;
}
.bottom-list ul li a:hover {
padding-left: 30px;
}
.bottom-list ul li {
position: relative;
}
.bottom-list ul li:before {
content: '\f112';
font-family: lineawesome;
position: absolute;
top: 50%;
left: -4px;
font-size: 14px;
color: #78797f;
transform: translateY(-50%);
}
.bottom-list ul li a i {
margin-right: 17px;
position: relative;
top: -1px;
font-size: 14px;
}
.bottom-list > ul {
margin-top: 4px;
float: left;
width: 100%;
}
.bottom-desc {
margin-top: 6px;
padding-right: 5px;
}
.bottom-desc h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 20px; }
.bottom-desc p {
color: #67686c;
float: left;
width: 100%;
font-size: 13px;
line-height: 24px;
margin-top: 7px;
padding-right: 15px;
}
.bottom-logo img {
max-width: 105px; }
.footer-content {
padding: 30px 0px 30px 0;
border-top: 1px solid #e0e1e6; }
.footer-content .copyright p {
margin-bottom: 1px;
margin-top: 8px;
font-size: 13px;
}
.footer-social {
text-align: right; }
.footer-social a {
width: 35px;
height: 35px;
text-align: center;
border: 1px solid #e0e1e6;
color: #838488;
display: inline-block;
line-height: 35px;
border-radius: 50px;
font-size: 13px;
margin: 0px 3px 0px 7px;
}
.footer-social a:hover {
color: #fff;
border-color: transparent;
}
.footer-social a:last-child {
margin-right: 0;
}
.alert-success {
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
visibility: hidden;
z-index: 0;
width: 100%;
text-align: center;
}
.alert-success.active {
opacity: 1;
visibility: visible;
z-index: 999999;
}
.close-alert {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
right: 25px;
color: #155724;
font-size: 20px;
}
/* ========================= BLOG OPEN PAGE =========================== */
.pager-sec {
background-image: url(https://via.placeholder.com/1920x200);
background-repeat: no-repeat;
background-size: cover;
padding: 74px 0 72px 0;
position: relative;
z-index: 1;
}
.pager-sec.st2 {
background: #eeeef0;
background-image: inherit;
}
.pager-sec.st2 .pager-sec-details > h3 {
color: #242526;
}
.pager-sec.st2 .pager-sec-details > ul li a, .pager-sec.st2 .pager-sec-details > ul li span {
color: #242526;
}
.pager-sec.st2 .pager-sec-details > ul li:before {
color: #242526;
}
.bfr:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(../images/pg-bef.png);
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
}
.pager-sec-details {
float: left;
width: 100%;
}
.pager-sec-details > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
float: left;
}
.pager-sec-details > ul {
float: right;
margin-top: 14px;
}
.pager-sec-details > ul li {
display: inline-block;
position: relative;
padding: 0 11px 0 15px;
}
.pager-sec-details > ul li:last-child {
padding-right: 0;
}
.pager-sec-details > ul li:last-child:before {
display: none;
}
.pager-sec-details > ul li:before {
content: '\f101';
position: absolute;
top: 4px;
left: 100%;
color: #fff;
font-size: 12px;
font-family: fontawesome;
}
.pager-sec-details > ul li a,
.pager-sec-details > ul li span {
display: inline-block;
color: #ffffff;
font-size: 14px;
}
/* ================= BLOG SINGLE SEC ============== */
.blog-single-details {
float: left;
width: 100%;
}
.blog-single-post {
float: left;
width: 100%;
cursor: pointer;
position: relative;
}
.blog-single-post > ul.post-nfo,
.post_info > ul.post-nfo {
float: left;
width: 100%;
margin-bottom: 7px;
margin-top: -1px;
}
.post-nfo li,
.post-nfo li a {
display: inline-block;
color: #aeb4b6;
font-size: 12px;
margin-right: 20px;
}
.post-nfo li a {
margin-right: 0;
}
.post-nfo li i {
font-size: 14px;
padding-right: 6px;
position: relative;
top: 1px;
}
.pt {
padding: 105px 0;
}
.blog-single-sec.section-padding {
padding: 110px 0 110px 0;
}
.blog-single-post > h3,
.post_info > h3 {
color: #242526;
font-size: 28px;
font-weight: 500;
margin-bottom: 23px;
float: left;
width: 100%;
}
.post_info > h3 a {
color: #242526;
}
.blog-img {
float: left;
width: 100%;
margin-bottom: 34px;
position: relative;
}
.blog-img:before,
.agent_img:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 100%;
background-color: rgba(127,142,233,0.85);
opacity: 0;
visibility: hidden;
}
.blog-single-post:hover .blog-img:before,
.agent:hover .agent_img:before {
opacity: 1;
visibility: visible;
left: 0;
width: 100%;
}
.blog-single-post.single {
cursor: inherit;
}
.blog-single-post.single .blog-img:before,
.blog-single-post.single .blog-img:after {
display: none;
}
.blog-img > a img {
width: 100%;
float: left;
}
.blog-single-post p {
float: left;
width: 100%;
margin-bottom: 24px;
color: #67686c;
font-size: 13px;
line-height: 24px;
font-family: 'Raleway';
}
.blog-single-post > blockquote {
color: #242526;
font-size: 15px;
font-weight: 700;
line-height: 28px;
border-left: 3px solid;
padding: 2px 0 1px 18px;
float: left;
width: 100%;
margin-bottom: 38px;
margin-top: 13px;
}
.blg-dv {
float: left;
width: 100%;
margin-bottom: 22px;
margin-top: 8px;
}
.blg-sm {
float: left;
width: 100%;
}
.blg-info {
float: left;
width: 100%;
padding-left: 27px;
}
.bg-links {
float: left;
width: 100%;
padding: 0 40px;
margin-top: 5px;
margin-bottom: 13px;
}
.bg-links li {
float: left;
width: 100%;
color: #242526;
font-size: 13px;
margin-bottom: 17px;
position: relative;
padding-left: 19px;
font-family: 'Raleway';
}
.bg-links li:before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 5px;
height: 5px;
border-radius: 100px;
background-color: #242526;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
/* ================ post-share =============== */
.post-share {
float: left;
width: 100%;
padding: 21px 0;
border-top: 1px solid #dfe0e5;
margin-top: 8px;
margin-bottom: 27px;
}
.social-links {
float: left;
}
.social-links li {
display: inline-block;
margin-right: 17px;
}
.social-links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
.post-share > a {
float: right;
color: #161616;
font-size: 13px;
font-weight: 400;
margin-top: 3px;
}
.post-share > a i {
padding-left: 8px;
}
/* ============== cm-info-sec ================ */
.cm-info-sec {
float: left;
width: 100%;
display: table;
border:1px solid #dfe0e5;
padding: 29px 24px;
margin-bottom: 68px;
}
.cm-img {
display: table-cell;
}
.cm-img > img {
float: left;
}
.cm-info {
display: table-cell;
width: 100%;
vertical-align: top;
padding-left: 19px;
position: relative;
top: -1px;
}
.cm-info h3 {
color: #151515;
font-size: 16px;
font-weight: 500;
margin-bottom: 8px;
}
.cm-info > p {
color: #67686c;
font-size: 13px;
line-height: 24px;
font-family: 'Raleway';
margin-bottom: 12px;
}
.cm-info .social-links li a {
color: #aeb4b6;
}
/* ================= comment-section ================ */
.comment-section {
float: left;
width: 100%;
margin-top: 7px;
}
.p-title {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 30px;
}
.comment-section .cm-info-sec {
padding: 0;
border:0;
margin: 0;
}
.comment-section .cm-info {
padding-top: 7px;
}
.comment-section .cm-info > h4 {
color: #aeb4b6;
font-size: 12px;
font-weight: 400;
}
.comment-section .cm-info h3 {
margin-bottom: 3px;
}
.comment-section > ul {
float: left;
width: 100%;
}
.comment-section > ul > li {
float: left;
width: 100%;
position: relative;
margin-bottom: 32px;
}
.comment-section ul li p {
float: left;
width: 100%;
margin-top: 13px;
color: #67686c;
}
.cm-reply {
display: inline-block;
font-size: 12px;
font-weight: 500;
position: absolute;
top: 7px;
right: 0;
text-transform: uppercase;
letter-spacing: 1px;
}
/* ================ post-comment-sec =============== */
.post-comment-sec {
float: left;
width: 100%;
margin-top: 22px;
}
.post-comment-sec .p-title {
margin-bottom: 18px;
}
.post-comment-sec > form {
float: left;
width: 100%;
}
.post-comment-sec .col-lg-4 {
padding: 0 8px;
}
.post-comment-sec form button {
margin-top: -5px;
}
.post-comment-sec form .row {
margin: 0;
}
.post-comment-sec form input {
height: 48px;
padding: 0 17px;
}
.post-comment-sec form textarea {
height: 124px;
padding: 14px 17px;
}
.post-comment-sec form input,
.post-comment-sec form textarea {
width: 100%;
color: #67686c;
font-size: 12px;
font-weight: 400;
border:1px solid #dfe0e5;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #67686c;
}
::-moz-placeholder { /* Firefox 19+ */
color: #67686c;
}
:-ms-input-placeholder { /* IE 10+ */
color: #67686c;
}
:-moz-placeholder { /* Firefox 18- */
color: #67686c;
}
#map-container.fullwidth-home-map.wmap {
height: 489px;
}
/* =============== RIGHT SIDEBAR ============= */
.sidebar {
float: left;
width: 100%;
padding-left: 20px;
}
.sidebar .widget-title {
margin-top: -6px;
}
.sidebar.layout2 .widget-property-search {
margin-top: 0;
}
.sidebar.layout2 .widget-property-search .widget-title {
margin-top: 0;
}
.sidebar .banner-search {
padding: 0;
}
.widget {
float: left;
width: 100%;
margin-bottom: 48px;
}
.widget-search form {
float: left;
width: 100%;
position: relative;
}
.widget-search form input {
width: 100%;
height: 48px;
border:1px solid #dfe0e5;
color: #67686c;
font-size: 12px;
padding: 0 18px;
background-color: #fff;
}
.widget-search form button {
font-size: 18px;
position: absolute;
top: 50%;
right: 11px;
background-color: inherit;
border:0;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
cursor: pointer;
}
.widget-title {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 20px;
}
/* =============== Widget Categories ============= */
.widget-catgs {
margin-bottom: 42px;
}
.widget-catgs ul {
float: left;
width: 100%;
margin-top: -5px;
}
.widget-catgs ul li {
float: left;
width: 100%;
margin-bottom: 15px;
}
.widget-catgs ul li:last-child {
margin-bottom: 0;
}
.widget-catgs ul li a {
float: left;
font-size: 14px;
font-weight: 400;
}
.widget-catgs ul li a span {
display: inline-block;
}
.widget-catgs ul li a:hover span {
padding-left: 15px;
}
.widget-catgs ul li a i {
color: #78797f;
font-size: 14px;
padding-right: 14px;
position: relative;
left: -4px;
}
.widget-catgs ul li > span {
float: right;
color: #88898d;
font-size: 14px;
}
/* =============== widget-posts ============= */
.widget-posts > ul {
float: left;
width: 100%;
}
.widget-posts > ul li {
float: left;
width: 100%;
margin-bottom: 14px;
}
.widget-posts > ul li:last-child {
margin-bottom: 0;
}
.wd-posts {
float: left;
width: 100%;
display: table;
}
.ps-img {
display: table-cell;
}
.ps-img > a img {
float: left;
}
.ps-info {
display: table-cell;
vertical-align: top;
width: 100%;
padding-left: 19px;
padding-top: 5px;
}
.ps-info > h3 {
color: #242526;
font-size: 14px;
font-weight: 400;
margin-bottom: 4px;
}
.ps-info > h3 a {
color: #242526;
}
.ps-info > span {
display: inline-block;
color: #aeb4b6;
font-size: 12px;
}
.ps-info > span i {
font-size: 14px;
padding-right: 5px;
}
/* ============== widget-adver ========== */
.widget-adver > a img {
width: 100%;
}
/* ============== POPULAR TAGS =========== */
.widget-tags > ul {
float: left;
width: 100%;
}
.widget-tags > ul li {
display: inline-block;
margin-right: 4px;
margin-bottom: 7px;
}
.widget-tags > ul li a {
display: inline-block;
color: #ffffff;
font-size: 12px;
padding: 5px 13px 4px 13px;
border-radius: 30px;
}
.widget-tags > ul li a:hover {
background-color: #8b9af7;
}
.widget-adver {
margin-bottom: 42px;
}
/* ================== BLOG STANDARD PAGE ================ */
.blog-posts {
float: left;
width: 100%;
}
.blog-posts .blog-single-post {
margin-bottom: 45px;
}
.blog-posts .blog-single-post:last-child {
margin-bottom: 0;
}
.post_info {
float: left;
width: 100%;
padding: 30px 30px 39px 30px;
border:1px solid #dfe0e5;
border-top: 0;
}
.blog-posts .blog-img {
margin-bottom: 0;
}
.blog-img > img {
width: 100%;
float: left;
}
.post_info > h3 {
margin-bottom: 14px;
}
.btn1 {
display: inline-block;
font-size: 14px;
height: 51px;
line-height: 51px;
border-radius: 30px;
padding: 0 27px;
border:1px solid;
}
.post_info > a:hover {
color: #fff;
border-color: transparent;
}
.post_info > a {
float: left;
}
/* ============== pagination ============ */
.pagination {
float: left;
width: 100%;
margin-top: 62px;
}
.half_map .half-map-sec .container {
padding: 0;
width: 100%;
max-width: 100%;
}
.half-map-sec .pagination {
margin-top: 32px;
}
.pagination .page-link {
padding: 0;
width: 41px;
height: 41px;
border:1px solid #e1e2e6;
border-radius: 100px;
line-height: 41px;
color: #242526;
font-size: 14px;
margin-right: 8px;
text-align: center;
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
color: #fff;
border-color: transparent;
}
.page-item .page-link b {
position: relative;
left: 1px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
border-radius: 100px;
}
.blog-standard.section-padding {
padding: 110px 0;
}
/* ===================== BLOG GRID PAGE ================== */
.blog-grid-posts {
float: left;
width: 100%;
}
.blog-grid-posts .blog-single-post {
margin-bottom: 30px;
}
.blog-grid-posts .blog-img {
margin-bottom: 0;
}
.blog-grid-posts .post_info > h3 {
font-size: 18px;
}
.blog-grid-posts .post_info > a {
height: auto;
line-height: inherit;
border:0;
padding: 0;
color: #161616;
font-size: 12px;
}
.blog-grid-posts .post_info > a:hover {
background-color: inherit;
}
.blog-grid-posts .post_info > a i {
padding-left: 6px;
position: relative;
top: 1px;
}
.blog-grid-posts .post_info > ul.post-nfo {
margin-bottom: 5px;
}
.blog-grid-posts .blog-single-post p {
margin-bottom: 19px;
}
.blog-single-post p:first-child {
margin-top: -4px;
}
.blg-dv .blg-info p {
margin-bottom: 21px;
font-size: 13px;
}
.blog-grid-posts .post_info {
padding: 29px 30px 27px 30px;
}
.view-posts {
color: #ffffff;
font-size: 14px;
border:1px solid #ffffff;
padding: 14px 26px;
border-radius: 30px;
display: inline-block;
}
.view-post {
float: left;
width: 100%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 99;
opacity: 0;
visibility: hidden;
margin-top: 30px;
text-align: center;
}
.view-posts:hover {
color: #fff;
}
.blog-single-post:hover .view-post,
.agent:hover .view-post {
opacity: 1;
visibility: visible;
margin: 0;
}
.load-more-posts {
float: left;
width: 100%;
text-align: center;
margin-top: 32px;
}
.load-more-posts > .btn2 {
padding: 0 28px 0 26px;
width: auto;
float: none;
display: inline-block;
}
.blog-grid.section-padding {
padding: 110px 0 104px 0;
}
/* ================ about-us-sec ============= */
.about-sec.pt {
padding: 110px 0 110px 0;
}
.page-main-content.section-padding {
padding: 110px 0 110px 0;
}
.about-us-sec {
float: left;
width: 100%;
}
.about-info {
float: left;
width: 100%;
padding-top: 72px;
}
.about-info > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
margin-bottom: 4px;
}
.about-info > h4 {
color: #aeb4b6;
font-size: 12px;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 19px;
}
.about-info > p {
font-size: 16px;
color: #67686c;
line-height: 30px;
padding: 15px 0 20px 0;
}
.about-info > a {
float: left;
}
.about-img {
float: left;
width: 100%;
}
.about-img > img {
width: 100%;
float: left;
}
.explore-feature.pt {
padding-bottom: 110px;
}
.explore-feature.st2 .card .card-body p {
padding: 0 10px;
}
/* ================ agent-profile-sec ============== */
.agent-profile-sec {
float: left;
width: 100%;
margin-bottom: -11px;
}
.agent-profile-sec .row {
margin: 0;
}
.agent-profile {
float: left;
width: 100%;
padding-right: 5px;
}
.agent-img {
float: left;
width: 355px;
}
.agent-img > img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* ================== agent-info ================= */
.agent-info {
float: left;
width: 415px;
border:1px solid #dfe0e5;
padding: 27px 29px 40px 30px;
border-left: 0;
line-height: 1;
}
.agent-profile .col-lg-6 {
padding: 0;
}
.agent-info > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
line-height: 35px;
margin-bottom: 7px;
}
.agent-info > h4 {
color: #aeb4b6;
font-size: 12px;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 22px;
}
.agent-info > p {
float: left;
width: 100%;
color: #67686c;
padding: 17px 0 31px 0;
}
.cont-links {
float: left;
width: 100%;
}
.cont-links li {
float: left;
width: 100%;
margin-bottom: 15px;
}
.cont-links li a,
.cont-links li span {
display: inline-block;
font-weight: 500;
font-size: 14px;
}
.cont-links li a i,
.cont-links li span i {
padding-right: 7px;
font-size: 16px;
}
/* ============== socio-links ============= */
.socio-links {
float: left;
width: 100%;
margin-top: 17px;
}
.socio-links li {
display: inline-block;
margin-right: 17px;
}
.socio-links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
/* ============== contact-agent ============= */
.contact-agent {
float: left;
width: 100%;
padding-left: 25px;
line-height: 1;
}
.contact-agent > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 24px;
margin-top: -2px;
}
.contact-agent > form {
float: left;
width: 100%;
}
.s {
float: left;
width: 100%;
margin-bottom: 16px;
}
.form-field {
float: left;
width: 100%;
margin-bottom: 15px;
}
.form-field input {
height: 48px;
padding: 0 17px;
}
.form-field textarea {
height: 105px;
padding: 14px 18px;
}
.form-field input,
.form-field textarea {
width: 100%;
font-size: 12px;
color: #67686c;
border:1px solid #dfe0e5;
background-color: #fff;
}
.form-field button {
margin-top: 3px;
cursor: pointer;
}
/* ================= contact-details-sec ============== */
.contact-sec {
float: left;
width: 100%;
padding: 101px 0 110px 0;
}
.contact-details-sec {
float: left;
width: 100%;
}
.contact_form {
float: left;
width: 100%;
}
.contact_form > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
margin-bottom: 17px;
}
.contact_form > p {
color: #67686c;
font-size: 15px;
line-height: 30px;
margin-bottom: 30px;
}
.contact_form > form {
float: left;
width: 100%;
}
.contact-details-sec .row {
margin: 0;
}
.contact_form > form .col-lg-4,
.contact_form > form .col-lg-12 {
padding: 0 8px;
}
.contact_form > form .form-field {
margin-bottom: 16px;
}
.contact_form > form .form-field textarea {
height: 124px;
}
.contact_form > form button {
margin-top: -5px;
float: left;
}
.contact_form > form button:hover,
.post-comment-sec form button:hover {
color: #fff;
}
/* ================ contact_info ================= */
.contact_info {
float: left;
width: 100%;
margin-top: 54px;
padding-left: 20px;
}
.contact_info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
margin-bottom: 24px;
text-transform: uppercase;
letter-spacing: 1.2px;
}
.cont_info {
float: left;
width: 100%;
}
.cont_info li {
float: left;
width: 100%;
color: #67686c;
font-size: 14px;
font-weight: 500;
margin-bottom: 14px;
}
.cont_info li:nth-child(2) {
margin-bottom: 15px;
}
.cont_info li i {
font-size: 16px;
padding-right: 10px;
}
/* =================== social_links =================== */
.social_links {
float: left;
width: 100%;
margin-top: 11px;
}
.social_links li {
display: inline-block;
margin-right: 17px;
}
.social_links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
/* =============== support-sec ============== */
.feature-support-sec.section-padding {
padding: 110px 0 110px 0;
}
.support-sec {
float: left;
width: 100%;
}
.video-img {
float: left;
width: 100%;
position: relative;
}
.video-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(106,123,231,0.10);
}
.video-img > img {
width: 100%;
float: left;
}
.video-play {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
color: #fff;
font-size: 60px;
}
.video-play:hover {
color: #fff;
}
#html5-watermark{display:none!important}
#html5lightbox-web-iframe img{float:none}
/* ================= support-info =============== */
.support-info {
float: left;
width: 100%;
margin-top: -7px;
padding-left: 20px;
}
.support-info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
margin-bottom: 13px;
text-transform: uppercase;
}
.support-info > p {
color: #67686c;
font-size: 13px;
line-height: 24px;
margin-bottom: 28px;
}
/* ==================== LIST LAYOUT WITH MAP ================== */
.listing-main-sec.section-padding {
padding: 106px 0 110px 0;
}
.listing-main-sec.section-padding2 {
padding: 106px 0 110px 0;
}
.listing-main-sec-details {
float: left;
width: 100%;
}/*
.listing-main-sec-details .row {
margin-right: -15px;
margin-left: -15px;
}*/
.listing-directs {
float: left;
width: 100%;
}
.list-head {
float: left;
width: 100%;
margin-bottom: 17px;
}
.sortby {
float: left;
}
.sortby > span {
color: #67686c;
font-size: 14px;
font-weight: 500;
float: left;
}
.sortby .drop-menu {
float: left;
border:0;
margin: 0;
padding: 0;
width: 93px;
padding-left: 6px;
}
.sortby .drop-menu .select i {
right: 0;
margin-top: 4px;
}
.sortby .drop-menu .dropeddown {
padding: 0 10px;
width: 130px;
}
.sortby .drop-menu .select {
padding: 0;
font-size: 14px;
color: #242526;
font-weight: 500;
}
.opt-slect {
display: inline-block;
position: relative;
}
.opt-slect > i {
position: absolute;
top: 3px;
right: 0;
color: #242526;
font-size: 14px;
}
.opt-slect > select {
font-weight: 500;
padding-right: 26px;
border:0;
background-color: #fff;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';
}
select::-ms-expand {
display: none;
}
.view-change {
float: right;
margin-top: -4px;
}
.view-change ul {
display: inline-block;
}
.view-change ul li {
display: inline-block;
border:0;
margin-right: 4px;
}
.view-change ul li:last-child {
margin-right: 0;
}
.view-change ul li a {
padding: 0;
color: #adadb0;
font-size: 22px;
border:0;
}
.view-change ul.nav-tabs .nav-link {
border:0;
}
.view-change ul.nav-tabs {
border-bottom: 0;
}
/* ================ list-products ============= */
.list-products {
float: left;
width: 100%;
}
.card .card-body {
padding: 25px 23px 0;
}
.list-products .card {
float: left;
width: 100%;
display: block;
border:0;
}
.list-products .card .img-block {
float: left;
width: 295px;
}
.card_bod_full {
float: right;
width: 61.6%;
border:1px solid rgba(0,0,0,.125);
border-left: 0;
padding-bottom: 13px;
padding-left: 7px;
padding-right: 6px;
line-height: 1;
}
.list-products .card .card-body h3 {
margin-bottom: 6px;
}
.list-products .card .card-body p {
margin-bottom: 19px;
}
.list-products .card .card-body ul {
float: left;
width: 100%;
padding-bottom: 20px;
}
.card_bod_full h3 {
float: left;
width: 100%;
margin-bottom: 2px;
}
.card_bod_full .card-body {
border: 0;
}
.list-products .card .card-body {
padding: 31px 23px 0;
}
.card_bod_full .card-footer {
border:0;
float: left;
width: 100%;
padding: 18px 20px 18px 20px;
}
.card_bod_full .card-footer a.plf {
float: left;
padding-left: 17px;
margin-top: 6px;
}
.list-products .card .card-body ul li {
margin-right: -1px;
padding: 0px 17px 0px 14px;
line-height: 11px;
}
.list-products .card .card-body ul li:first-child {
padding-left: 0;
}
.card-footer a i {
font-size: 16px;
position: relative;
top: 2px;
padding-right: 3px;
}
.crd-links {
float: left;
margin-top: 9px;
}
.btn-default {
float: right;
font-size: 14px;
height: 51px;
line-height: 51px;
border:1px solid;
padding: 0 27px;
border-radius: 30px;
text-transform: capitalize;
position: relative;
z-index: 1;
overflow: hidden;
cursor: pointer;
background-color: initial;
}
.card_bod_full .card-footer .btn-default:hover {
color: #fff;
}
.btn-default:hover {
color: #fff;
background-color: #7e8dea;
border-color: transparent;
}
.list-products .card .img-block h5 {
top: 5px;
}
.list-products .card .img-block span {
margin-top: 2px;
}
.list-products .card {
margin-bottom: 30px;
}
.list-products .card:last-child {
margin-bottom: 0;
}
.list-products .img-block img {
height: 235px;
object-fit: cover;
}
/* =============== LIST LAYOUT WITH MAP SIDEBAR ============ */
.widget-property-search {
margin-top: 1px;
}
.widget-property-search .form_field:last-child {
margin-bottom: 0;
}
.widget-property-search .form_field:last-child a {
margin-bottom: 0;
}
.widget-property-search .form_field {
float: left;
width: 100%;
}
.sidebar.layout2 .widget-title {
letter-spacing: 1px;
}
.widget-property-search .form-control {
height: 48px;
}
.widget-property-search .form-control,
.widget-property-search .drop-menu {
border: 1px solid #e0e1e6;
margin:0;
}
.widget-property-search .form_field {
margin-bottom: 16px;
}
.widget-property-search .drop-menu {
padding: 0;
}
.widget-property-search .drop-menu .select {
height: 48px;
line-height: 48px;
padding: 0 18px;
}
.widget-property-search .banner-search .form-control {
padding-left: 18px;
}
.widget-property-search .drop-menu .select i {
margin-top: 18px;
}
.widget-property-search .form_field .btn {
width: 100%;
}
.widget-property-search .banner-search {
float: left;
width: 100%;
height: auto;
margin: 0;
}
.form_field > h4 {
color: #242526;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
margin-bottom: 15px;
margin-top: 14px;
}
.form_field input:checked {
color: red;
}
.form_field > ul {
float: left;
width: 50%;
}
.form_field > ul li {
float: left;
width: 100%;
margin-bottom: 8px;
}
.form_field > ul li:last-child {
margin-bottom: 6px;
}
.input-field > input[type="radio"],
.input-field > input[type="checkbox"] {
display: none;
}
.input-field input[type="radio"] + label span,
.input-field input[type="checkbox"] + label span {
width: 22px;
height: 22px;
display: inline-block;
position: relative;
border:1px solid #dfe0e5;
background-color: inherit;
cursor: pointer;
}
.input-field input[type="radio"] + label span:before,
.input-field input[type="checkbox"] + label span:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 13px;
height: 10px;
background-image: url(../images/arrow.png);
color: #fff;
font-size: 12px;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 0;
visibility: hidden;
}
.input-field input[type="radio"]:checked + label span:before,
.input-field input[type="checkbox"]:checked + label span:before {
opacity: 1;
visibility: visible;
}
.input-field input[type="radio"]:checked + label span,
.input-field input[type="checkbox"]:checked + label span {
border-color: transparent;
}
.input-field > label {
float: left;
cursor: pointer;
}
.input-field > label span {
float: left;
}
.input-field > label small {
float: left;
color: #67686c;
font-size: 12px;
padding-left: 13px;
margin-top: 2px;
}
/* ================ widget-featured-property ============== */
.widget-featured-property .card {
float: left;
width: 100%;
display: block;
border:0;
}
.widget-featured-property .card .card-body {
float: left;
width: 100%;
padding-top: 21px;
padding-bottom: 19px;
border-bottom: 1px solid #dfe0e5;
}
.widget-featured-property .card .card-body h3 {
margin-bottom: 2px;
}
.widget-featured-property .card .card-body p {
margin-bottom: 0;
}
.widget-featured-property .card .img-block h5 {
top: 5px;
}
.widget-featured-property .card .img-block span {
margin-top: 2px;
}
.sidebar.layout2 .ps-info > strong {
float: left;
width: 100%;
font-size: 18px;
font-weight: 600;
margin-bottom: 11px;
}
.sidebar.layout2 .ps-info {
padding-top: 3px;
}
.sidebar.layout2 .ps-info > h3 {
margin-bottom: 2px;
}
.tab-content {
float: left;
width: 100%;
}
.tab-pane {
float: left;
width: 100%;
}
.list_products {
float: left;
width: 100%;
}
.list_products .card {
margin-bottom: 30px;
border:0;
}
/* ==================== half-map-sec ================ */
.half-map-sec {
padding-bottom: 80px;
}
.header.shd {
-webkit-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-moz-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-ms-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-o-box-shadow: 0 0 10px rgba(1,1,2,0.08);
box-shadow: 0 0 10px rgba(1,1,2,0.08);
position: relative;
}
.half_map header .container {
padding: 0 35px;
width: 100%;
max-width: 100%;
}
.half-map-sec .list-products .card .img-block {
width: 33.2%;
}
.half-map-sec .list-products .card_bod_full {
width: 66.8%;
}
.half-map-sec > .container > .row > .col-xl-6 {
padding: 0;
}
.half-map-sec .listing-directs {
padding: 0 50px 0 35px;
}
.half-map-sec .list_products .row {
margin: 0;
}
.half-map-sec .list_products > .row > .col-lg-6:nth-child(odd) {
padding-left: 0;
}
.half-map-sec .list_products > .row > .col-lg-6:nth-child(even) {
padding-right: 0;
}
.half-map-sec .widget-property-search {
float: left;
width: 100%;
padding: 34px 50px 0 35px;
}
.half-map-sec .widget-property-search .form_field {
margin-bottom: 19px;
}
.half-map-sec .form_field.full {
width: 100%;
padding: 0;
}
.half-map-sec .banner-search .form_field {
padding-right: 0;
}
.half-map-sec .feat-srch .form_field {
float: right;
}
.half-map-sec .banner-search .form_field:nth-child(2) {padding-left: 0;}
.half-map-sec .form_field {
width: 25%;
padding: 0 9px;
}
.half-map-sec .widget-property-search .banner-search {padding:0;}
.feat-srch {
float: left;
width: 100%;
margin-bottom: 7px;
margin-top: -7px;
}
.feat-srch .form_field {padding-right: 4px;}
.more-feat {
float: left;
width: 25%;
margin-top: 20px;
padding-left: 0;
}
.more-feat h3 {
color: #242526;
font-size: 12px;
cursor: pointer;
}
.more-feat i {
font-size: 18px;
padding-right: 10px;
position: relative;
top: 1px;
}
.feat-srch > .form_field {
width: 73.9%;
}
.feat-srch > .form_field .btn {
border-radius: 0;
}
.half-map-sec #map-container.fullwidth-home-map {
position: fixed;
top: 0;
left: 0;
width: 50%;
bottom: 0;
z-index: 50;
height: 100%;
}
header.fix {
position: fixed;
top: 0;
left: 0;
z-index: 999;
background-color: #fff;
}
/* =================== form_sec ================ */
.form_sec {
background-color: #d8d8d9;
padding: 28px 0;
}
.form_sec .banner-search {
-webkit-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-moz-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-ms-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-o-box-shadow: 0 0 10px rgba(1,1,2,0.08);
box-shadow: 0 0 10px rgba(1,1,2,0.08);
}
.form_sec .banner-search .form-group {
padding: 0;
}
.form_sec .addres {
width: 475px;
}
.form_sec .banner-search .btn {
width: 51px;
padding: 0;
line-height: 51px;
text-align: center;
}
.form_sec .banner-search .btn i {
top: 0;
margin: 0;
line-height: 51px;
}
.form_sec .srch-btn {
width: 56px;
}
.form_sec .row {
margin: 0;
}
/* ================== property-hd-sec ============== */
.property-single-pg {
padding: 65px 0 110px 0;
}
.property-hd-sec {
float: left;
width: 100%;
}
.property-hd-sec .card {
float: left;
width: 100%;
border:0;
display: block;
}
.property-hd-sec .card .card-body ul {
border:0;
}
.property-hd-sec .card-body {
float: left;
width: 50%;
border:0;
padding: 0;
margin-top: 2px;
}
.property-hd-sec .card .card-body h3 {
font-size: 24px;
}
.property-hd-sec .card .card-body p {
font-size: 14px;
font-family: 'Poppins';
}
.property-hd-sec .card .card-body p i {
top: 0;
}
.property-hd-sec .card .card-body ul li {
line-height: 11px;
padding: 0 16px 0 14px;
}
.property-hd-sec .card .card-body ul li:first-child {
padding-left: 0;
}
.property-hd-sec .rate-info {
float: right;
width: 50%;
padding: 0;
position: static;
text-align: right;
}
.property-hd-sec .rate-info:before {
display: none;
}
.property-hd-sec .rate-info > h5 {
display: inline-block;
color: #242526;
font-size: 24px;
font-weight: 500;
margin-right: 22px;
position: relative;
top: 4px;
}
.property-hd-sec .rate-info > span {
display: inline-block;
color: #242526;
font-size: 12px;
background-color: #efeff3;
height: 25px;
border-radius: 30px;
padding: 0 14px;
line-height: 25px;
text-transform: uppercase;
}
/* ==================== property-single-page-content ================== */
.property-single-page-content {
float: left;
width: 100%;
margin-top: 25px;
}
.property-single-page-content .sidebar {
margin-top: -7px;
}
.property-single-page-content .row {
margin: 0;
}
.property-pg-left {
float: left;
width: 100%;
padding-right: 10px;
}
.property-imgs {
float: left;
width: 100%;
margin-bottom: 35px;
overflow: hidden;
}
.property-img {
float: left;
width: 100%;
}
.property-img > img {
width: 100%;
float: left;
}
.property-thumb-imgs {
float: left;
width: 100%;
border:1px solid #dfe0e5;
border-top: 0;
padding: 34px 38px 34px 37px;
}
.property-thumb-imgs .col-lg-4 {
padding: 0 8px;
}
/* ================ descp-text =============== */
.descp-text {
float: left;
width: 100%;
border:1px solid #e0e1e6;
padding: 23px 30px 20px 30px;
margin-bottom: 35px;
}
.property-pg-left h3 {
color: #242526;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 16px;
letter-spacing: 1px;
}
.descp-text > p {
color: #67686c;
font-size: 14px;
line-height: 30px;
margin-top: -2px;
}
/* ================= details-info ================ */
.details-info {
float: left;
width: 100%;
padding: 23px 30px 23px 30px;
background-color: #f5f6fa;
border:1px solid #dfe0e5;
margin-bottom: 35px;
}
.details-info ul {
float: left;
width: 100%;
margin-top: 2px;
margin-bottom: -14px;
}
.details-info ul li {
float: left;
width: 33%;
margin-bottom: 15px;
}
.details-info ul li h4 {
color: #242526;
font-size: 14px;
display: inline-block;
}
.details-info ul li span {
display: inline-block;
color: #67686c;
font-size: 14px;
padding-left: 1px;
}
/* =============== features-dv ============= */
.features-dv {
float: left;
width: 100%;
border:1px solid #e1e2e7;
padding: 23px 30px 32px 30px;
margin-bottom: 35px;
}
.features-dv > form {
float: left;
width: 100%;
}
.features-dv form ul {
float: left;
width: 100%;
margin-top: 7px;
margin-bottom: -14px;
}
.features-dv form ul li {
float: left;
width: 33.33%;
margin-bottom: 12px;
}
.features-dv form ul li input[type="checkbox"] {
display: none;
cursor: text;
}
.features-dv .input-field input[type="checkbox"] + label span {
border-color: transparent;
cursor: inherit;
}
/* ================= floorplan =================== */
.floorplan {
float: left;
width: 100%;
padding: 23px 30px 24px 30px;
border:1px solid #dfe0e5;
text-align: center;
margin-bottom: 35px;
}
.floorplan h3 {
text-align: left;
}
.floorplan > img {
max-width: 100%;
margin-top: 7px;
}
.map-dv {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
margin-bottom: 35px;
}
.map-dv #map-container {
height: 347px;
}
.map-dv h3 {
margin-bottom: 23px;
}
.nearby-locts {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
margin-bottom: 35px;
display: none;
}
.nearby-locts > h3 {
margin-bottom: 23px;
}
.property-pg-left .ps-info > h3 {
font-size: 16px;
margin: 0;
text-transform: capitalize;
letter-spacing: 0;
margin-bottom: 5px;
}
.property-pg-left .ps-info {
vertical-align: top;
padding: 20px 20px 0;
width: 100%;
}
.nearby-locts > h3 {
float: left;
width: auto;
}
.nearby-locts > span {
float: right;
color: #67686c;
font-size: 12px;
margin-top: -5px;
}
.nearby-locts > span img {
display: inline-block;
padding-left: 6px;
position: relative;
top: 4px;
}
.nearby-locts .wd-posts {
width: 65%;
}
.star-rating {
float: right;
margin-top: 35px;
}
.widget-posts .star-rating li {
display: inline-block;
float: none;
width: auto;
margin-right: -2px;
}
.star-rating li span {
display: inline-block;
width: 20px;
height: 20px;
background-color: #be2418;
text-align-last: center;
color: #ffffff;
line-height: 20px;
border-bottom: 1px solid #ca7872;
font-size: 16px;
}
.nearby-locts .widget-posts {
float: left;
width: 100%;
}
.nearby-locts .ps-img > img {
float: left;
}
.nearby-locts .widget-posts > ul li {
margin-bottom: 20px;
}
.nearby-locts .widget-posts > ul li:last-child {
margin-bottom: 0;
}
/* ================ COMMENTS SECT ================= */
.comments-dv {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
}
.comments-dv .comment-section .cm-info h3 {
letter-spacing: 0;
font-size: 14px;
text-transform: capitalize;
}
.comments-dv .comment-section .cm-info {
padding-top: 9px;
display: unset;
float: left;
width: auto;
}
.comments-dv .cm-img {
display: unset;
float: left;
}
.rating-lst {
float: left;
width: auto;
margin-top: 8px;
padding-left: 24px;
}
.rating-lst li {
display: inline-block;
float: none;
width: auto;
margin: 0;
margin-right: -2px;
}
.rating-lst li span {
display: inline-block;
color: #f3b00f;
font-size: 14px;
}
.comments-dv .cm-reply {
top: 8px;
}
.comments-dv .comment-section ul li:last-child {
margin-bottom: 0;
}
/* ====================== REV HD ===================== */
.review-hd {
float: left;
width: 100%;
padding-top: 47px;
border-top: 1px solid #e0e1e6;
margin-top: 37px;
}
.rev-hd {
float: left;
width: 100%;
}
.rev-hd > h3 {
width: auto;
float: left;
}
.rev-hd .rating-lst {
margin-top: 4px;
}
.rating-lst li span {
font-size: 18px;
}
.review-hd .post-comment-sec .col-lg-4 {
padding: 0 8px;
}
.review-hd .post-comment-sec {
margin-top: 7px;
}
.similar-listings-posts {
float: left;
width: 100%;
margin-top: 28px;
}
.similar-listings-posts .row {
margin: 0;
}
.similar-listings-posts .list-products .card .card-body p {
font-family: 'Poppins';
font-weight: 400;
}
.similar-listings-posts .card .card-body p i {
top: 1px;
}
.similar-listings-posts h3 {
margin-bottom: 23px;
}
.property-single-page-content .widget-posts .widget-title {
margin-bottom: 20px;
}
.property-single-page-content .widget-title {
letter-spacing: 1.1px;
}
.contct-info {
float: left;
width: 100%;
display: table;
margin-bottom: 6px;
margin-top: 0;
}
.contct-info img {
float: left;
display: table-cell;
}
.contct-nf {
display: table-cell;
width: 100%;
vertical-align: top;
padding-left: 23px;
}
.contct-nf > h3 {
color: #242526;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
margin-top: -3px;
margin-bottom: 1px;
}
.contct-nf > h4 {
color: #aeb4b6;
font-size: 12px;
margin-bottom: 13px;
}
.contct-nf > span {
display: inline-block;
font-size: 12px;
font-weight: 500;
}
.contct-nf > span i {
font-size: 16px;
padding-right: 7px;
}
.widget-form .post-comment-sec form button {
margin: -1px;
}
/* ================= WIDGET CALCULATOR =============== */
.widget-calculator ul {
float: left;
width: 100%;
}
.widget-calculator ul li {
float: left;
width: 100%;
border:1px solid #dfe0e5;
line-height: 48px;
height: 48px;
margin-bottom: 16px;
position: relative;
}
.widget-calculator ul li i {
font-size: 16px;
color: #67686c;
width: 49px;
text-align: center;
border-right: 1px solid #dfe0e5;
line-height: 46px;
position: absolute;
top: 0;
left: 0;
background-color: #fff;
}
.widget-calculator ul li:last-child {
margin-top: 4px;
border:0;
}
.widget-calculator ul li input {
float: left;
color: #67686c;
font-size: 12px;
padding-left: 16px;
height: 100%;
margin: 0;
width: 100%;
border:0;
padding: 0 15px 0 68px;
outline: none;
background-color: #ffffff;
}
.widget-calculator ul li input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #67686c;
}
.widget-calculator ul li input::-moz-placeholder {
/* Firefox 19+ */
color: #67686c;
}
.widget-calculator ul li input:-ms-input-placeholder {
/* IE 10+ */
color: #67686c;
}
.widget-calculator ul li input:-moz-placeholder {
/* Firefox 18- */
color: #67686c;
}
.btn2 {
float: left;
width: 100%;
color: #ffffff;
font-size: 14px;
height: 51px;
line-height: 51px;
border-radius: 30px;
text-align: center;
border:0;
cursor: pointer;
position: relative;
z-index: 1;
overflow: hidden;
}
.btn2:hover {
color: #fff;
}
.property-single-page-content .sidebar.layout2 .widget-posts {
margin-top: 0;
}
.property-single-page-content .sidebar.layout2 .widget-posts {
margin-bottom: 48px;
}
.property-single-page-content .sidebar {
padding-left: 25px;
}
.property-single-page-content .sidebar.layout2 .widget-title {
margin-top: -6px;
}
.property-single-page-content .sidebar.layout2 .widget-form .widget-title {
margin-top: 0;
}
/* ================ eror-sec-data ============== */
.no-scroll {
overflow: hidden;
}
.theme-layout {
float: left;
width: 100%;
position: relative;
height: 100vh;
}
.eror-sec-data {
float: left;
width: 100%;
text-align: center;
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.eror-sec-data > h1 {
color: #242526;
font-size: 194px;
line-height: 194px;
margin-bottom: 7px;
}
.eror-sec-data > p {
font-size: 21px;
color: #67686c;
margin-bottom: 51px;
font-family: 'Poppins';
}
.eror-sec-data > a {
width: auto;
display: inline-block;
padding: 0 27px;
float: none;
}
/* ================== SIGN IN POPUP ================== */
.wrapper {
float: left;
width: 100%;
}
.wrapper:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0;
visibility: visible;
}
.wrapper.overlay-bgg:before {
opacity: 0.90;
visibility: visible;
z-index: 999;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-moz-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
-o-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%);
width: 410px;
text-align: center;
background-color: #ffffff;
opacity: 0;
visibility: visible;
margin-top: 100px;
z-index: -1;
}
#sign-popup.active.popup,
#register-popup.active.popup {
opacity: 1;
z-index: 99999;
visibility: visible;
margin: 0;
}
.popup > h3 {
color: #242526;
font-size: 18px;
font-weight: 500;
background-color: #d8d8d9;
padding: 18px 0 18px 0;
}
.popup-form > form {
float: left;
width: 100%;
padding: 40px 0;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 22px;
margin-bottom: 20px;
}
.popup .input-field input[type="checkbox"] + label span {
width: 12px;
height: 11px;
border:1px solid #9b9ca0;
border-radius: 2px;
margin-top: 5px;
display: inline-block;
}
.popup .input-field input[type="checkbox"] + label span:before {
background-image: inherit;
border-color: transparent;
}
.popup .input-field > span {
font-size: 13px;
margin-top: 2px;
padding-left: 8px;
color: #9b9ca0;
}
.form-cp {
float: left;
width: 100%;
margin-top: 7px;
}
.popup-form .form-field {
margin-bottom: 10px;
}
.form-cp .form-field {
width: 50%;
float: left;
}
.form-cp > a {
display: inline-block;
float: right;
color: #242526;
font-size: 13px;
font-family: 'Raleway';
margin-top: 5px;
}
.fb-btn {
float: left;
width: 100%;
color: #ffffff;
font-size: 14px;
background-color: #3f5fa4;
height: 46px;
line-height: 46px;
border-radius: 30px;
margin-top: 2px;
}
.fb-btn i {
padding-right: 17px;
}
.fb-btn:hover {
color: #fff;
}
.popup-form {
float: left;
width: 100%;
padding: 0 30px 41px 30px;
}
.popup-form .btn2 {
margin-top: 9px;
cursor: pointer;
}
#register-popup .popup-form > form {
padding-bottom: 0;
border-bottom: 0;
margin-bottom: 0;
}
/* ===================== HOMEPAGE 2 ==================== */
header.pb .header .navbar-nav .nav-item .nav-link {
color: #fff;
}
header.pb .header .navbar-nav .submit-btn a {
color: #fff !important;
border-color: #fff;
}
header.pb .header .navbar-nav .submit-btn a:hover {
border-color: transparent;
}
.popular-listing.hp2 .card {
margin-bottom: 30px;
}
.popular-listing.hp2 .load-more-posts {
margin-top: 20px;
}
.popular-listing.hp2 {
padding: 105px 0;
}
.apartment-sec.section-padding {
padding: 0 0 34px 0;
}
.apartment-sec .card {
display: inline-block;
width: 100%;
border:0;
margin-top: -1px;
}
.apartment-sec .img-block {
width: 50%;
float: left;
height: 464px;
}
.apartment-sec .img-block img {
height: 100%;
object-fit: cover;
}
.apartment-sec .card_bod_full {
float: left;
width: 50%;
padding: 0 30px 0 38px;
border-bottom: 0;
position: relative;
box-sizing: border-box;
}
.apartment-sec .card_bod_full:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: rgba(0,0,0,.125);
}
.apartment-sec .rate-info {
position: static;
padding: 0;
margin-bottom: 25px;
}
.apartment-sec .rate-info h5 {
font-size: 20px;
font-weight: 600;
display: inline-block;
padding-left: 16px;
position: relative;
top: 2px;
}
.apartment-sec .rate-info span {
display: inline-block;
color: #ffffff;
font-size: 12px;
background-color: #c2c2c5;
border-radius: 30px;
height: 25px;
line-height: 25px;
padding: 0 15px;
text-transform: uppercase;
}
.apartment-sec .card .card-body h3 {
font-size: 22px;
}
.apartment-sec .card .card-body p {
font-size: 15px;
line-height: 30px;
color: #67686c;
margin-bottom: 12px;
font-family: 'Raleway';
margin-bottom: 12px;
}
.apartment-sec .card .card-body {
padding: 41px 0 0 0;
}
.apartment-sec .card .card-body ul {
padding-bottom: 19px;
margin-top: 20px;
float: left;
width: 100%;
}
.apartment-sec .crd-links {
margin-top: 0;
width: 100%;
}
.apartment-sec .card_bod_full .card-footer {
padding: 14px 0 44px 0;
}
.apartment-sec .card_bod_full .card-footer a.plf {
float: right;
}
.apartment-sec .img-block img {
height: 100%;
object-fit: cover;
}
.blog-grid-posts.mg {
margin-top: 0;
}
.testimonail-sect {
float: left;
width: 100%;
margin-top: 0;
}
.comment-carousel {
float: left;
width: 100%;
}
.comment-info {
float: left;
width: 100%;
position: relative;
outline: none;
padding: 0 15px;
}
.slick-list {
margin: 0 -15px;
}
.comment-info > p {
float: left;
width: 100%;
font-size: 15px;
line-height: 30px;
color: #67686c;
padding: 35px 50px 34px 92px;
border:1px solid #e0e1e6;
position: relative;
}
.comment-info:before {
content: '“';
position: absolute;
top: 0;
left: 27px;
font-family: 'Poppins';
font-size: 125px;
}
.comment-info .cm-info-sec {
padding: 0;
padding: 32px 0 0 63px;
border:0;
margin: 0;
}
.comment-info .cm-info {
padding-top: 9px;
}
.comment-info .cm-info h3 {
font-size: 14px;
margin-bottom: 3px;
}
.comment-info .cm-info > h4 {
font-weight: 400;
font-size: 12px;
color: #aeb4b6;
}
.testimonial-sec.section-padding {
padding: 0 0 110px 0;
}
.blog-grid.hp2.section-padding {
padding: 40px 0 76px;
}
/* ====================== PRICING SEC =================== */
.pricing-sec.section-padding {
padding: 105px 0 0 0;
}
.price {
float: left;
width: 100%;
background-color: #ffffff;
padding: 45px 0 44px 0;
border:1px solid #dfe0e5;
text-align: center;
}
.price:hover {
border-color: #6c7de7;
}
.price:hover h4 {
color: #242526;
}
.price:hover .btn-default {
color: #fff;
border-color: transparent;
}
.price-sec {
float: left;
width: 100%;
}
.price > h4 {
display: inline-block;
color: #67686c;
font-size: 12px;
background-color: #efeff3;
padding: 0 15px;
height: 25px;
line-height: 25px;
border-radius: 30px;
margin-bottom: 22px;
}
.price > h2 {
font-size: 40px;
margin-bottom: 38px;
}
.price > ul {
float: left;
width: 100%;
margin-bottom: 29px;
}
.price > ul li {
float: left;
width: 100%;
color: #67686c;
font-size: 12px;
margin-bottom: 16px;
}
.price > .btn {
float: none;
display: inline-block;
padding: 0 26px;
}
/* ====================== agents-details ==================== */
.agents-sec.section-padding {
padding: 105px 0 0 0;
}
.agents-details {
float: left;
width: 100%;
}
.agent {
float: left;
width: 100%;
cursor: pointer;
position: relative;
}
.agent_img {
float: left;
width: 100%;
position: relative;
}
.agent_img > a img {
float: left;
width: 100%;
}
.agent_info {
float: left;
width: 100%;
border: 1px solid #e0e1e6;
border-top: 0;
padding: 17px 23px 23px 23px;
}
.agent_info > h3 {
color: #242526;
font-size: 18px;
font-weight: 500;
margin-bottom: 5px;
text-transform: capitalize;
}
.agent_info > h3 a {
color: #242526;
}
.agent_info > span {
color: #aeb4b6;
font-size: 12px;
padding-bottom: 22px;
float: left;
width: 100%;
}
.agent_info > strong {
font-size: 14px;
font-weight: 500;
border-top: 1px solid #dfe0e5;
padding: 18px 0 0;
float: left;
width: 100%;
}
.agent_info > strong i {
font-size: 16px;
padding-right: 7px;
position: relative;
top: 1px;
}
.ta-left {
float: left;
}
/* =========================== PARTNER LOGOS ============================ */
.partner-sec.section-padding {
padding: 105px 0 101px 0;
}
.partner-carousel {
float: left;
width: 100%;
text-align: center;
margin-top: 30px;
}
.partner-logo {
float: left;
width: 100%;
outline: none;
}
.partner-logo > a img {
float: none;
}
.partner-logo > a img:hover {
opacity: 0.5;
}
.banner_form {
position: absolute;
bottom: 0;
left: 0;
float: left;
width: 100%;
background-color: #d8d8d9;
z-index: 9999;
padding: 28px 0;
}
.banner_form .banner-search {
margin: 0;
-webkit-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-moz-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-ms-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-o-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
box-shadow: 0 4px 10px rgba(1,2,2,0.11);
}
/* ===================== DISCOVER PROPERTIES ==================== */
.discover-propt {
background-image: url(https://via.placeholder.com/1920x491);
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding: 128px 0 140px 0;
margin-bottom: 99px;
}
.discover-text {
width: 510px;
margin: 0 auto;
text-align: center;
position: relative;
}
.discover-text > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
margin-bottom: 18px;
}
.discover-text > p {
font-family: 'Raleway';
font-size: 16px;
line-height: 30px;
margin-bottom: 25px;
color: #fff;
}
.discover-text .btn-default {
color: #fff;
border-color: transparent;
float: none;
}
.overlay-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0.81;
}
.explore-feature.hp4 {
padding: 105px 0 110px 0;
}
.popular-listing.hp4.section-padding {
padding: 105px 0 105px 0;
}
.popular-listing.hp42.section-padding {
padding-bottom: 110px;
}
/* ======================== HOMEPAGE 5 ========================= */
.banner-carousel {
float: left;
width: 100%;
height: 674px;
}
.banner-slide {
float: left;
width: 100%;
position: relative;
}
.banner-slide > img {
float: left;
width: 100%;
height: 100%;
object-fit: cover;
}
.slick-track,
.slick-list {
height: 100%;
}
.slick-prev,
.slick-next {
position: absolute;
top: 50%;
z-index: 999;
width: 51px;
height: 51px;
background-color: #ffffff;
line-height: 64px;
border-radius: 100px;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.slick-prev {
left: 27px;
}
.slick-next {
right: 27px;
}
.slick-prev:hover:before,
.slick-next:hover:before {
color: #fff;
}
.slick-prev:before {
content: '';
}
.slick-next:before {
content: '';
}
.slick-prev:before,
.slick-next:before {
font-family: lineawesome;
font-size: 18px;
opacity: 1;
}
.banner_text {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
left: 0;
width: 370px;
z-index: 99;
}
.banner_text.fr {
left: auto !important;
}
.banner_text .card_bod_full {
width: 100%;
padding: 0;
border:0;
}
.banner_text .rate-info {
padding: 17px 24px 15px 24px;
position: static;
}
.banner_text .rate-info:before {
display: none;
}
.banner_text .rate-info > h5 {
color: #ffffff;
font-size: 20px;
font-weight: 600;
float: left;
}
.banner_text a {
outline: none;
}
.banner_text .rate-info > span {
float: right;
height: 25px;
line-height: 25px;
padding: 0 15px;
border-radius: 30px;
background-color: rgba(255,255,255,0.25);
color: #fff;
text-transform: uppercase;
letter-spacing: 1.1px;
margin-top: 2px;
font-size: 12px;
}
.banner_text .card {
border:0;
display: block;
float: left;
width: 100%;
border:1px solid #dfe0e5;
border-top: 0;
}
.banner_text .card .card-body {
float: left;
width: 100%;
background-color: #fff;
border:0;
padding: 21px 23px 0;
}
.banner_text .card .card-footer {
float: left;
width: 100%;
border:0;
padding: 19px 20px 21px 20px;
}
.banner_text .card .card-footer > a {
display: inline-block;
font-size: 12px;
}
.banner_text .card .card-footer > a i {
padding-left: 6px;
font-size: 12px;
position: relative;
top: 1px;
}
.banner_text .card .card-body ul li {
padding: 0 17px;
margin-right: -4px;
}
.banner_text .card .card-body ul li:first-child {
padding-left: 0;
}
.partner-sec.hp5.section-padding {
padding: 70px 0 67px;
}
.apartment-sec.hp5.section-padding {
padding: 0 0 30px 0;
}
.popular-listing.hp5 {
padding: 69px 0 99px;
}
.testimonial-sec.hp5.section-padding {
padding-bottom: 110px;
}
/* ======================= HOMEPAGE 6 ====================== */
.main-banner-sec {
position: relative;
}
.main-banner-sec .overlay-bg {
opacity: 0.50;
}
.main-banner-sec.hp6 {
background-image: url(https://via.placeholder.com/1920x610);
background-repeat: no-repeat;
background-size: cover;
padding: 184px 0 194px 0;
}
.bannner_text {
float: left;
width: 520px;
position: relative;
}
.bannner_text > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
margin-bottom: 18px;
}
.bannner_text > p {
color: #ffffff;
font-size: 16px;
line-height: 30px;
margin-bottom: 25px;
}
.btn-default.st1 {
float: left;
color: #fff;
border-color: transparent;
}
.explore-feature.hp6.section-padding {
padding: 105px 0 0 0;
}
.blog-grid.hp6.section-padding {
padding: 105px 0 80px 0;
}
.banner.hp7 {
padding: 213px 0 143px 0;
}
.banner.hp7 .widget-property-search {
float: left;
width: 100%;
}
.banner.hp7 .widget-property-search .banner-search {
background-color: #fff;
border-radius: 0;
padding: 30px 26px;
}
.banner.hp7 .widget-property-search .form_field.full {
width: 100%;
}
.banner.hp7 .widget-property-search .form_field {
width: 25%;
padding: 0 9px;
}
.banner.hp7 .feat-srch {
margin-bottom: 0;
}
.banner.hp7 .banner-content > h1 {
font-size: 50px;
color: #fff;
line-height: 65px;
font-weight: 700;
letter-spacing: 1.2px;
margin-bottom: 59px;
}
.banner.hp7 .widget-property-search .form_field {
margin-bottom: 19px;
}
.banner.hp7 .more-feat {
padding-left: 8px;
}
.banner.hp7 .feat-srch .form_field {
margin-bottom: 0;
float: right;
}
.banner.hp7 .container {
max-width: 960px;
padding: 0;
}
.explore-feature.hp7.section-padding {
padding: 99px 0 110px 0;
}
.popular-cities.hp7.section-padding .card {
margin-top: 0;
}
.popular-cities.hp7.section-padding {
padding: 0 0px 6px 0;
margin-top: -6px;
}
/* ====================== CATEGORIES DETAILS ================= */
.categories-details {
float: left;
width: 100%;
}
.categories-info {
float: left;
width: 100%;
border:1px solid #e0e1e6;
padding: 35px 0 31px 0;
text-align: center;
position: relative;
}
.categories-info:hover {
border-color: transparent;
}
.categories-info:hover .catg-icon > i,
.categories-info:hover > h3 a {
color: #fff;
}
.catg-icon {
height: 50px;
margin-bottom: 8px;
float: left;
width: 100%;
}
.catg-icon > i {
font-size: 42px;
display: inline-block;
margin-bottom: 16px;
}
.categories-info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
float: left;
width: 100%;
}
.categories-info > h3 a {
color: #242526;
}
.categories-sec.section-padding {
padding: 105px 0 0 0;
}
.catg-icon > img {
float: none;
display: inline-block;
}
/* ================ FEATURES LIST ============== */
.features_list {
float: left;
width: 100%;
border-top: 1px solid #dfe0e5;
padding: 33px 0 0 0;
display: none;
margin: 23px 9px -11px 9px;
}
.half-map-sec .features_list {
margin-left: 0;
margin-right: 0;
}
.features_list ul {
float: left;
width: 100%;
}
.features_list ul li {
float: left;
width: 20%;
margin-bottom: 8px;
}
.banner.hp7 .more-feat h3 {
float: left;
}
.overlay-stick {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(97,99,122,0.65);
}
/* ===================== HOMEPAGE 4 ======================= */
.map-sec {
background-color: #f7f7f8;
padding: 65px 0 70px 0;
}
.map-details {
float: left;
width: 100%;
}
.map-details #map {
width: 100%;
height: 354px;
}
/* ==================== map-city-links ================== */
.map-city-links {
float: left;
width: 100%;
margin-top: 0;
}
.map-city-links ul {
float: left;
width: 100%;
}
.map-city-links ul li {
float: left;
width: 50%;
margin-bottom: 15px;
}
.map-city-links ul li a {
display: inline-block;
color: #242526;
font-size: 14px;
font-weight: 500;
}
.map-city-links ul li a:hover {
padding-left: 8px;
}
.form-banner .banner_form {
position: static;
}
.vis-hid {display: none;}
.success-message{
display: none;
}
.error-message{
display: none;
}
label.error {
position: absolute;
top: -41px;
left: 0;
width: 100%;
display: none !important;
}
.contact_form > form .form-field {
position: relative;
}
.contact_form > form .form-field input,
.contact_form > form .form-field textarea {
margin: 0;
}
.error {
outline:1px solid #6a7be7;
}
.error {
color: #fff;
font-size: 14px;
margin-bottom: 20px;
padding: 10px;
width: 100%;
}
.form-group {
float: left;
width: 100%;
padding: 20px 0;
}
.success-message,
.error-message,
.missing-message {
color: #fff;
font-size: 14px;
padding: 15px;
display: none;
margin-bottom: 20px;
}
.form-fieldss {
float: left;
width: 100%;
}
.no-pt {
padding: 0;
margin: 0;
}
.language-selector {
float: right;
width: 100%;
}
.language-selector .drop-menu {
padding: 0;
margin: 0;
background: inherit;
border:0;
float: right;
}
.language-selector .drop-menu .select {
color: #d6d8e0;
float: right;
width: 130px;
padding: 0;
height: auto;
display: inline-block;
position: relative;
}
.language-selector .drop-menu .select span img {
padding-right: 10px;
}
.language-selector .drop-menu .select span,
.language-selector .drop-menu .select i {
color: #d6d8e0 !important;
}
.language-selector .drop-menu .select i {
top: 15px;
}
.language-selector .drop-menu .dropeddown {
width: 150px;
padding: 0;
border:0;
left: auto;
right: 0;
background-color: #070f43;
top: 95%;
}
.language-selector .drop-menu .dropeddown li {
padding: 0 20px;
border-bottom: 1px solid #2f376c;
color: #fff;
}
.language-selector .drop-menu .dropeddown li img {
padding-right: 10px;
}
.language-selector .drop-menu .dropeddown li a {
color: #242526;
}
/* ============================ LANDING PAGE =========================== */
.landing-header {
float: left;
width: 100%;
position: absolute;
top:0;
left: 0;
padding: 50px 0;
z-index: 99;
}
.landing-links {
float: left;
margin-top: 13px;
}
.landing-links li {
display: inline-block;
margin-right: 34px;
}
.landing-links li:last-child {
margin-right: 0;
}
.landing-links li a {
display: inline-block;
color: #ffffff;
font-family: 'poppins';
font-size: 14px;
}
.landing-banner {
background-image: url(https://via.placeholder.com/1920x950);
padding: 330px 0 230px 0;
background-size: cover;
background-repeat: no-repeat;
}
.landing-banner:before {
content: '';
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0.85;
}
.ld-banner-details {
float: left;
width: 100%;
position: relative;
}
.ld-logo {
float: left;
width: 100%;
margin: 7px 0 7px 0;
}
.btn-default.white {
display: inline-block;
color: #6778e2;
background-color: #fff;
height: 65px;
line-height: 65px;
padding: 0 38px;
border-radius: 50px;
margin-top: 50px;
float: none;
border: 0;
margin-bottom: 1px;
}
.btn-default.lnd {
color: #fff;
border-color: #fff;
padding: 0 38px;
margin-top: -3px;
}
.btn-default.lnd:hover {
border-color: transparent;
}
/* ========================== DEMO SECTION =========================== */
.demo-section {
background-color: #f5f5f9;
padding: 90px 0;
}
.demo-sec-title {
float: left;
width: 100%;
margin-bottom: 60px;
margin-top: -8px;
}
.demo-sec-title > h2 {
color: #242526;
font-size: 32px;
margin-bottom: 10px;
font-weight: 400;
}
.demo-sec-title > p {
color: #67686c;
font-size: 16px;
}
.demo-pages {
float: left;
width: 100%;
margin-bottom: -51px;
}
.masonary {
float: left;
width: 100%;
}
.demo-page {
float: left;
width: 100%;
text-align: center;
margin-bottom: 54px;
}
.mg-t20 {
margin-top: 20px;
}
.demo-page > h3 {
color: #242526;
font-size: 18px;
float: left;
width: 100%;
}
.demo-page > h3 a {
color: #242526;
display: inline-block;
padding: 15px 0 0 0;
}
.page-img {
float: left;
width: 100%;
}
.pg-op {
float: left;
width: 100%;
}
.page-img > img {
width: 100%;
box-shadow: 0 0 15px rgba(33,57,107,0.12);
}
.landing-footer {
background-color: #303e94;
padding: 55px 0;
text-align: center;
}
.landing-footer .btn-default {
float: none;
margin: 0;
font-weight: 500;
font-size: 14px;
box-shadow: 0 0 10px rgba(0,0,0,0.89);
padding: 0 33px;
margin-bottom: -5px;
}
.property-main-img {
float: left;
width: 100%;
}
.slick-slide {
outline: none;
cursor: pointer;
} | public/all-assets/front-end/css/style.css | @charset "UTF-8";
/*===================== TABLE OF CONTENT =======================
1. 8 DIFFERENT HOMEPAGES
2. LINE AWESOME FONTS
3. RESET CSS
4. CROSS BROWSER COMPATABILITY
5. ADVANCED SEARCH
7. DROPDOWN MENUS
8. RESPONSIVE HEADER
9. SLICK SLIDER (BANNER)
10. LISTING PAGES
11. BLOG PAGES
12. CLIENT'S FEEDBACK
13. PROPERTY PAGE
14. ERROR 404
=============================================================*/
@import url(../icons/font-awesome/css/font-awesome.min.css);
@import url(../icons/simple-line-icons/css/simple-line-icons.css);
@import url(../icons/simple-line-icons/css/line-awesome.min.css);
@import url(bootstrap.min.css);
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-regular.woff2') format('woff2'),
url('../icons/poppins/poppins-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-bold.woff2') format('woff2'),
url('../icons/poppins/poppins-bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-medium.woff2') format('woff2'),
url('../icons/poppins/poppins-medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Poppins';
src: url('../icons/poppins/poppins-semibold.woff2') format('woff2'),
url('../icons/poppins/poppins-semibold.woff') format('woff');
font-weight: 600;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-bold.woff2') format('woff2'),
url('../icons/raleway/raleway-bold.woff') format('woff');
font-weight: 700;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-medium.woff2') format('woff2'),
url('../icons/raleway/raleway-medium.woff') format('woff');
font-weight: 500;
font-style: normal;
}
@font-face {
font-family: 'Raleway';
src: url('../icons/raleway/raleway-regular.woff2') format('woff2'),
url('../icons/raleway/raleway-regular.woff') format('woff');
font-weight: 400;
font-style: normal;
}
/* ==================================================================================
Reset 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
font-family: "Poppins";
color: #aeb4b6;
font-size: 14px;
font-weight: 400;
overflow-x: hidden;
}
body.pg {
line-height: 1;
}
a:focus,
a:hover {
text-decoration: none; }
a.link:focus,
a.link:hover {
color: #070f43; }
ul {
padding: 0;
margin: 0px; }
li {
list-style: none; }
h1,
h2,
h3,
h4,
h5,
h6 {
color: #242526;
font-weight: 500; }
p {
font-family: "Raleway", sans-serif;
font-size: 13px;
line-height: 24px;
}
section {
float: left;
width: 100%;
position: relative;
}
footer {
float: left;
width: 100%;
}
select:focus {
outline: none;
-webkit-box-shadow: none;
box-shadow: none; }
/* ==================================================================================
CROSS BROWSER COMPATABILITY
===================================================================================== */
a,
.dropdown-item,
.drop-menu,
.drop-menu .select i,
.wrapper:before,
.popup,
.price,
.price > h4,
.agent_info > h3,
.slick-prev,
.slick-next,
.categories-info,
.catg-icon > i,
.categories-info > h3,
.overlay-stick,
.map-city-links ul li a,
.header .navbar-nav .nav-item .nav-link,
.drop-menu .select .currency,
.drop-menu .dropeddown li,
.card .img-block:before,
.card .img-block:after,
.popular-cities .card:before,
.popular-cities .card:after,
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after,
.card .img-block .overlay,
.srch-btn .overlay,
.card .card-body h3,
.explore-feature .card .card-body i,
.popular-cities .card .overlay,
.popular-cities .card .card-body i,
.map-box h4 a,
.infoBox-close,
.map-box-icon,
.marker-card,
#geoLocation,
#mapnav-buttons a,
#scrollEnabling,
#streetView,
.bottom-list ul li a,
.footer-social a,
.alert-success,
.post-nfo li,
.post-nfo li a,
.post_info > h3 a,
.blog-img:before,
.agent_img:before,
.widget-catgs ul li a,
.widget-catgs ul li a span,
.ps-info > h3 a,
.widget-tags > ul li a,
.btn1,
.blog-single-post:hover .view-post,
.agent:hover .view-post,
.socio-links li a,
.social_links li a,
.btn-default,
.card .card-footer a .la-heart-o,
.partner-logo > a img,
.signin-btn b:before,
.model-item .title,
.h-page-card .title a,
.btn,
.language-selector .drop-menu .dropeddown li {
-webkit-transition: all 0.4s linear;
-moz-transition: all 0.4s linear;
-ms-transition: all 0.4s linear;
-o-transition: all 0.4s linear;
transition: all 0.4s linear;
}
.p-0 {
padding: 0px; }
.section-padding {
padding: 65px 0px;
}
.section-heading {
text-align: center;
float: left;
width: 100%;
}
.section-heading span {
font-size: 14px;
color: #aeb4b6;
float: left;
width: 100%;
margin-bottom: 2px;
}
.section-heading h3 {
font-size: 32px;
font-weight: 400;
float: left;
width: 100%;
margin-top: -4px;
}
.card {
border-radius: 0px;
position: relative;
}
.ext-link {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.card-body {
padding: 20px; }
.card-footer {
padding: 20px; }
button:focus {
outline: 0px; }
@media (min-width: 1200px) {
.container {
max-width: 1170px; padding: 0;} }
::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #7e7f82; }
::-moz-placeholder {
/* Firefox 19+ */
color: #7e7f82; }
:-ms-input-placeholder {
/* IE 10+ */
color: #7e7f82; }
:-moz-placeholder {
/* Firefox 18- */
color: #7e7f82; }
header {
float: left;
width: 100%;
}
header.pb {
position: absolute;
top: 0;
left: 0;
z-index: 99;
}
.top-header {
background: #070f43;
height: 53px;
line-height: 55px;
border-bottom: 1px solid #0f1649;
}
.header-address a {
display: inline-block;
color: #d6d8e0;
}
.header {
height: 105px;
}
.header-address a i {
font-size: 18px;
margin-right: 9px;
position: relative;
top: 1px;
}
.header-address a span {
font-size: 12px;
margin-right: 29px;
font-weight: 500;
position: relative;
}
.header-social {
text-align: right;
position: relative;
top: -1px;
}
.header-social a {
display: inline-block;
color: #d6d8e0;
font-size: 13px;
padding: 0 9px;
}
.header-social a:last-child {
padding-right: 0px; }
.close-menu {
color: #000;
font-size: 36px;
position: absolute;
top: 10px;
right: 20px;
display: none;
}
.header .navbar-brand {
margin-right: 69px;
margin-top: 6px;
}
.header .navbar-brand img {
max-width: 105px; }
.header .dropdown-toggle::after {
font-family: FontAwesome;
content: "\f107";
border: 0px;
vertical-align: top;
font-size: 14px;
position: relative;
top: 3px;
left: 1px;
}
.menu-button {
width: 30px;
background-color: inherit;
border:0;
cursor: pointer;
margin-top: 10px;
display: none;
}
.menu-button span {
width: 100%;
height: 3px;
background-color: #111;
margin-bottom: 6px;
display: block;
}
header.pb .menu-button span {
background-color: #fff;
}
.header .navbar {
padding: 27px 0px; }
.header .navbar-nav .nav-item {
margin-right: 27px;
}
.header .navbar-nav .nav-item .nav-link {
color: #161616;
font-size: 14px;
position: relative;
}
.sbmt-btn:hover {
background-color: rgba(106, 123, 231, 0.8);
}
.sbmt-btn {
position: relative;
overflow: hidden;
}
.sbmt-btn:hover span,
.sbmt-btn:hover i {
color: #fff;
}
.header .navbar-nav .nav-item .dropdown-menu {
border-radius: 0px;
border: 0px;
padding: 0 20px;
border-top: 1px solid #d5d4d9;
overflow: hidden;
position: absolute;
top: 187.7%;
left: 0;
margin: 0;
}
.header .navbar-nav .nav-item .dropdown-menu:before {
content: '';
position: absolute;
top: -3px;
left: 0;
width: 100%;
height: 1px;
-webkit-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-moz-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-ms-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
-o-box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
box-shadow: 3px 2px 13px rgba(0,0,0,0.2);
}
.dropdown-item:last-child {
border-bottom: 0;
}
.dropdown-item {
padding: 15px 0 14px 0;
border-bottom: 1px solid #dfe0e5;
text-transform: capitalize;
line-height: 1;
}
.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
font-size: 14px; }
.header .navbar-nav .signin-btn {
margin-right: 25px !important;
margin-top: 3px; }
.header .navbar-nav .signin-btn a {
margin-top: 5px; }
.header .navbar-nav .signin-btn a i {
font-size: 18px;
margin-right: 7px;
position: relative;
top: 3px; }
.header .nav-item.signin-btn .nav-link {
margin-top: 3px;
}
.header .navbar-nav .nav-item .nav-link.sbmt-btn {
position: relative;
top: -1px;
}
.header .navbar-nav .nav-item.signin-btn {
margin-right: 25px;
}
.header .navbar-nav .submit-btn {
margin-right: 0px;
margin-top: 0; }
.header .navbar-nav .submit-btn a {
border: 1px solid;
border-radius: 30px;
padding: 0 25px;
height: 51px;
line-height: 48px;
color: #6a7be7 !important; }
.header .navbar-nav .submit-btn a i {
font-size: 16px;
margin-right: 10px;
position: relative;
top: 2px; }
.banner {
padding: 200px 0px;
background: url("https://via.placeholder.com/1920x674");
background-size: cover;
background-position: center;
min-height: 674px;
position: relative;
z-index: 1; }
.banner::after {
content: '';
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(7, 15, 67, 0.8);
z-index: -1; }
.banner .container {
padding: 0 15px;
}
.banner-content h1 {
font-size: 44px;
color: #fff;
text-align: center;
font-weight: 400;
margin-bottom: 33px;
margin-top: 49px; }
.banner.hp2 {
padding: 230px 0 150px 0;
}
.banner-search {
background: #fff;
border-radius: 50px;
padding: 0px 7px 0px 10px;
height: 65px;
}
.banner-search .form-group {
margin: 0px;
padding: 0;
}
.banner-search .form-control {
font-size: 14px;
font-weight: 500;
height: 46px;
border: 0px;
margin: 9px 0px 10px 0px;
border-radius: 0px;
padding-left: 25px;
}
.half-map-sec .banner-search .form-control {
font-size: 12px;
}
.half-map-sec .drop-menu .select {
font-size: 12px;
}
.half-map-sec .features_list ul li {width: 25%;}
.half-map-sec .drop-menu .dropeddown li {
font-size: 12px;
}
.half-map-sec .features_list {margin-top: -50px;margin-bottom: 50px;}
.banner-search .form-control:hover, .banner-search .form-control:focus, .banner-search .form-control.active {
-webkit-box-shadow: none !important;
box-shadow: none !important; }
.banner-search .btn {
border-radius: 50px;
margin: 7px 0px;
padding: 0 36px;
height: 51px;
line-height: 51px;
float: right;
border:0;
font-size: 14px;
color: #fff;
box-shadow: none;
position: relative;
overflow: hidden;
z-index: 99;
}
.banner-search .btn:hover {
background-color: rgba(106, 123, 231, 0.8);
}
.banner-search .btn i {
margin-right: 8px;
font-size: 18px;
position: relative;
top: 2px;
}
.signin-btn b {
position: relative;
}
.signin-btn b:hover:before {
opacity: 1;
visibility: visible;
left: 0;
width: 100%;
}
.signin-btn b:before {
content: '';
position: absolute;
bottom: -5px;
left: 50%;
width: 0;
height: 2px;
opacity: 0;
visibility: hidden;
}
.drop-menu {
background: #fff;
width: 100%;
display: inline-block;
position: relative;
font-size: 14px;
height: 100%;
text-align: left;
margin: 7px 0;
border-left: 1px solid #e0e1e6;
/*padding-left: 10px; */
padding: 5px 10px 5px 10px;
}
.drop-menu .select {
cursor: pointer;
display: block;
padding: 10px;
color: #7e7f82;
font-weight: 500;
padding-left: 20px;
font-size: 14px;
text-transform: capitalize;
}
.drop-menu .select i {
font-size: 14px;
margin-top: 5px;
cursor: pointer;
float: right;
position: relative;
right: 10px;
}
.form_field {
float: left;
}
.addres {
width: 376px;
}
.tpmax {
width: 207px;
}
.srch-btn {
float: left;
width: 156px;
position: relative;
}
.drop-menu .select .currency {
font-size: 13px;
cursor: pointer;
float: right; }
.drop-menu.active {
border-radius: 5px 5px 0 0; }
.drop-menu.active:hover, .drop-menu.active:focus {
border-radius: 5px 5px 0 0; }
.drop-menu.active .select {
-webkit-box-shadow: none !important;
box-shadow: none !important;
outline: none; }
.drop-menu.active .select i {
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg); }
.drop-menu:focus {
-webkit-box-shadow: none;
box-shadow: none;
outline: none; }
.drop-menu .dropeddown {
position: absolute;
width: 100%;
left: 0;
margin-top: 1px;
overflow: hidden;
display: none;
max-height: 144px;
overflow-y: auto;
z-index: 9999;
background: #fff;
padding: 0;
list-style: none;
padding: 0 30px;
border:1px solid #d3d3db;
top: 112%;
}
.drop-menu .dropeddown li {
padding: 15px 0 14px 0;
cursor: pointer;
color: #242526;
border-bottom: 1px solid #e0dfe5;
}
.drop-menu.active .select > span,
.drop-menu.active .select i,
.drop-menu .dropeddown li:hover {
color: #7686e6;
}
.drop-menu .dropeddown li:last-child {
border-bottom: 0;
}
.intro.section-padding {
padding: 110px 0px 6px; }
.intro .container {
padding: 0 15px;
}
.intro .row {
margin: 0;
}
.intro-content h3 {
font-size: 32px;
margin-top: 31px;
margin-bottom: 20px;
font-weight: 400; }
.intro-content > a {
margin-top: 30px;
}
.intro-content p {
font-family: "Raleway", sans-serif;
font-size: 16px;
color: #67686c;
line-height: 30px;
}
.view-btn {
margin-top: 14px;
border-radius: 30px;
display: inline-block;
border: 1px solid;
font-size: 14px;
height: 51px;
line-height: 49px;
padding: 0 26px 0 27px;
position: relative;
overflow: hidden;
z-index: 2;
}
.view-btn i {
margin-right: 5px;
font-size: 16px;
position: relative;
top: 2px;
padding-right: 7px;
}
.view-btn:hover, .view-btn:focus, .view-btn.active {
background: rgba(106, 123, 231, 0.8);
color: #fff;
border-color: transparent;
box-shadow: inherit;
}
.intro-img img {
width: 100%;
max-width: inherit;
}
.intro-thumb-row {
background: #fff;
padding: 30px 0px 30px;
z-index: 9999;
position: relative;
display: inline-block;
top: -69px;
}
.intro-thumb-row img {
vertical-align: middle;
border-style: none;
}
.intro-thumb:last-child {
margin-right: 30px;
}
.intro-thumb {
border: 1px solid #e0e1e6;
display: inline-block;
margin-right: 27px;
width: 270px;
}
.intro-img {padding-left: 15px;}
.intro-thumb h6 {
display: inline-block;
/*padding: 10px 15px;*/
padding-left: 15px;
position: relative;
top: 2px;
min-width: 150px;
font-size: 14px; }
.popular-listing .card {
margin-top: 0;
border:0;
cursor: pointer;
}
.popular-listing.hp5 .card {
margin-bottom: 30px;
}
.section-heading {
margin-bottom: 37px;
}
.popular-listing .card {
border:0;
cursor: pointer;
}
.popular-listing.section-padding {
padding: 1px 0 40px 0;
}
.card .img-block {
position: relative;
z-index: 1;
float: left;
width: 100%;
}
.card .img-block::after {
position: absolute;
content: '';
left: 0;
right: 0;
bottom: 0;
top: 0;
background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.5)));
background: transparent -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent -o-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
z-index: 0; }
.card .img-block h5,
.map-box .rate-info > h5 {
margin: 0px;
color: #fff;
font-size: 20px;
font-weight: 600;
float: left;
/*padding-left: 24px;*/
position: relative;
top: 5px;
}
.card .img-block span,
.map-box .rate-info > span {
color: #fff;
text-transform: uppercase;
font-size: 12px;
background: rgba(145, 147, 152, 0.7);
border-radius: 50px;
padding: 5px 13px;
float: right;
/*margin-right: 24px;*/
margin-top: 2px;
}
.card .img-block:before,
.card .img-block:after,
.popular-cities .card:before,
.popular-cities .card:after,
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
visibility: hidden;
}
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
background-color: rgba(48,62,148,0.50);
}
.banner-search .btn:before,
.banner-search .btn:after,
.intro-content a:before,
.intro-content a:after,
.sbmt-btn:before,
.sbmt-btn:after,
.btn2:before,
.btn2:after,
.btn-default:before,
.btn-default:after {
z-index: -1;
}
.intro-content a:after {
right: 0;
left: auto;
}
.banner-search .btn:after,
.sbmt-btn:after,
.btn2:after,
.btn-default:after {
right: 0;
left: auto;
}
.card .img-block:after {
right: 0;
left: auto;
}
.popular-cities .card:hover:after {
left: auto;
right: 0;
}
.banner-search .btn:hover:before,
.banner-search .btn:hover:after,
.intro-content a:hover:before,
.intro-content a:hover:after,
.sbmt-btn:hover:before,
.sbmt-btn:hover:after,
.btn2:hover:before,
.btn2:hover:after,
.btn-default:hover:before,
.btn-default:hover:after {
opacity: 1;
visibility: visible;
width: 0;
}
.card:hover .img-block:before,
.card:hover .img-block:after,
.popular-cities .card:hover:before,
.popular-cities .card:hover:after {
opacity: 1;
visibility: visible;
width: 0;
}
.card .img-block .overlay,
.srch-btn .overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
}
.card .card-body {
padding: 21px 23px 0;
border-left: 1px solid #dfe0e5;
border-right: 1px solid #dfe0e5;
}
.card .card-body h3 {
font-size: 18px;
margin-bottom: 2px;
color: #242526;
}
.card .card-body h3 a {
color: #242526;
}
.card .card-body p {
font-size: 12px;
color: #aeb4b6;
margin-bottom: 16px;
float: left;
width: 100%;
}
.card .card-body p i {
margin-right: 4px;
font-size: 14px;
margin-left: 0;
position: relative;
top: 2px;
}
.card .card-body ul {
border-bottom: 1px solid #ddd;
padding-bottom: 16px; }
.card .card-body ul li {
display: inline-block;
font-size: 12px;
color: #242526;
line-height: 11px;
border-right: 1px solid #ddd;
padding: 0px 17px 0px 17px;
margin-right: -3px;
}
.card .card-body ul li:first-child {
padding-left: 0px; }
.card .card-body ul li:last-child {
border-right: 0px; }
.card .card-footer {
background: transparent;
border-top: 0px;
border-right: 1px solid #dfe0e5;
border-bottom: 1px solid #dfe0e5;
border-left: 1px solid #dfe0e5;
padding: 14px 20px 17px 20px;
}
.card .card-footer a {
color: #aeb4b6;
font-size: 12px;
position: relative;
}
.card .card-footer a.pull-right {
margin-top: 6px;
}
.card .card-footer a .la-heart-o {
background: #f3f4f7;
color: #242526;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
display: inline-block;
font-size: 16px;
border-radius: 50px;
position: relative;
top: 1px;
padding-left: 3px;
z-index: 99;
}
.card .card-footer a .la-heart-o:hover {
color: #fff;
}
.card .card-footer a .fa-calendar {
margin-right: 7px;
font-size: 14px; }
.card:hover .img-block .overlay, .popular-listing .card:focus .img-block .overlay {
opacity: 1; }
.img-block img {
width: 100%;
float: left;
}
.card .card-footer a.pull-right i {
padding-right: 3px;
}
.explore-feature .card {
text-align: center;
border-color: #e0e1e6;
}
.explore-feature .card:hover .card-body i {
-webkit-transform: scale(0.9);
-moz-transform: scale(0.9);
-ms-transform: scale(0.9);
-o-transform: scale(0.9);
transform: scale(0.9);
}
.explore-feature .card .card-body {
padding: 37px 15px 32px 15px;
border:0;
}
.explore-feature .card .card-body i {
font-size: 36px;
color: #fff;
border-radius: 100%;
height: 89px;
width: 89px;
line-height: 89px;
display: inline-block;
}
.explore-feature .card .card-body h3 {
font-size: 18px;
margin-top: 27px;
margin-bottom: 9px;
}
.explore-feature .card .card-body p {
font-size: 13px;
line-height: 22px;
margin-top: 0;
margin-bottom: 0px;
color: #67686c;
line-height: 24px;
padding: 0 10px;
}
.popular-cities.section-padding {
padding: 40px 0px 110px;
}
.hp_4 .discover-propt {
margin-bottom: 135px;
}
.popular-cities.hp3.section-padding {
padding: 0 0 0 0;
margin-top: -30px;
}
.popular-cities.hp3 .card {
margin-top: 0;
}
.card.mgb-30 {
margin-bottom: 30px;
}
.popular-cities .card:hover .overlay-stick {
opacity: 0;
}
.popular-cities.hp3 .card .img-fluid {
float: left;
}
.popular-cities.hp3 .card .card-body h4 {
font-size: 16px;
font-weight: 600;
}
.popular-cities .card {
position: relative;
margin-top: 0;
border:0;
}
.popular-cities .card .overlay {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background: rgba(106, 123, 231, 0.8);
opacity: 0;
}
.popular-cities .card::after {
position: absolute;
content: '';
left: 0;
right: 0;
bottom: 0;
top: 0;
background: transparent -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.15)), to(rgba(0, 0, 0, 0.5)));
background: transparent -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent -o-linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
background: transparent linear-gradient(rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.5));
z-index: 0;
}
.popular-cities .card .card-body {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
padding: 0 24px 22px 24px;
}
.rate-info {
float: left;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
padding: 40px 23px 20px 23px;
z-index: 2;
}
.popular-cities .card .card-body:before,
.rate-info:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(255,255,255,0.02),rgba(44,44,47,47));
z-index: -1;
}
.popular-cities .card .card-body h4 {
color: #fff;
margin-bottom: 0;
font-size: 20px;
font-weight: 600;
float: left;
}
.popular-cities.hp3 .card .card-body i {
bottom: 25px;
}
.popular-cities.hp3 .card .card-body {padding-bottom: 30px;}
.popular-cities .card .card-body p {
color: #fff;
margin: 0px;
display: inline-block;
font-size: 12px;
text-transform: uppercase;
font-family: "Poppins", sans-serif;
}
.popular-cities .card .card-body {
border: 0;
}
.popular-cities .card .card-body i {
position: absolute;
right: 24px;
bottom: 31px;
border: 1px solid #e0e1e6;
padding: 12px 12px;
color: #aeb4b6;
border-radius: 100%;
height: 40px;
width: 40px;
font-size: 14px;
text-align: center;
}
.popular-cities .card:hover .overlay, .popular-cities .card:focus .overlay {
opacity: 1;
}
.popular-cities .card:hover i, .popular-cities .card:focus i {
background: #fff;
color: #aeb4b6;
border-color: transparent;
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
*:after,
*:before {
-webkit-box-sizing: border-box;
box-sizing: border-box; }
.infoBox {
border-radius: 4px; }
.map-box {
background-color: #fff;
margin-bottom: 5px;
border-radius: 4px;
-webkit-box-shadow: 0 0 40px 0 rgba(3, 3, 3, 0.15);
box-shadow: 0 0 40px 0 rgba(3, 3, 3, 0.15);
position: relative; }
.map-box .listing-img-container img {
width: 100%;
border-radius: 4px 4px 0 0;
position: relative;
}
.map-box .rate-info {
position: absolute;
bottom: 84px;
left: 0;
padding-bottom: 20px;
}
.map-box .rate-info > h5 {
top: 4px;
}
.map-box h4 {
margin: 0;
padding: 0; }
.map-box h4 a {
padding: 0 0 2px;
font-size: 17px;
line-height: 25px;
display: inline-block; }
.listing-img-container {
position: relative;
height: 100%;
display: block; }
.map-box h4 a:hover {
color: #66676b; }
.map-box p {
padding: 0;
line-height: 25px;
margin: 2px 0 0;
font-size: 14px; }
.map-box ul.listing-details {
padding: 0;
font-size: 14px;
display: none; }
.map-box .listing-title {
padding: 16px 22px; }
.map-box .listing-img-content {
padding: 18px 22px; }
.map-box .listing-img-content span {
font-size: 21px; }
.map-box .listing-img-content .listing-price i {
font-size: 15px;
margin: -7px 0 0; }
.infoBox > img {
position: absolute !important;
right: 0;
top: 0; }
.map-box .listing-img-container::before {
content: "";
display: none;
position: absolute;
height: 100%;
width: 100%;
background: -webkit-gradient(linear, left bottom, left top, from(rgba(35, 35, 37, 0.85)), color-stop(35%, rgba(35, 35, 37, 0.4)), color-stop(60%, rgba(22, 22, 23, 0)), to(transparent));
background: -webkit-linear-gradient(bottom, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background: -o-linear-gradient(bottom, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background: linear-gradient(to top, rgba(35, 35, 37, 0.85) 0%, rgba(35, 35, 37, 0.4) 35%, rgba(22, 22, 23, 0) 60%, transparent 100%);
background-color: rgba(35, 35, 37, 0.2); }
.map-box .listing-item-content {
position: static;
width: 100%;
margin-top: -3px;
background-color: #fff;
padding: 15px 23px 20px 23px;
border-left: 1px solid #e0e1e5;
border-right: 1px solid #e0e1e5;
border-bottom: 1px solid #e0e1e5;
}
.map-box .listing-item-content h3 {
color: #242526;
font-size: 16px;
padding: 0 0 2px;
font-weight: 500;
margin: 0;
line-height: 27px;
margin-bottom: 5px;
}
.map-box .listing-item-content span {
font-size: 12px;
font-weight: 400;
display: inline-block;
color: #aeb4b6;
}
.map-box .listing-item-content span i {
padding-right: 5px;
}
.infoBox-close {
position: absolute;
top: 10px;
right: 10px;
display: inline-block;
z-index: 999;
text-align: center;
line-height: 29px;
cursor: pointer;
font-size: 15px;
font-weight: 500;
height: 29px;
width: 29px;
background-color: #fff;
color: #333;
font-family: "FontAwesome";
border-radius: 50%;
-webkit-text-stroke: 1px #fff;
}
.infoBox-close:hover {
color: #fff;
background-color: #66676b;
-webkit-text-stroke: 1px #66676b; }
.map-box-icon {
height: 38px;
width: 38px;
position: absolute;
bottom: 0;
right: 0;
background-color: #3685cf;
display: block;
color: #fff;
font-size: 12px;
z-index: 101;
text-align: center;
-webkit-transform: translateX(50%);
-ms-transform: translateX(50%);
transform: translateX(50%);
opacity: 0;
visibility: hidden; }
.map-box-icon:before {
content: "\f064";
font-family: "FontAwesome";
position: relative;
top: 7px;
display: block; }
.map-box-image:hover .map-box-icon {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-ms-transform: translateX(0);
transform: translateX(0); }
.map-box-image {
position: relative;
overflow: hidden;
display: block; }
/*.infoBox {
-webkit-animation: fadeIn 0.9s;
animation: fadeIn 0.9s; }
*/
@-webkit-keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
@keyframes fadeIn {
from {
opacity: 0; }
to {
opacity: 1; } }
.infoBox .star-rating {
font-size: 16px;
margin-top: 1px; }
.infoBox .star-rating span {
margin-right: 3px; }
.infoBox .rating-counter {
position: relative;
top: -1px; }
.infoBox:after {
content: "";
position: absolute;
bottom: -5px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 12px solid transparent;
border-right: 12px solid transparent;
border-top: 12px solid #fff; }
#map {
height: 100%;
width: 100%;
margin: 0;
z-index: 990; }
#map-container {
position: relative;
top: 0;
left: 0;
height: 520px;
width: 100%;
z-index: 0;
margin-bottom: 60px; }
.gmnoprint {
margin: 10px; }
#map-container.fullwidth-home-map {
height: 600px;
margin-bottom: 0; }
#map-container.fullwidth-home-map.hp3 {
height: 490px;
}
#map-container.fullwidth-home-map .main-search-inner {
position: absolute;
display: block;
bottom: 60px;
top: auto;
-webkit-transform: none;
-ms-transform: none;
transform: none;
padding-bottom: 0;
z-index: 9999;
margin-top: 0;
margin-left: auto;
margin-right: auto;
width: 100%; }
#map-container.fullwidth-home-map .main-search-input {
margin-top: 0; }
.cluster img {
display: none; }
.cluster-visible {
text-align: center;
font-size: 15px !important;
color: #fff !important;
font-weight: 500;
border-radius: 50%;
width: 50px !important;
height: 50px !important;
line-height: 50px !important;
}
.cluster-visible:before {
border: 7px solid;
opacity: 0.2;
-webkit-box-shadow: inset 0 0 0 4px #6a7be7;
box-shadow: inset 0 0 0 4px #6a7be7;
content: '';
position: absolute;
border-radius: 50%;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-animation: cluster-animation 2.5s infinite;
animation: cluster-animation 2.5s infinite; }
@-webkit-keyframes cluster-animation {
0%,
100% {
-webkit-transform: scale(1.3) rotate(0deg);
transform: scale(1.3) rotate(0deg); }
50% {
-webkit-transform: scale(1.5) rotate(90deg);
transform: scale(1.5) rotate(90deg); } }
@keyframes cluster-animation {
0%,
100% {
-webkit-transform: scale(1.3) rotate(0deg);
transform: scale(1.3) rotate(0deg); }
50% {
-webkit-transform: scale(1.5) rotate(90deg);
transform: scale(1.5) rotate(90deg); } }
.map-marker-container {
position: absolute;
margin-top: 10px;
-webkit-transform: translate3d(-50%, -100%, 0);
transform: translate3d(-50%, -100%, 0); }
.marker-container {
position: relative;
margin: 10px auto;
width: 40px;
height: 40px;
z-index: 1;
border-radius: 50%;
cursor: pointer;
top: -5px; }
#singleListingMap .marker-container {
cursor: default; }
.marker-container {
-webkit-perspective: 1000;
perspective: 1000; }
.marker-card {
width: 100%;
height: 100%;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
position: absolute;
z-index: 1; }
.map-marker-container.clicked .marker-card,
.marker-container:hover .marker-card {
-webkit-transform: rotateY(-180deg) translateY(0px);
transform: rotateY(-180deg) translateY(0px); }
.marker-arrow {
width: 0;
content: "";
height: 0;
border-style: solid;
border-width: 20px 13px 0;
border-color: #6a7be7 transparent transparent;
top: 35px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
position: absolute;
border-radius: 0;
z-index: 1; }
.face {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
text-align: center;
border-radius: 10%;
color: #fff;
z-index: 100;
border-radius: 50px; }
.face i {
line-height: 30px;
font-size: 16px;
}
.face.front {
background-color: #fff;
border: 6px solid;
z-index: 100; }
.face.back {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
-webkit-box-sizing: border-box;
box-sizing: border-box;
color: #fff; }
.face.back i {
trasform: scaleX(-1);
line-height: 38px;
font-size: 18px; }
.face.back:after {
content: "";
display: block;
width: 36px;
height: 36px;
top: 2px;
left: 2px;
border-radius: 10%;
position: absolute; }
.custom-zoom-in,
.custom-zoom-out {
background-color: #fff;
color: #333;
cursor: pointer;
border-radius: 50%;
margin: 5px 15px;
-webkit-transition: color 0.3s, background-color 0.3s;
-o-transition: color 0.3s, background-color 0.3s;
transition: color 0.3s, background-color 0.3s;
-webkit-box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
text-align: center;
font-size: 15px;
height: 34px;
width: 34px; }
.custom-zoom-in:hover,
.custom-zoom-out:hover {
background-color: #66676b;
color: #fff; }
.custom-zoom-in:before,
.custom-zoom-out:before {
font-family: "FontAwesome";
width: 100%;
line-height: 35px;
transition: -webkit-text-stroke 0.3s;
-webkit-text-stroke: 1px #fff; }
.zoomControlWrapper {
position: absolute;
left: 0;
right: auto;
width: 70px; }
.custom-zoom-in:before {
content: "\f067"; }
.custom-zoom-out:before {
content: "\f068"; }
.custom-zoom-in:hover:before,
.custom-zoom-out:hover:before {
-webkit-text-stroke: 1px #66676b; }
#mapnav-buttons {
position: absolute;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
z-index: 999;
font-size: 14px;
display: inline-block;
bottom: 20px;
right: 20px;
list-style: none;
padding: 0; }
#mapnav-buttons.top {
top: 20px;
right: 20px;
bottom: auto; }
#mapnav-buttons li {
float: left;
margin-left: 4px;
line-height: 20px; }
#geoLocation,
#mapnav-buttons a,
#scrollEnabling,
#streetView {
color: #333;
background-color: #fff;
padding: 9px 18px 7px;
font-weight: 500;
-webkit-box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
border-radius: 50px;
-webkit-box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2);
box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.2); }
#geoLocation:hover,
#mapnav-buttons a:hover,
#scrollEnabling.enabled,
#scrollEnabling:hover,
#streetView:hover {
background-color: #66676b;
color: #fff; }
#nextpoint:after,
#prevpoint:before {
font-family: "FontAwesome";
position: relative;
font-weight: 500;
margin: 0 0 0 6px;
font-size: 17px;
top: 0;
line-height: 1px; }
#prevpoint:before {
content: "\f104";
margin: 0 6px 0 0; }
#nextpoint:after {
content: "\f105";
margin: 0 0 0 6px; }
#geoLocation,
#scrollEnabling,
#streetView {
position: absolute;
top: 20px;
right: 20px;
z-index: 999;
font-size: 13px;
line-height: 21px; }
#geoLocation:before,
#scrollEnabling:before,
#streetView:before {
content: "\e015";
font-family: "simple-line-icons";
position: relative;
top: 2px;
margin: 0 6px 0 0;
font-size: 15px;
line-height: 1px; }
#scrollEnabling:before {
margin-left: -3px; }
#streetView:before {
content: "\f21d";
font-family: "FontAwesome";
font-size: 16px;
top: 1px;
margin-right: 8px; }
#geoLocation {
right: auto;
left: 20px;
padding: 8px 11px; }
#geoLocation:before {
content: "\f192";
font-family: "FontAwesome";
font-size: 16px;
margin: 0;
top: 2px; }
@-webkit-keyframes passing-through {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30%,
70% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@keyframes passing-through {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30%,
70% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); }
100% {
opacity: 0;
-webkit-transform: translateY(-40px);
transform: translateY(-40px); } }
@-webkit-keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); } }
@keyframes slide-in {
0% {
opacity: 0;
-webkit-transform: translateY(40px);
transform: translateY(40px); }
30% {
opacity: 1;
-webkit-transform: translateY(0px);
transform: translateY(0px); } }
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
10% {
-webkit-transform: scale(1.1);
transform: scale(1.1); }
20% {
-webkit-transform: scale(1);
transform: scale(1); } }
@keyframes pulse {
0% {
-webkit-transform: scale(1);
transform: scale(1); }
10% {
-webkit-transform: scale(1.1);
transform: scale(1.1); }
20% {
-webkit-transform: scale(1);
transform: scale(1); } }
.cta {
background: #303e94;
}
.cta.section-padding {
padding: 68px 0 67px 0;
}
.cta .cta-text {
text-align: center;
}
.cta .cta-text h2 {
font-size: 32px;
color: #fff;
margin: 0px;
}
.bottom.section-padding {
padding: 67px 0px 67px;
}
.bottom-list {
margin-top: 6px; }
.bottom-list h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 19px; }
.bottom-list ul li a {
line-height: 36px;
color: #67686c;
font-size: 14px;
padding-left: 23px;
}
.bottom-list ul li a:hover {
padding-left: 30px;
}
.bottom-list ul li {
position: relative;
}
.bottom-list ul li:before {
content: '\f112';
font-family: lineawesome;
position: absolute;
top: 50%;
left: -4px;
font-size: 14px;
color: #78797f;
transform: translateY(-50%);
}
.bottom-list ul li a i {
margin-right: 17px;
position: relative;
top: -1px;
font-size: 14px;
}
.bottom-list > ul {
margin-top: 4px;
float: left;
width: 100%;
}
.bottom-desc {
margin-top: 6px;
padding-right: 5px;
}
.bottom-desc h3 {
font-size: 18px;
font-weight: 500;
margin-bottom: 20px; }
.bottom-desc p {
color: #67686c;
float: left;
width: 100%;
font-size: 13px;
line-height: 24px;
margin-top: 7px;
padding-right: 15px;
}
.bottom-logo img {
max-width: 105px; }
.footer-content {
padding: 30px 0px 30px 0;
border-top: 1px solid #e0e1e6; }
.footer-content .copyright p {
margin-bottom: 1px;
margin-top: 8px;
font-size: 13px;
}
.footer-social {
text-align: right; }
.footer-social a {
width: 35px;
height: 35px;
text-align: center;
border: 1px solid #e0e1e6;
color: #838488;
display: inline-block;
line-height: 35px;
border-radius: 50px;
font-size: 13px;
margin: 0px 3px 0px 7px;
}
.footer-social a:hover {
color: #fff;
border-color: transparent;
}
.footer-social a:last-child {
margin-right: 0;
}
.alert-success {
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
opacity: 0;
visibility: hidden;
z-index: 0;
width: 100%;
text-align: center;
}
.alert-success.active {
opacity: 1;
visibility: visible;
z-index: 999999;
}
.close-alert {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
right: 25px;
color: #155724;
font-size: 20px;
}
/* ========================= BLOG OPEN PAGE =========================== */
.pager-sec {
background-image: url(https://via.placeholder.com/1920x200);
background-repeat: no-repeat;
background-size: cover;
padding: 74px 0 72px 0;
position: relative;
z-index: 1;
}
.pager-sec.st2 {
background: #eeeef0;
background-image: inherit;
}
.pager-sec.st2 .pager-sec-details > h3 {
color: #242526;
}
.pager-sec.st2 .pager-sec-details > ul li a, .pager-sec.st2 .pager-sec-details > ul li span {
color: #242526;
}
.pager-sec.st2 .pager-sec-details > ul li:before {
color: #242526;
}
.bfr:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url(../images/pg-bef.png);
background-repeat: no-repeat;
background-size: cover;
z-index: -1;
}
.pager-sec-details {
float: left;
width: 100%;
}
.pager-sec-details > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
float: left;
}
.pager-sec-details > ul {
float: right;
margin-top: 14px;
}
.pager-sec-details > ul li {
display: inline-block;
position: relative;
padding: 0 11px 0 15px;
}
.pager-sec-details > ul li:last-child {
padding-right: 0;
}
.pager-sec-details > ul li:last-child:before {
display: none;
}
.pager-sec-details > ul li:before {
content: '\f101';
position: absolute;
top: 4px;
left: 100%;
color: #fff;
font-size: 12px;
font-family: fontawesome;
}
.pager-sec-details > ul li a,
.pager-sec-details > ul li span {
display: inline-block;
color: #ffffff;
font-size: 14px;
}
/* ================= BLOG SINGLE SEC ============== */
.blog-single-details {
float: left;
width: 100%;
}
.blog-single-post {
float: left;
width: 100%;
cursor: pointer;
position: relative;
}
.blog-single-post > ul.post-nfo,
.post_info > ul.post-nfo {
float: left;
width: 100%;
margin-bottom: 7px;
margin-top: -1px;
}
.post-nfo li,
.post-nfo li a {
display: inline-block;
color: #aeb4b6;
font-size: 12px;
margin-right: 20px;
}
.post-nfo li a {
margin-right: 0;
}
.post-nfo li i {
font-size: 14px;
padding-right: 6px;
position: relative;
top: 1px;
}
.pt {
padding: 105px 0;
}
.blog-single-sec.section-padding {
padding: 110px 0 110px 0;
}
.blog-single-post > h3,
.post_info > h3 {
color: #242526;
font-size: 28px;
font-weight: 500;
margin-bottom: 23px;
float: left;
width: 100%;
}
.post_info > h3 a {
color: #242526;
}
.blog-img {
float: left;
width: 100%;
margin-bottom: 34px;
position: relative;
}
.blog-img:before,
.agent_img:before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 0;
height: 100%;
background-color: rgba(127,142,233,0.85);
opacity: 0;
visibility: hidden;
}
.blog-single-post:hover .blog-img:before,
.agent:hover .agent_img:before {
opacity: 1;
visibility: visible;
left: 0;
width: 100%;
}
.blog-single-post.single {
cursor: inherit;
}
.blog-single-post.single .blog-img:before,
.blog-single-post.single .blog-img:after {
display: none;
}
.blog-img > a img {
width: 100%;
float: left;
}
.blog-single-post p {
float: left;
width: 100%;
margin-bottom: 24px;
color: #67686c;
font-size: 13px;
line-height: 24px;
font-family: 'Raleway';
}
.blog-single-post > blockquote {
color: #242526;
font-size: 15px;
font-weight: 700;
line-height: 28px;
border-left: 3px solid;
padding: 2px 0 1px 18px;
float: left;
width: 100%;
margin-bottom: 38px;
margin-top: 13px;
}
.blg-dv {
float: left;
width: 100%;
margin-bottom: 22px;
margin-top: 8px;
}
.blg-sm {
float: left;
width: 100%;
}
.blg-info {
float: left;
width: 100%;
padding-left: 27px;
}
.bg-links {
float: left;
width: 100%;
padding: 0 40px;
margin-top: 5px;
margin-bottom: 13px;
}
.bg-links li {
float: left;
width: 100%;
color: #242526;
font-size: 13px;
margin-bottom: 17px;
position: relative;
padding-left: 19px;
font-family: 'Raleway';
}
.bg-links li:before {
content: '';
position: absolute;
top: 50%;
left: 0;
width: 5px;
height: 5px;
border-radius: 100px;
background-color: #242526;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
/* ================ post-share =============== */
.post-share {
float: left;
width: 100%;
padding: 21px 0;
border-top: 1px solid #dfe0e5;
margin-top: 8px;
margin-bottom: 27px;
}
.social-links {
float: left;
}
.social-links li {
display: inline-block;
margin-right: 17px;
}
.social-links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
.post-share > a {
float: right;
color: #161616;
font-size: 13px;
font-weight: 400;
margin-top: 3px;
}
.post-share > a i {
padding-left: 8px;
}
/* ============== cm-info-sec ================ */
.cm-info-sec {
float: left;
width: 100%;
display: table;
border:1px solid #dfe0e5;
padding: 29px 24px;
margin-bottom: 68px;
}
.cm-img {
display: table-cell;
}
.cm-img > img {
float: left;
}
.cm-info {
display: table-cell;
width: 100%;
vertical-align: top;
padding-left: 19px;
position: relative;
top: -1px;
}
.cm-info h3 {
color: #151515;
font-size: 16px;
font-weight: 500;
margin-bottom: 8px;
}
.cm-info > p {
color: #67686c;
font-size: 13px;
line-height: 24px;
font-family: 'Raleway';
margin-bottom: 12px;
}
.cm-info .social-links li a {
color: #aeb4b6;
}
/* ================= comment-section ================ */
.comment-section {
float: left;
width: 100%;
margin-top: 7px;
}
.p-title {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 30px;
}
.comment-section .cm-info-sec {
padding: 0;
border:0;
margin: 0;
}
.comment-section .cm-info {
padding-top: 7px;
}
.comment-section .cm-info > h4 {
color: #aeb4b6;
font-size: 12px;
font-weight: 400;
}
.comment-section .cm-info h3 {
margin-bottom: 3px;
}
.comment-section > ul {
float: left;
width: 100%;
}
.comment-section > ul > li {
float: left;
width: 100%;
position: relative;
margin-bottom: 32px;
}
.comment-section ul li p {
float: left;
width: 100%;
margin-top: 13px;
color: #67686c;
}
.cm-reply {
display: inline-block;
font-size: 12px;
font-weight: 500;
position: absolute;
top: 7px;
right: 0;
text-transform: uppercase;
letter-spacing: 1px;
}
/* ================ post-comment-sec =============== */
.post-comment-sec {
float: left;
width: 100%;
margin-top: 22px;
}
.post-comment-sec .p-title {
margin-bottom: 18px;
}
.post-comment-sec > form {
float: left;
width: 100%;
}
.post-comment-sec .col-lg-4 {
padding: 0 8px;
}
.post-comment-sec form button {
margin-top: -5px;
}
.post-comment-sec form .row {
margin: 0;
}
.post-comment-sec form input {
height: 48px;
padding: 0 17px;
}
.post-comment-sec form textarea {
height: 124px;
padding: 14px 17px;
}
.post-comment-sec form input,
.post-comment-sec form textarea {
width: 100%;
color: #67686c;
font-size: 12px;
font-weight: 400;
border:1px solid #dfe0e5;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: #67686c;
}
::-moz-placeholder { /* Firefox 19+ */
color: #67686c;
}
:-ms-input-placeholder { /* IE 10+ */
color: #67686c;
}
:-moz-placeholder { /* Firefox 18- */
color: #67686c;
}
#map-container.fullwidth-home-map.wmap {
height: 489px;
}
/* =============== RIGHT SIDEBAR ============= */
.sidebar {
float: left;
width: 100%;
padding-left: 20px;
}
.sidebar .widget-title {
margin-top: -6px;
}
.sidebar.layout2 .widget-property-search {
margin-top: 0;
}
.sidebar.layout2 .widget-property-search .widget-title {
margin-top: 0;
}
.sidebar .banner-search {
padding: 0;
}
.widget {
float: left;
width: 100%;
margin-bottom: 48px;
}
.widget-search form {
float: left;
width: 100%;
position: relative;
}
.widget-search form input {
width: 100%;
height: 48px;
border:1px solid #dfe0e5;
color: #67686c;
font-size: 12px;
padding: 0 18px;
background-color: #fff;
}
.widget-search form button {
font-size: 18px;
position: absolute;
top: 50%;
right: 11px;
background-color: inherit;
border:0;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
cursor: pointer;
}
.widget-title {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 20px;
}
/* =============== Widget Categories ============= */
.widget-catgs {
margin-bottom: 42px;
}
.widget-catgs ul {
float: left;
width: 100%;
margin-top: -5px;
}
.widget-catgs ul li {
float: left;
width: 100%;
margin-bottom: 15px;
}
.widget-catgs ul li:last-child {
margin-bottom: 0;
}
.widget-catgs ul li a {
float: left;
font-size: 14px;
font-weight: 400;
}
.widget-catgs ul li a span {
display: inline-block;
}
.widget-catgs ul li a:hover span {
padding-left: 15px;
}
.widget-catgs ul li a i {
color: #78797f;
font-size: 14px;
padding-right: 14px;
position: relative;
left: -4px;
}
.widget-catgs ul li > span {
float: right;
color: #88898d;
font-size: 14px;
}
/* =============== widget-posts ============= */
.widget-posts > ul {
float: left;
width: 100%;
}
.widget-posts > ul li {
float: left;
width: 100%;
margin-bottom: 14px;
}
.widget-posts > ul li:last-child {
margin-bottom: 0;
}
.wd-posts {
float: left;
width: 100%;
display: table;
}
.ps-img {
display: table-cell;
}
.ps-img > a img {
float: left;
}
.ps-info {
display: table-cell;
vertical-align: top;
width: 100%;
padding-left: 19px;
padding-top: 5px;
}
.ps-info > h3 {
color: #242526;
font-size: 14px;
font-weight: 400;
margin-bottom: 4px;
}
.ps-info > h3 a {
color: #242526;
}
.ps-info > span {
display: inline-block;
color: #aeb4b6;
font-size: 12px;
}
.ps-info > span i {
font-size: 14px;
padding-right: 5px;
}
/* ============== widget-adver ========== */
.widget-adver > a img {
width: 100%;
}
/* ============== POPULAR TAGS =========== */
.widget-tags > ul {
float: left;
width: 100%;
}
.widget-tags > ul li {
display: inline-block;
margin-right: 4px;
margin-bottom: 7px;
}
.widget-tags > ul li a {
display: inline-block;
color: #ffffff;
font-size: 12px;
padding: 5px 13px 4px 13px;
border-radius: 30px;
}
.widget-tags > ul li a:hover {
background-color: #8b9af7;
}
.widget-adver {
margin-bottom: 42px;
}
/* ================== BLOG STANDARD PAGE ================ */
.blog-posts {
float: left;
width: 100%;
}
.blog-posts .blog-single-post {
margin-bottom: 45px;
}
.blog-posts .blog-single-post:last-child {
margin-bottom: 0;
}
.post_info {
float: left;
width: 100%;
padding: 30px 30px 39px 30px;
border:1px solid #dfe0e5;
border-top: 0;
}
.blog-posts .blog-img {
margin-bottom: 0;
}
.blog-img > img {
width: 100%;
float: left;
}
.post_info > h3 {
margin-bottom: 14px;
}
.btn1 {
display: inline-block;
font-size: 14px;
height: 51px;
line-height: 51px;
border-radius: 30px;
padding: 0 27px;
border:1px solid;
}
.post_info > a:hover {
color: #fff;
border-color: transparent;
}
.post_info > a {
float: left;
}
/* ============== pagination ============ */
.pagination {
float: left;
width: 100%;
margin-top: 62px;
}
.half_map .half-map-sec .container {
padding: 0;
width: 100%;
max-width: 100%;
}
.half-map-sec .pagination {
margin-top: 32px;
}
.pagination .page-link {
padding: 0;
width: 41px;
height: 41px;
border:1px solid #e1e2e6;
border-radius: 100px;
line-height: 41px;
color: #242526;
font-size: 14px;
margin-right: 8px;
text-align: center;
}
.pagination .page-item.active .page-link,
.pagination .page-item .page-link:hover {
color: #fff;
border-color: transparent;
}
.page-item .page-link b {
position: relative;
left: 1px;
}
.page-item:first-child .page-link,
.page-item:last-child .page-link {
border-radius: 100px;
}
.blog-standard.section-padding {
padding: 110px 0;
}
/* ===================== BLOG GRID PAGE ================== */
.blog-grid-posts {
float: left;
width: 100%;
}
.blog-grid-posts .blog-single-post {
margin-bottom: 30px;
}
.blog-grid-posts .blog-img {
margin-bottom: 0;
}
.blog-grid-posts .post_info > h3 {
font-size: 18px;
}
.blog-grid-posts .post_info > a {
height: auto;
line-height: inherit;
border:0;
padding: 0;
color: #161616;
font-size: 12px;
}
.blog-grid-posts .post_info > a:hover {
background-color: inherit;
}
.blog-grid-posts .post_info > a i {
padding-left: 6px;
position: relative;
top: 1px;
}
.blog-grid-posts .post_info > ul.post-nfo {
margin-bottom: 5px;
}
.blog-grid-posts .blog-single-post p {
margin-bottom: 19px;
}
.blog-single-post p:first-child {
margin-top: -4px;
}
.blg-dv .blg-info p {
margin-bottom: 21px;
font-size: 13px;
}
.blog-grid-posts .post_info {
padding: 29px 30px 27px 30px;
}
.view-posts {
color: #ffffff;
font-size: 14px;
border:1px solid #ffffff;
padding: 14px 26px;
border-radius: 30px;
display: inline-block;
}
.view-post {
float: left;
width: 100%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
z-index: 99;
opacity: 0;
visibility: hidden;
margin-top: 30px;
text-align: center;
}
.view-posts:hover {
color: #fff;
}
.blog-single-post:hover .view-post,
.agent:hover .view-post {
opacity: 1;
visibility: visible;
margin: 0;
}
.load-more-posts {
float: left;
width: 100%;
text-align: center;
margin-top: 32px;
}
.load-more-posts > .btn2 {
padding: 0 28px 0 26px;
width: auto;
float: none;
display: inline-block;
}
.blog-grid.section-padding {
padding: 110px 0 104px 0;
}
/* ================ about-us-sec ============= */
.about-sec.pt {
padding: 110px 0 110px 0;
}
.page-main-content.section-padding {
padding: 110px 0 110px 0;
}
.about-us-sec {
float: left;
width: 100%;
}
.about-info {
float: left;
width: 100%;
padding-top: 72px;
}
.about-info > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
margin-bottom: 4px;
}
.about-info > h4 {
color: #aeb4b6;
font-size: 12px;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 19px;
}
.about-info > p {
font-size: 16px;
color: #67686c;
line-height: 30px;
padding: 15px 0 20px 0;
}
.about-info > a {
float: left;
}
.about-img {
float: left;
width: 100%;
}
.about-img > img {
width: 100%;
float: left;
}
.explore-feature.pt {
padding-bottom: 110px;
}
.explore-feature.st2 .card .card-body p {
padding: 0 10px;
}
/* ================ agent-profile-sec ============== */
.agent-profile-sec {
float: left;
width: 100%;
margin-bottom: -11px;
}
.agent-profile-sec .row {
margin: 0;
}
.agent-profile {
float: left;
width: 100%;
padding-right: 5px;
}
.agent-img {
float: left;
width: 355px;
}
.agent-img > img {
width: 100%;
height: 100%;
object-fit: cover;
}
/* ================== agent-info ================= */
.agent-info {
float: left;
width: 415px;
border:1px solid #dfe0e5;
padding: 27px 29px 40px 30px;
border-left: 0;
line-height: 1;
}
.agent-profile .col-lg-6 {
padding: 0;
}
.agent-info > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
line-height: 35px;
margin-bottom: 7px;
}
.agent-info > h4 {
color: #aeb4b6;
font-size: 12px;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 22px;
}
.agent-info > p {
float: left;
width: 100%;
color: #67686c;
padding: 17px 0 31px 0;
}
.cont-links {
float: left;
width: 100%;
}
.cont-links li {
float: left;
width: 100%;
margin-bottom: 15px;
}
.cont-links li a,
.cont-links li span {
display: inline-block;
font-weight: 500;
font-size: 14px;
}
.cont-links li a i,
.cont-links li span i {
padding-right: 7px;
font-size: 16px;
}
/* ============== socio-links ============= */
.socio-links {
float: left;
width: 100%;
margin-top: 17px;
}
.socio-links li {
display: inline-block;
margin-right: 17px;
}
.socio-links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
/* ============== contact-agent ============= */
.contact-agent {
float: left;
width: 100%;
padding-left: 25px;
line-height: 1;
}
.contact-agent > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin-bottom: 24px;
margin-top: -2px;
}
.contact-agent > form {
float: left;
width: 100%;
}
.s {
float: left;
width: 100%;
margin-bottom: 16px;
}
.form-field {
float: left;
width: 100%;
margin-bottom: 15px;
}
.form-field input {
height: 48px;
padding: 0 17px;
}
.form-field textarea {
height: 105px;
padding: 14px 18px;
}
.form-field input,
.form-field textarea {
width: 100%;
font-size: 12px;
color: #67686c;
border:1px solid #dfe0e5;
background-color: #fff;
}
.form-field button {
margin-top: 3px;
cursor: pointer;
}
/* ================= contact-details-sec ============== */
.contact-sec {
float: left;
width: 100%;
padding: 101px 0 110px 0;
}
.contact-details-sec {
float: left;
width: 100%;
}
.contact_form {
float: left;
width: 100%;
}
.contact_form > h3 {
color: #242526;
font-size: 24px;
font-weight: 500;
margin-bottom: 17px;
}
.contact_form > p {
color: #67686c;
font-size: 15px;
line-height: 30px;
margin-bottom: 30px;
}
.contact_form > form {
float: left;
width: 100%;
}
.contact-details-sec .row {
margin: 0;
}
.contact_form > form .col-lg-4,
.contact_form > form .col-lg-12 {
padding: 0 8px;
}
.contact_form > form .form-field {
margin-bottom: 16px;
}
.contact_form > form .form-field textarea {
height: 124px;
}
.contact_form > form button {
margin-top: -5px;
float: left;
}
.contact_form > form button:hover,
.post-comment-sec form button:hover {
color: #fff;
}
/* ================ contact_info ================= */
.contact_info {
float: left;
width: 100%;
margin-top: 54px;
padding-left: 20px;
}
.contact_info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
margin-bottom: 24px;
text-transform: uppercase;
letter-spacing: 1.2px;
}
.cont_info {
float: left;
width: 100%;
}
.cont_info li {
float: left;
width: 100%;
color: #67686c;
font-size: 14px;
font-weight: 500;
margin-bottom: 14px;
}
.cont_info li:nth-child(2) {
margin-bottom: 15px;
}
.cont_info li i {
font-size: 16px;
padding-right: 10px;
}
/* =================== social_links =================== */
.social_links {
float: left;
width: 100%;
margin-top: 11px;
}
.social_links li {
display: inline-block;
margin-right: 17px;
}
.social_links li a {
display: inline-block;
color: #242526;
font-size: 13px;
}
/* =============== support-sec ============== */
.feature-support-sec.section-padding {
padding: 110px 0 110px 0;
}
.support-sec {
float: left;
width: 100%;
}
.video-img {
float: left;
width: 100%;
position: relative;
}
.video-img:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(106,123,231,0.10);
}
.video-img > img {
width: 100%;
float: left;
}
.video-play {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
color: #fff;
font-size: 60px;
}
.video-play:hover {
color: #fff;
}
#html5-watermark{display:none!important}
#html5lightbox-web-iframe img{float:none}
/* ================= support-info =============== */
.support-info {
float: left;
width: 100%;
margin-top: -7px;
padding-left: 20px;
}
.support-info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
margin-bottom: 13px;
text-transform: uppercase;
}
.support-info > p {
color: #67686c;
font-size: 13px;
line-height: 24px;
margin-bottom: 28px;
}
/* ==================== LIST LAYOUT WITH MAP ================== */
.listing-main-sec.section-padding {
padding: 106px 0 110px 0;
}
.listing-main-sec.section-padding2 {
padding: 106px 0 110px 0;
}
.listing-main-sec-details {
float: left;
width: 100%;
}/*
.listing-main-sec-details .row {
margin-right: -15px;
margin-left: -15px;
}*/
.listing-directs {
float: left;
width: 100%;
}
.list-head {
float: left;
width: 100%;
margin-bottom: 17px;
}
.sortby {
float: left;
}
.sortby > span {
color: #67686c;
font-size: 14px;
font-weight: 500;
float: left;
}
.sortby .drop-menu {
float: left;
border:0;
margin: 0;
padding: 0;
width: 93px;
padding-left: 6px;
}
.sortby .drop-menu .select i {
right: 0;
margin-top: 4px;
}
.sortby .drop-menu .dropeddown {
padding: 0 10px;
width: 130px;
}
.sortby .drop-menu .select {
padding: 0;
font-size: 14px;
color: #242526;
font-weight: 500;
}
.opt-slect {
display: inline-block;
position: relative;
}
.opt-slect > i {
position: absolute;
top: 3px;
right: 0;
color: #242526;
font-size: 14px;
}
.opt-slect > select {
font-weight: 500;
padding-right: 26px;
border:0;
background-color: #fff;
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';
}
select::-ms-expand {
display: none;
}
.view-change {
float: right;
margin-top: -4px;
}
.view-change ul {
display: inline-block;
}
.view-change ul li {
display: inline-block;
border:0;
margin-right: 4px;
}
.view-change ul li:last-child {
margin-right: 0;
}
.view-change ul li a {
padding: 0;
color: #adadb0;
font-size: 22px;
border:0;
}
.view-change ul.nav-tabs .nav-link {
border:0;
}
.view-change ul.nav-tabs {
border-bottom: 0;
}
/* ================ list-products ============= */
.list-products {
float: left;
width: 100%;
}
.card .card-body {
padding: 25px 23px 0;
}
.list-products .card {
float: left;
width: 100%;
display: block;
border:0;
}
.list-products .card .img-block {
float: left;
width: 295px;
}
.card_bod_full {
float: right;
width: 61.6%;
border:1px solid rgba(0,0,0,.125);
border-left: 0;
padding-bottom: 13px;
padding-left: 7px;
padding-right: 6px;
line-height: 1;
}
.list-products .card .card-body h3 {
margin-bottom: 6px;
}
.list-products .card .card-body p {
margin-bottom: 19px;
}
.list-products .card .card-body ul {
float: left;
width: 100%;
padding-bottom: 20px;
}
.card_bod_full h3 {
float: left;
width: 100%;
margin-bottom: 2px;
}
.card_bod_full .card-body {
border: 0;
}
.list-products .card .card-body {
padding: 31px 23px 0;
}
.card_bod_full .card-footer {
border:0;
float: left;
width: 100%;
padding: 18px 20px 18px 20px;
}
.card_bod_full .card-footer a.plf {
float: left;
padding-left: 17px;
margin-top: 6px;
}
.list-products .card .card-body ul li {
margin-right: -1px;
padding: 0px 17px 0px 14px;
line-height: 11px;
}
.list-products .card .card-body ul li:first-child {
padding-left: 0;
}
.card-footer a i {
font-size: 16px;
position: relative;
top: 2px;
padding-right: 3px;
}
.crd-links {
float: left;
margin-top: 9px;
}
.btn-default {
float: right;
font-size: 14px;
height: 51px;
line-height: 51px;
border:1px solid;
padding: 0 27px;
border-radius: 30px;
text-transform: capitalize;
position: relative;
z-index: 1;
overflow: hidden;
cursor: pointer;
background-color: initial;
}
.card_bod_full .card-footer .btn-default:hover {
color: #fff;
}
.btn-default:hover {
color: #fff;
background-color: #7e8dea;
border-color: transparent;
}
.list-products .card .img-block h5 {
top: 5px;
}
.list-products .card .img-block span {
margin-top: 2px;
}
.list-products .card {
margin-bottom: 30px;
}
.list-products .card:last-child {
margin-bottom: 0;
}
.list-products .img-block img {
height: 235px;
object-fit: cover;
}
/* =============== LIST LAYOUT WITH MAP SIDEBAR ============ */
.widget-property-search {
margin-top: 1px;
}
.widget-property-search .form_field:last-child {
margin-bottom: 0;
}
.widget-property-search .form_field:last-child a {
margin-bottom: 0;
}
.widget-property-search .form_field {
float: left;
width: 100%;
}
.sidebar.layout2 .widget-title {
letter-spacing: 1px;
}
.widget-property-search .form-control {
height: 48px;
}
.widget-property-search .form-control,
.widget-property-search .drop-menu {
border: 1px solid #e0e1e6;
margin:0;
}
.widget-property-search .form_field {
margin-bottom: 16px;
}
.widget-property-search .drop-menu {
padding: 0;
}
.widget-property-search .drop-menu .select {
height: 48px;
line-height: 48px;
padding: 0 18px;
}
.widget-property-search .banner-search .form-control {
padding-left: 18px;
}
.widget-property-search .drop-menu .select i {
margin-top: 18px;
}
.widget-property-search .form_field .btn {
width: 100%;
}
.widget-property-search .banner-search {
float: left;
width: 100%;
height: auto;
margin: 0;
}
.form_field > h4 {
color: #242526;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
margin-bottom: 15px;
margin-top: 14px;
}
.form_field input:checked {
color: red;
}
.form_field > ul {
float: left;
width: 50%;
}
.form_field > ul li {
float: left;
width: 100%;
margin-bottom: 8px;
}
.form_field > ul li:last-child {
margin-bottom: 6px;
}
.input-field > input[type="radio"],
.input-field > input[type="checkbox"] {
display: none;
}
.input-field input[type="radio"] + label span,
.input-field input[type="checkbox"] + label span {
width: 22px;
height: 22px;
display: inline-block;
position: relative;
border:1px solid #dfe0e5;
background-color: inherit;
cursor: pointer;
}
.input-field input[type="radio"] + label span:before,
.input-field input[type="checkbox"] + label span:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 13px;
height: 10px;
background-image: url(../images/arrow.png);
color: #fff;
font-size: 12px;
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
opacity: 0;
visibility: hidden;
}
.input-field input[type="radio"]:checked + label span:before,
.input-field input[type="checkbox"]:checked + label span:before {
opacity: 1;
visibility: visible;
}
.input-field input[type="radio"]:checked + label span,
.input-field input[type="checkbox"]:checked + label span {
border-color: transparent;
}
.input-field > label {
float: left;
cursor: pointer;
}
.input-field > label span {
float: left;
}
.input-field > label small {
float: left;
color: #67686c;
font-size: 12px;
padding-left: 13px;
margin-top: 2px;
}
/* ================ widget-featured-property ============== */
.widget-featured-property .card {
float: left;
width: 100%;
display: block;
border:0;
}
.widget-featured-property .card .card-body {
float: left;
width: 100%;
padding-top: 21px;
padding-bottom: 19px;
border-bottom: 1px solid #dfe0e5;
}
.widget-featured-property .card .card-body h3 {
margin-bottom: 2px;
}
.widget-featured-property .card .card-body p {
margin-bottom: 0;
}
.widget-featured-property .card .img-block h5 {
top: 5px;
}
.widget-featured-property .card .img-block span {
margin-top: 2px;
}
.sidebar.layout2 .ps-info > strong {
float: left;
width: 100%;
font-size: 18px;
font-weight: 600;
margin-bottom: 11px;
}
.sidebar.layout2 .ps-info {
padding-top: 3px;
}
.sidebar.layout2 .ps-info > h3 {
margin-bottom: 2px;
}
.tab-content {
float: left;
width: 100%;
}
.tab-pane {
float: left;
width: 100%;
}
.list_products {
float: left;
width: 100%;
}
.list_products .card {
margin-bottom: 30px;
border:0;
}
/* ==================== half-map-sec ================ */
.half-map-sec {
padding-bottom: 80px;
}
.header.shd {
-webkit-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-moz-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-ms-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-o-box-shadow: 0 0 10px rgba(1,1,2,0.08);
box-shadow: 0 0 10px rgba(1,1,2,0.08);
position: relative;
}
.half_map header .container {
padding: 0 35px;
width: 100%;
max-width: 100%;
}
.half-map-sec .list-products .card .img-block {
width: 33.2%;
}
.half-map-sec .list-products .card_bod_full {
width: 66.8%;
}
.half-map-sec > .container > .row > .col-xl-6 {
padding: 0;
}
.half-map-sec .listing-directs {
padding: 0 50px 0 35px;
}
.half-map-sec .list_products .row {
margin: 0;
}
.half-map-sec .list_products > .row > .col-lg-6:nth-child(odd) {
padding-left: 0;
}
.half-map-sec .list_products > .row > .col-lg-6:nth-child(even) {
padding-right: 0;
}
.half-map-sec .widget-property-search {
float: left;
width: 100%;
padding: 34px 50px 0 35px;
}
.half-map-sec .widget-property-search .form_field {
margin-bottom: 19px;
}
.half-map-sec .form_field.full {
width: 100%;
padding: 0;
}
.half-map-sec .banner-search .form_field {
padding-right: 0;
}
.half-map-sec .feat-srch .form_field {
float: right;
}
.half-map-sec .banner-search .form_field:nth-child(2) {padding-left: 0;}
.half-map-sec .form_field {
width: 25%;
padding: 0 9px;
}
.half-map-sec .widget-property-search .banner-search {padding:0;}
.feat-srch {
float: left;
width: 100%;
margin-bottom: 7px;
margin-top: -7px;
}
.feat-srch .form_field {padding-right: 4px;}
.more-feat {
float: left;
width: 25%;
margin-top: 20px;
padding-left: 0;
}
.more-feat h3 {
color: #242526;
font-size: 12px;
cursor: pointer;
}
.more-feat i {
font-size: 18px;
padding-right: 10px;
position: relative;
top: 1px;
}
.feat-srch > .form_field {
width: 73.9%;
}
.feat-srch > .form_field .btn {
border-radius: 0;
}
.half-map-sec #map-container.fullwidth-home-map {
position: fixed;
top: 0;
left: 0;
width: 50%;
bottom: 0;
z-index: 50;
height: 100%;
}
header.fix {
position: fixed;
top: 0;
left: 0;
z-index: 999;
background-color: #fff;
}
/* =================== form_sec ================ */
.form_sec {
background-color: #d8d8d9;
padding: 28px 0;
}
.form_sec .banner-search {
-webkit-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-moz-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-ms-box-shadow: 0 0 10px rgba(1,1,2,0.08);
-o-box-shadow: 0 0 10px rgba(1,1,2,0.08);
box-shadow: 0 0 10px rgba(1,1,2,0.08);
}
.form_sec .banner-search .form-group {
padding: 0;
}
.form_sec .addres {
width: 475px;
}
.form_sec .banner-search .btn {
width: 51px;
padding: 0;
line-height: 51px;
text-align: center;
}
.form_sec .banner-search .btn i {
top: 0;
margin: 0;
line-height: 51px;
}
.form_sec .srch-btn {
width: 56px;
}
.form_sec .row {
margin: 0;
}
/* ================== property-hd-sec ============== */
.property-single-pg {
padding: 65px 0 110px 0;
}
.property-hd-sec {
float: left;
width: 100%;
}
.property-hd-sec .card {
float: left;
width: 100%;
border:0;
display: block;
}
.property-hd-sec .card .card-body ul {
border:0;
}
.property-hd-sec .card-body {
float: left;
width: 50%;
border:0;
padding: 0;
margin-top: 2px;
}
.property-hd-sec .card .card-body h3 {
font-size: 24px;
}
.property-hd-sec .card .card-body p {
font-size: 14px;
font-family: 'Poppins';
}
.property-hd-sec .card .card-body p i {
top: 0;
}
.property-hd-sec .card .card-body ul li {
line-height: 11px;
padding: 0 16px 0 14px;
}
.property-hd-sec .card .card-body ul li:first-child {
padding-left: 0;
}
.property-hd-sec .rate-info {
float: right;
width: 50%;
padding: 0;
position: static;
text-align: right;
}
.property-hd-sec .rate-info:before {
display: none;
}
.property-hd-sec .rate-info > h5 {
display: inline-block;
color: #242526;
font-size: 24px;
font-weight: 500;
margin-right: 22px;
position: relative;
top: 4px;
}
.property-hd-sec .rate-info > span {
display: inline-block;
color: #242526;
font-size: 12px;
background-color: #efeff3;
height: 25px;
border-radius: 30px;
padding: 0 14px;
line-height: 25px;
text-transform: uppercase;
}
/* ==================== property-single-page-content ================== */
.property-single-page-content {
float: left;
width: 100%;
margin-top: 25px;
}
.property-single-page-content .sidebar {
margin-top: -7px;
}
.property-single-page-content .row {
margin: 0;
}
.property-pg-left {
float: left;
width: 100%;
padding-right: 10px;
}
.property-imgs {
float: left;
width: 100%;
margin-bottom: 35px;
overflow: hidden;
}
.property-img {
float: left;
width: 100%;
}
.property-img > img {
width: 100%;
float: left;
}
.property-thumb-imgs {
float: left;
width: 100%;
border:1px solid #dfe0e5;
border-top: 0;
padding: 34px 38px 34px 37px;
}
.property-thumb-imgs .col-lg-4 {
padding: 0 8px;
}
/* ================ descp-text =============== */
.descp-text {
float: left;
width: 100%;
border:1px solid #e0e1e6;
padding: 23px 30px 20px 30px;
margin-bottom: 35px;
}
.property-pg-left h3 {
color: #242526;
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 16px;
letter-spacing: 1px;
}
.descp-text > p {
color: #67686c;
font-size: 14px;
line-height: 30px;
margin-top: -2px;
}
/* ================= details-info ================ */
.details-info {
float: left;
width: 100%;
padding: 23px 30px 23px 30px;
background-color: #f5f6fa;
border:1px solid #dfe0e5;
margin-bottom: 35px;
}
.details-info ul {
float: left;
width: 100%;
margin-top: 2px;
margin-bottom: -14px;
}
.details-info ul li {
float: left;
width: 33%;
margin-bottom: 15px;
}
.details-info ul li h4 {
color: #242526;
font-size: 14px;
display: inline-block;
}
.details-info ul li span {
display: inline-block;
color: #67686c;
font-size: 14px;
padding-left: 1px;
}
/* =============== features-dv ============= */
.features-dv {
float: left;
width: 100%;
border:1px solid #e1e2e7;
padding: 23px 30px 32px 30px;
margin-bottom: 35px;
}
.features-dv > form {
float: left;
width: 100%;
}
.features-dv form ul {
float: left;
width: 100%;
margin-top: 7px;
margin-bottom: -14px;
}
.features-dv form ul li {
float: left;
width: 33.33%;
margin-bottom: 12px;
}
.features-dv form ul li input[type="checkbox"] {
display: none;
cursor: text;
}
.features-dv .input-field input[type="checkbox"] + label span {
border-color: transparent;
cursor: inherit;
}
/* ================= floorplan =================== */
.floorplan {
float: left;
width: 100%;
padding: 23px 30px 24px 30px;
border:1px solid #dfe0e5;
text-align: center;
margin-bottom: 35px;
}
.floorplan h3 {
text-align: left;
}
.floorplan > img {
max-width: 100%;
margin-top: 7px;
}
.map-dv {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
margin-bottom: 35px;
}
.map-dv #map-container {
height: 347px;
}
.map-dv h3 {
margin-bottom: 23px;
}
.nearby-locts {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
margin-bottom: 35px;
display: none;
}
.nearby-locts > h3 {
margin-bottom: 23px;
}
.property-pg-left .ps-info > h3 {
font-size: 16px;
margin: 0;
text-transform: capitalize;
letter-spacing: 0;
margin-bottom: 5px;
}
.property-pg-left .ps-info {
vertical-align: top;
padding: 20px 20px 0;
width: 100%;
}
.nearby-locts > h3 {
float: left;
width: auto;
}
.nearby-locts > span {
float: right;
color: #67686c;
font-size: 12px;
margin-top: -5px;
}
.nearby-locts > span img {
display: inline-block;
padding-left: 6px;
position: relative;
top: 4px;
}
.nearby-locts .wd-posts {
width: 65%;
}
.star-rating {
float: right;
margin-top: 35px;
}
.widget-posts .star-rating li {
display: inline-block;
float: none;
width: auto;
margin-right: -2px;
}
.star-rating li span {
display: inline-block;
width: 20px;
height: 20px;
background-color: #be2418;
text-align-last: center;
color: #ffffff;
line-height: 20px;
border-bottom: 1px solid #ca7872;
font-size: 16px;
}
.nearby-locts .widget-posts {
float: left;
width: 100%;
}
.nearby-locts .ps-img > img {
float: left;
}
.nearby-locts .widget-posts > ul li {
margin-bottom: 20px;
}
.nearby-locts .widget-posts > ul li:last-child {
margin-bottom: 0;
}
/* ================ COMMENTS SECT ================= */
.comments-dv {
float: left;
width: 100%;
border:1px solid #dfe0e5;
padding: 23px 30px 30px 30px;
}
.comments-dv .comment-section .cm-info h3 {
letter-spacing: 0;
font-size: 14px;
text-transform: capitalize;
}
.comments-dv .comment-section .cm-info {
padding-top: 9px;
display: unset;
float: left;
width: auto;
}
.comments-dv .cm-img {
display: unset;
float: left;
}
.rating-lst {
float: left;
width: auto;
margin-top: 8px;
padding-left: 24px;
}
.rating-lst li {
display: inline-block;
float: none;
width: auto;
margin: 0;
margin-right: -2px;
}
.rating-lst li span {
display: inline-block;
color: #f3b00f;
font-size: 14px;
}
.comments-dv .cm-reply {
top: 8px;
}
.comments-dv .comment-section ul li:last-child {
margin-bottom: 0;
}
/* ====================== REV HD ===================== */
.review-hd {
float: left;
width: 100%;
padding-top: 47px;
border-top: 1px solid #e0e1e6;
margin-top: 37px;
}
.rev-hd {
float: left;
width: 100%;
}
.rev-hd > h3 {
width: auto;
float: left;
}
.rev-hd .rating-lst {
margin-top: 4px;
}
.rating-lst li span {
font-size: 18px;
}
.review-hd .post-comment-sec .col-lg-4 {
padding: 0 8px;
}
.review-hd .post-comment-sec {
margin-top: 7px;
}
.similar-listings-posts {
float: left;
width: 100%;
margin-top: 28px;
}
.similar-listings-posts .row {
margin: 0;
}
.similar-listings-posts .list-products .card .card-body p {
font-family: 'Poppins';
font-weight: 400;
}
.similar-listings-posts .card .card-body p i {
top: 1px;
}
.similar-listings-posts h3 {
margin-bottom: 23px;
}
.property-single-page-content .widget-posts .widget-title {
margin-bottom: 20px;
}
.property-single-page-content .widget-title {
letter-spacing: 1.1px;
}
.contct-info {
float: left;
width: 100%;
display: table;
margin-bottom: 6px;
margin-top: 0;
}
.contct-info img {
float: left;
display: table-cell;
}
.contct-nf {
display: table-cell;
width: 100%;
vertical-align: top;
padding-left: 23px;
}
.contct-nf > h3 {
color: #242526;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
margin-top: -3px;
margin-bottom: 1px;
}
.contct-nf > h4 {
color: #aeb4b6;
font-size: 12px;
margin-bottom: 13px;
}
.contct-nf > span {
display: inline-block;
font-size: 12px;
font-weight: 500;
}
.contct-nf > span i {
font-size: 16px;
padding-right: 7px;
}
.widget-form .post-comment-sec form button {
margin: -1px;
}
/* ================= WIDGET CALCULATOR =============== */
.widget-calculator ul {
float: left;
width: 100%;
}
.widget-calculator ul li {
float: left;
width: 100%;
border:1px solid #dfe0e5;
line-height: 48px;
height: 48px;
margin-bottom: 16px;
position: relative;
}
.widget-calculator ul li i {
font-size: 16px;
color: #67686c;
width: 49px;
text-align: center;
border-right: 1px solid #dfe0e5;
line-height: 46px;
position: absolute;
top: 0;
left: 0;
background-color: #fff;
}
.widget-calculator ul li:last-child {
margin-top: 4px;
border:0;
}
.widget-calculator ul li input {
float: left;
color: #67686c;
font-size: 12px;
padding-left: 16px;
height: 100%;
margin: 0;
width: 100%;
border:0;
padding: 0 15px 0 68px;
outline: none;
background-color: #ffffff;
}
.widget-calculator ul li input::-webkit-input-placeholder {
/* Chrome/Opera/Safari */
color: #67686c;
}
.widget-calculator ul li input::-moz-placeholder {
/* Firefox 19+ */
color: #67686c;
}
.widget-calculator ul li input:-ms-input-placeholder {
/* IE 10+ */
color: #67686c;
}
.widget-calculator ul li input:-moz-placeholder {
/* Firefox 18- */
color: #67686c;
}
.btn2 {
float: left;
width: 100%;
color: #ffffff;
font-size: 14px;
height: 51px;
line-height: 51px;
border-radius: 30px;
text-align: center;
border:0;
cursor: pointer;
position: relative;
z-index: 1;
overflow: hidden;
}
.btn2:hover {
color: #fff;
}
.property-single-page-content .sidebar.layout2 .widget-posts {
margin-top: 0;
}
.property-single-page-content .sidebar.layout2 .widget-posts {
margin-bottom: 48px;
}
.property-single-page-content .sidebar {
padding-left: 25px;
}
.property-single-page-content .sidebar.layout2 .widget-title {
margin-top: -6px;
}
.property-single-page-content .sidebar.layout2 .widget-form .widget-title {
margin-top: 0;
}
/* ================ eror-sec-data ============== */
.no-scroll {
overflow: hidden;
}
.theme-layout {
float: left;
width: 100%;
position: relative;
height: 100vh;
}
.eror-sec-data {
float: left;
width: 100%;
text-align: center;
position: fixed;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.eror-sec-data > h1 {
color: #242526;
font-size: 194px;
line-height: 194px;
margin-bottom: 7px;
}
.eror-sec-data > p {
font-size: 21px;
color: #67686c;
margin-bottom: 51px;
font-family: 'Poppins';
}
.eror-sec-data > a {
width: auto;
display: inline-block;
padding: 0 27px;
float: none;
}
/* ================== SIGN IN POPUP ================== */
.wrapper {
float: left;
width: 100%;
}
.wrapper:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0;
visibility: visible;
}
.wrapper.overlay-bgg:before {
opacity: 0.90;
visibility: visible;
z-index: 999;
}
.popup {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translateY(-50%) translateX(-50%);
-moz-transform: translateY(-50%) translateX(-50%);
-ms-transform: translateY(-50%) translateX(-50%);
-o-transform: translateY(-50%) translateX(-50%);
transform: translateY(-50%) translateX(-50%);
width: 410px;
text-align: center;
background-color: #ffffff;
opacity: 0;
visibility: visible;
margin-top: 100px;
z-index: -1;
}
#sign-popup.active.popup,
#register-popup.active.popup {
opacity: 1;
z-index: 99999;
visibility: visible;
margin: 0;
}
.popup > h3 {
color: #242526;
font-size: 18px;
font-weight: 500;
background-color: #d8d8d9;
padding: 18px 0 18px 0;
}
.popup-form > form {
float: left;
width: 100%;
padding: 40px 0;
border-bottom: 1px solid #dfe0e5;
padding-bottom: 22px;
margin-bottom: 20px;
}
.popup .input-field input[type="checkbox"] + label span {
width: 12px;
height: 11px;
border:1px solid #9b9ca0;
border-radius: 2px;
margin-top: 5px;
display: inline-block;
}
.popup .input-field input[type="checkbox"] + label span:before {
background-image: inherit;
border-color: transparent;
}
.popup .input-field > span {
font-size: 13px;
margin-top: 2px;
padding-left: 8px;
color: #9b9ca0;
}
.form-cp {
float: left;
width: 100%;
margin-top: 7px;
}
.popup-form .form-field {
margin-bottom: 10px;
}
.form-cp .form-field {
width: 50%;
float: left;
}
.form-cp > a {
display: inline-block;
float: right;
color: #242526;
font-size: 13px;
font-family: 'Raleway';
margin-top: 5px;
}
.fb-btn {
float: left;
width: 100%;
color: #ffffff;
font-size: 14px;
background-color: #3f5fa4;
height: 46px;
line-height: 46px;
border-radius: 30px;
margin-top: 2px;
}
.fb-btn i {
padding-right: 17px;
}
.fb-btn:hover {
color: #fff;
}
.popup-form {
float: left;
width: 100%;
padding: 0 30px 41px 30px;
}
.popup-form .btn2 {
margin-top: 9px;
cursor: pointer;
}
#register-popup .popup-form > form {
padding-bottom: 0;
border-bottom: 0;
margin-bottom: 0;
}
/* ===================== HOMEPAGE 2 ==================== */
header.pb .header .navbar-nav .nav-item .nav-link {
color: #fff;
}
header.pb .header .navbar-nav .submit-btn a {
color: #fff !important;
border-color: #fff;
}
header.pb .header .navbar-nav .submit-btn a:hover {
border-color: transparent;
}
.popular-listing.hp2 .card {
margin-bottom: 30px;
}
.popular-listing.hp2 .load-more-posts {
margin-top: 20px;
}
.popular-listing.hp2 {
padding: 105px 0;
}
.apartment-sec.section-padding {
padding: 0 0 34px 0;
}
.apartment-sec .card {
display: inline-block;
width: 100%;
border:0;
margin-top: -1px;
}
.apartment-sec .img-block {
width: 50%;
float: left;
height: 464px;
}
.apartment-sec .img-block img {
height: 100%;
object-fit: cover;
}
.apartment-sec .card_bod_full {
float: left;
width: 50%;
padding: 0 30px 0 38px;
border-bottom: 0;
position: relative;
box-sizing: border-box;
}
.apartment-sec .card_bod_full:before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: rgba(0,0,0,.125);
}
.apartment-sec .rate-info {
position: static;
padding: 0;
margin-bottom: 25px;
}
.apartment-sec .rate-info h5 {
font-size: 20px;
font-weight: 600;
display: inline-block;
padding-left: 16px;
position: relative;
top: 2px;
}
.apartment-sec .rate-info span {
display: inline-block;
color: #ffffff;
font-size: 12px;
background-color: #c2c2c5;
border-radius: 30px;
height: 25px;
line-height: 25px;
padding: 0 15px;
text-transform: uppercase;
}
.apartment-sec .card .card-body h3 {
font-size: 22px;
}
.apartment-sec .card .card-body p {
font-size: 15px;
line-height: 30px;
color: #67686c;
margin-bottom: 12px;
font-family: 'Raleway';
margin-bottom: 12px;
}
.apartment-sec .card .card-body {
padding: 41px 0 0 0;
}
.apartment-sec .card .card-body ul {
padding-bottom: 19px;
margin-top: 20px;
float: left;
width: 100%;
}
.apartment-sec .crd-links {
margin-top: 0;
width: 100%;
}
.apartment-sec .card_bod_full .card-footer {
padding: 14px 0 44px 0;
}
.apartment-sec .card_bod_full .card-footer a.plf {
float: right;
}
.apartment-sec .img-block img {
height: 100%;
object-fit: cover;
}
.blog-grid-posts.mg {
margin-top: 0;
}
.testimonail-sect {
float: left;
width: 100%;
margin-top: 0;
}
.comment-carousel {
float: left;
width: 100%;
}
.comment-info {
float: left;
width: 100%;
position: relative;
outline: none;
padding: 0 15px;
}
.slick-list {
margin: 0 -15px;
}
.comment-info > p {
float: left;
width: 100%;
font-size: 15px;
line-height: 30px;
color: #67686c;
padding: 35px 50px 34px 92px;
border:1px solid #e0e1e6;
position: relative;
}
.comment-info:before {
content: '“';
position: absolute;
top: 0;
left: 27px;
font-family: 'Poppins';
font-size: 125px;
}
.comment-info .cm-info-sec {
padding: 0;
padding: 32px 0 0 63px;
border:0;
margin: 0;
}
.comment-info .cm-info {
padding-top: 9px;
}
.comment-info .cm-info h3 {
font-size: 14px;
margin-bottom: 3px;
}
.comment-info .cm-info > h4 {
font-weight: 400;
font-size: 12px;
color: #aeb4b6;
}
.testimonial-sec.section-padding {
padding: 0 0 110px 0;
}
.blog-grid.hp2.section-padding {
padding: 40px 0 76px;
}
/* ====================== PRICING SEC =================== */
.pricing-sec.section-padding {
padding: 105px 0 0 0;
}
.price {
float: left;
width: 100%;
background-color: #ffffff;
padding: 45px 0 44px 0;
border:1px solid #dfe0e5;
text-align: center;
}
.price:hover {
border-color: #6c7de7;
}
.price:hover h4 {
color: #242526;
}
.price:hover .btn-default {
color: #fff;
border-color: transparent;
}
.price-sec {
float: left;
width: 100%;
}
.price > h4 {
display: inline-block;
color: #67686c;
font-size: 12px;
background-color: #efeff3;
padding: 0 15px;
height: 25px;
line-height: 25px;
border-radius: 30px;
margin-bottom: 22px;
}
.price > h2 {
font-size: 40px;
margin-bottom: 38px;
}
.price > ul {
float: left;
width: 100%;
margin-bottom: 29px;
}
.price > ul li {
float: left;
width: 100%;
color: #67686c;
font-size: 12px;
margin-bottom: 16px;
}
.price > .btn {
float: none;
display: inline-block;
padding: 0 26px;
}
/* ====================== agents-details ==================== */
.agents-sec.section-padding {
padding: 105px 0 0 0;
}
.agents-details {
float: left;
width: 100%;
}
.agent {
float: left;
width: 100%;
cursor: pointer;
position: relative;
}
.agent_img {
float: left;
width: 100%;
position: relative;
}
.agent_img > a img {
float: left;
width: 100%;
}
.agent_info {
float: left;
width: 100%;
border: 1px solid #e0e1e6;
border-top: 0;
padding: 17px 23px 23px 23px;
}
.agent_info > h3 {
color: #242526;
font-size: 18px;
font-weight: 500;
margin-bottom: 5px;
text-transform: capitalize;
}
.agent_info > h3 a {
color: #242526;
}
.agent_info > span {
color: #aeb4b6;
font-size: 12px;
padding-bottom: 22px;
float: left;
width: 100%;
}
.agent_info > strong {
font-size: 14px;
font-weight: 500;
border-top: 1px solid #dfe0e5;
padding: 18px 0 0;
float: left;
width: 100%;
}
.agent_info > strong i {
font-size: 16px;
padding-right: 7px;
position: relative;
top: 1px;
}
.ta-left {
float: left;
}
/* =========================== PARTNER LOGOS ============================ */
.partner-sec.section-padding {
padding: 105px 0 101px 0;
}
.partner-carousel {
float: left;
width: 100%;
text-align: center;
margin-top: 30px;
}
.partner-logo {
float: left;
width: 100%;
outline: none;
}
.partner-logo > a img {
float: none;
}
.partner-logo > a img:hover {
opacity: 0.5;
}
.banner_form {
position: absolute;
bottom: 0;
left: 0;
float: left;
width: 100%;
background-color: #d8d8d9;
z-index: 9999;
padding: 28px 0;
}
.banner_form .banner-search {
margin: 0;
-webkit-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-moz-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-ms-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
-o-box-shadow: 0 4px 10px rgba(1,2,2,0.11);
box-shadow: 0 4px 10px rgba(1,2,2,0.11);
}
/* ===================== DISCOVER PROPERTIES ==================== */
.discover-propt {
background-image: url(https://via.placeholder.com/1920x491);
background-repeat: no-repeat;
background-size: cover;
position: relative;
padding: 128px 0 140px 0;
margin-bottom: 99px;
}
.discover-text {
width: 510px;
margin: 0 auto;
text-align: center;
position: relative;
}
.discover-text > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
margin-bottom: 18px;
}
.discover-text > p {
font-family: 'Raleway';
font-size: 16px;
line-height: 30px;
margin-bottom: 25px;
color: #fff;
}
.discover-text .btn-default {
color: #fff;
border-color: transparent;
float: none;
}
.overlay-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0.81;
}
.explore-feature.hp4 {
padding: 105px 0 110px 0;
}
.popular-listing.hp4.section-padding {
padding: 105px 0 105px 0;
}
.popular-listing.hp42.section-padding {
padding-bottom: 110px;
}
/* ======================== HOMEPAGE 5 ========================= */
.banner-carousel {
float: left;
width: 100%;
height: 674px;
}
.banner-slide {
float: left;
width: 100%;
position: relative;
}
.banner-slide > img {
float: left;
width: 100%;
height: 100%;
object-fit: cover;
}
.slick-track,
.slick-list {
height: 100%;
}
.slick-prev,
.slick-next {
position: absolute;
top: 50%;
z-index: 999;
width: 51px;
height: 51px;
background-color: #ffffff;
line-height: 64px;
border-radius: 100px;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
}
.slick-prev {
left: 27px;
}
.slick-next {
right: 27px;
}
.slick-prev:hover:before,
.slick-next:hover:before {
color: #fff;
}
.slick-prev:before {
content: '';
}
.slick-next:before {
content: '';
}
.slick-prev:before,
.slick-next:before {
font-family: lineawesome;
font-size: 18px;
opacity: 1;
}
.banner_text {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
transform: translateY(-50%);
left: 0;
width: 370px;
z-index: 99;
}
.banner_text.fr {
left: auto !important;
}
.banner_text .card_bod_full {
width: 100%;
padding: 0;
border:0;
}
.banner_text .rate-info {
padding: 17px 24px 15px 24px;
position: static;
}
.banner_text .rate-info:before {
display: none;
}
.banner_text .rate-info > h5 {
color: #ffffff;
font-size: 20px;
font-weight: 600;
float: left;
}
.banner_text a {
outline: none;
}
.banner_text .rate-info > span {
float: right;
height: 25px;
line-height: 25px;
padding: 0 15px;
border-radius: 30px;
background-color: rgba(255,255,255,0.25);
color: #fff;
text-transform: uppercase;
letter-spacing: 1.1px;
margin-top: 2px;
font-size: 12px;
}
.banner_text .card {
border:0;
display: block;
float: left;
width: 100%;
border:1px solid #dfe0e5;
border-top: 0;
}
.banner_text .card .card-body {
float: left;
width: 100%;
background-color: #fff;
border:0;
padding: 21px 23px 0;
}
.banner_text .card .card-footer {
float: left;
width: 100%;
border:0;
padding: 19px 20px 21px 20px;
}
.banner_text .card .card-footer > a {
display: inline-block;
font-size: 12px;
}
.banner_text .card .card-footer > a i {
padding-left: 6px;
font-size: 12px;
position: relative;
top: 1px;
}
.banner_text .card .card-body ul li {
padding: 0 17px;
margin-right: -4px;
}
.banner_text .card .card-body ul li:first-child {
padding-left: 0;
}
.partner-sec.hp5.section-padding {
padding: 70px 0 67px;
}
.apartment-sec.hp5.section-padding {
padding: 0 0 30px 0;
}
.popular-listing.hp5 {
padding: 69px 0 99px;
}
.testimonial-sec.hp5.section-padding {
padding-bottom: 110px;
}
/* ======================= HOMEPAGE 6 ====================== */
.main-banner-sec {
position: relative;
}
.main-banner-sec .overlay-bg {
opacity: 0.50;
}
.main-banner-sec.hp6 {
background-image: url(https://via.placeholder.com/1920x610);
background-repeat: no-repeat;
background-size: cover;
padding: 184px 0 194px 0;
}
.bannner_text {
float: left;
width: 520px;
position: relative;
}
.bannner_text > h3 {
color: #ffffff;
font-size: 32px;
font-weight: 500;
margin-bottom: 18px;
}
.bannner_text > p {
color: #ffffff;
font-size: 16px;
line-height: 30px;
margin-bottom: 25px;
}
.btn-default.st1 {
float: left;
color: #fff;
border-color: transparent;
}
.explore-feature.hp6.section-padding {
padding: 105px 0 0 0;
}
.blog-grid.hp6.section-padding {
padding: 105px 0 80px 0;
}
.banner.hp7 {
padding: 213px 0 143px 0;
}
.banner.hp7 .widget-property-search {
float: left;
width: 100%;
}
.banner.hp7 .widget-property-search .banner-search {
background-color: #fff;
border-radius: 0;
padding: 30px 26px;
}
.banner.hp7 .widget-property-search .form_field.full {
width: 100%;
}
.banner.hp7 .widget-property-search .form_field {
width: 25%;
padding: 0 9px;
}
.banner.hp7 .feat-srch {
margin-bottom: 0;
}
.banner.hp7 .banner-content > h1 {
font-size: 50px;
color: #fff;
line-height: 65px;
font-weight: 700;
letter-spacing: 1.2px;
margin-bottom: 59px;
}
.banner.hp7 .widget-property-search .form_field {
margin-bottom: 19px;
}
.banner.hp7 .more-feat {
padding-left: 8px;
}
.banner.hp7 .feat-srch .form_field {
margin-bottom: 0;
float: right;
}
.banner.hp7 .container {
max-width: 960px;
padding: 0;
}
.explore-feature.hp7.section-padding {
padding: 99px 0 110px 0;
}
.popular-cities.hp7.section-padding .card {
margin-top: 0;
}
.popular-cities.hp7.section-padding {
padding: 0 0px 6px 0;
margin-top: -6px;
}
/* ====================== CATEGORIES DETAILS ================= */
.categories-details {
float: left;
width: 100%;
}
.categories-info {
float: left;
width: 100%;
border:1px solid #e0e1e6;
padding: 35px 0 31px 0;
text-align: center;
position: relative;
}
.categories-info:hover {
border-color: transparent;
}
.categories-info:hover .catg-icon > i,
.categories-info:hover > h3 a {
color: #fff;
}
.catg-icon {
height: 50px;
margin-bottom: 8px;
float: left;
width: 100%;
}
.catg-icon > i {
font-size: 42px;
display: inline-block;
margin-bottom: 16px;
}
.categories-info > h3 {
color: #242526;
font-size: 16px;
font-weight: 500;
float: left;
width: 100%;
}
.categories-info > h3 a {
color: #242526;
}
.categories-sec.section-padding {
padding: 105px 0 0 0;
}
.catg-icon > img {
float: none;
display: inline-block;
}
/* ================ FEATURES LIST ============== */
.features_list {
float: left;
width: 100%;
border-top: 1px solid #dfe0e5;
padding: 33px 0 0 0;
display: none;
margin: 23px 9px -11px 9px;
}
.half-map-sec .features_list {
margin-left: 0;
margin-right: 0;
}
.features_list ul {
float: left;
width: 100%;
}
.features_list ul li {
float: left;
width: 20%;
margin-bottom: 8px;
}
.banner.hp7 .more-feat h3 {
float: left;
}
.overlay-stick {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(97,99,122,0.65);
}
/* ===================== HOMEPAGE 4 ======================= */
.map-sec {
background-color: #f7f7f8;
padding: 65px 0 70px 0;
}
.map-details {
float: left;
width: 100%;
}
.map-details #map {
width: 100%;
height: 354px;
}
/* ==================== map-city-links ================== */
.map-city-links {
float: left;
width: 100%;
margin-top: 0;
}
.map-city-links ul {
float: left;
width: 100%;
}
.map-city-links ul li {
float: left;
width: 50%;
margin-bottom: 15px;
}
.map-city-links ul li a {
display: inline-block;
color: #242526;
font-size: 14px;
font-weight: 500;
}
.map-city-links ul li a:hover {
padding-left: 8px;
}
.form-banner .banner_form {
position: static;
}
.vis-hid {display: none;}
.success-message{
display: none;
}
.error-message{
display: none;
}
label.error {
position: absolute;
top: -41px;
left: 0;
width: 100%;
display: none !important;
}
.contact_form > form .form-field {
position: relative;
}
.contact_form > form .form-field input,
.contact_form > form .form-field textarea {
margin: 0;
}
.error {
outline:1px solid #6a7be7;
}
.error {
color: #fff;
font-size: 14px;
margin-bottom: 20px;
padding: 10px;
width: 100%;
}
.form-group {
float: left;
width: 100%;
padding: 20px 0;
}
.success-message,
.error-message,
.missing-message {
color: #fff;
font-size: 14px;
padding: 15px;
display: none;
margin-bottom: 20px;
}
.form-fieldss {
float: left;
width: 100%;
}
.no-pt {
padding: 0;
margin: 0;
}
.language-selector {
float: right;
width: 100%;
}
.language-selector .drop-menu {
padding: 0;
margin: 0;
background: inherit;
border:0;
float: right;
}
.language-selector .drop-menu .select {
color: #d6d8e0;
float: right;
width: 130px;
padding: 0;
height: auto;
display: inline-block;
position: relative;
}
.language-selector .drop-menu .select span img {
padding-right: 10px;
}
.language-selector .drop-menu .select span,
.language-selector .drop-menu .select i {
color: #d6d8e0 !important;
}
.language-selector .drop-menu .select i {
top: 15px;
}
.language-selector .drop-menu .dropeddown {
width: 150px;
padding: 0;
border:0;
left: auto;
right: 0;
background-color: #070f43;
top: 95%;
}
.language-selector .drop-menu .dropeddown li {
padding: 0 20px;
border-bottom: 1px solid #2f376c;
color: #fff;
}
.language-selector .drop-menu .dropeddown li img {
padding-right: 10px;
}
.language-selector .drop-menu .dropeddown li a {
color: #242526;
}
/* ============================ LANDING PAGE =========================== */
.landing-header {
float: left;
width: 100%;
position: absolute;
top:0;
left: 0;
padding: 50px 0;
z-index: 99;
}
.landing-links {
float: left;
margin-top: 13px;
}
.landing-links li {
display: inline-block;
margin-right: 34px;
}
.landing-links li:last-child {
margin-right: 0;
}
.landing-links li a {
display: inline-block;
color: #ffffff;
font-family: 'poppins';
font-size: 14px;
}
.landing-banner {
background-image: url(https://via.placeholder.com/1920x950);
padding: 330px 0 230px 0;
background-size: cover;
background-repeat: no-repeat;
}
.landing-banner:before {
content: '';
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
background-color: #070f43;
opacity: 0.85;
}
.ld-banner-details {
float: left;
width: 100%;
position: relative;
}
.ld-logo {
float: left;
width: 100%;
margin: 7px 0 7px 0;
}
.btn-default.white {
display: inline-block;
color: #6778e2;
background-color: #fff;
height: 65px;
line-height: 65px;
padding: 0 38px;
border-radius: 50px;
margin-top: 50px;
float: none;
border: 0;
margin-bottom: 1px;
}
.btn-default.lnd {
color: #fff;
border-color: #fff;
padding: 0 38px;
margin-top: -3px;
}
.btn-default.lnd:hover {
border-color: transparent;
}
/* ========================== DEMO SECTION =========================== */
.demo-section {
background-color: #f5f5f9;
padding: 90px 0;
}
.demo-sec-title {
float: left;
width: 100%;
margin-bottom: 60px;
margin-top: -8px;
}
.demo-sec-title > h2 {
color: #242526;
font-size: 32px;
margin-bottom: 10px;
font-weight: 400;
}
.demo-sec-title > p {
color: #67686c;
font-size: 16px;
}
.demo-pages {
float: left;
width: 100%;
margin-bottom: -51px;
}
.masonary {
float: left;
width: 100%;
}
.demo-page {
float: left;
width: 100%;
text-align: center;
margin-bottom: 54px;
}
.mg-t20 {
margin-top: 20px;
}
.demo-page > h3 {
color: #242526;
font-size: 18px;
float: left;
width: 100%;
}
.demo-page > h3 a {
color: #242526;
display: inline-block;
padding: 15px 0 0 0;
}
.page-img {
float: left;
width: 100%;
}
.pg-op {
float: left;
width: 100%;
}
.page-img > img {
width: 100%;
box-shadow: 0 0 15px rgba(33,57,107,0.12);
}
.landing-footer {
background-color: #303e94;
padding: 55px 0;
text-align: center;
}
.landing-footer .btn-default {
float: none;
margin: 0;
font-weight: 500;
font-size: 14px;
box-shadow: 0 0 10px rgba(0,0,0,0.89);
padding: 0 33px;
margin-bottom: -5px;
}
.property-main-img {
float: left;
width: 100%;
}
.slick-slide {
outline: none;
cursor: pointer;
} | 0.177918 | 0.058292 |
.page{
/* background-color: black; */
/* background-color: blanchedalmond; */
}
.page-content{
width: 90%;
margin: 0 auto;
/* background-color: rgb(185, 185, 248); */
margin-top: 100px;
}
.img{
/* width: 200px; */
/* width: 190px; */
width: clamp(190px, 20vw ,200px); /* starts decreasing from 200px to 190px exactly at viewport width 1000px*/
/* margin-left: 5%;
margin-top: 100px; */
}
.page-content h4{
/* font-size: 1.56em; */
font-size: clamp(1.45em,2.496vw,1.56em);
font-weight: 500;
margin-top: 20px;
margin-bottom: 50px;
}
.page-content h3{
/* font-size: 2.25em; */
/* font-size: 1.43em; */
font-size: clamp(1.75em, 2.63vw, 2.25em);
font-weight: 300;
width: 65%;
}
.page-content button{
/* font-size: 1.125em; */
font-size: clamp(1em, 2.7vw, 1.125em);
font-weight: 600;
/* padding: 20px 85px; */
padding: clamp(15px, 1.72vw, 20px) clamp(60px, 6.89vw, 85px); /* minimum values will be activated at 870px*/
/* margin: 70px 0; */
margin: clamp(55px, 6.32vw, 70px) 0;
border: none;
outline: none;
cursor: pointer;
background-color: transparent;
transition: transform 0.4s,color;
box-shadow:
6px 6px 10px rgba(0,0,0,0.05),
-6px -6px 10px rgba(255,255,255,0.65);
}
.page-content button:hover{
transform: scale(1.1);
color: #002fca;
}
.page-content h2{
/* font-size: 2em; */
font-size: clamp(1.75em, 3.218vw,2em);
font-weight: 500;
}
.line{
/* width: 85px; */
width: clamp(65px, 7.47vw, 85px);
background-color: #0E43EF;
height: 5px;
margin-top: 5px;
border-radius: 20px;
}
.related{
display: flex;
justify-content: space-between;
margin-top: 50px;
width: 100%;
}
.related img{
/* height: 38px; */
height: clamp(30px,3.448vw,38px);
transition: transform 0.3s;
}
.related img:hover{
transform: scale(1.1);
}
@media only screen and (max-width: 1000px){
.page-content h3{
width: 75%;
}
}
@media only screen and (max-width: 870px){
.related img{
/* height: 25px; */
height: clamp(25px,3.29vw,30px);
}
}
@media only screen and (max-width: 760px){
.page-content{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: clamp(50px,8.33vw,100px);
}
.not-visible{
display: none;
}
.related{
flex-direction: column;
}
.related img{
height: 35px;
}
.related a:nth-child(2){
margin: 30px 0;
}
.img{
width: clamp(150px,38vw,190px);
}
.page-content h4{
/* font-size: 23.2px; */
font-size: clamp(19px,4.64vw,23.2px);
}
.page-content h3{
/* font-size: 20px; */
width: 100%;
font-size: clamp(20px,5.6vw,28px);
}
.page-content h2{
font-size: clamp(23px,5.6vw,28px);
}
.page-content>a{
/* background-color: red; */
width: fit-content;
height: fit-content;
/* */
margin: clamp(55px, 6.32vw, 70px) 0;
}
.page-content button{
margin: 0;
}
} | src/css/netflix.module.css | .page{
/* background-color: black; */
/* background-color: blanchedalmond; */
}
.page-content{
width: 90%;
margin: 0 auto;
/* background-color: rgb(185, 185, 248); */
margin-top: 100px;
}
.img{
/* width: 200px; */
/* width: 190px; */
width: clamp(190px, 20vw ,200px); /* starts decreasing from 200px to 190px exactly at viewport width 1000px*/
/* margin-left: 5%;
margin-top: 100px; */
}
.page-content h4{
/* font-size: 1.56em; */
font-size: clamp(1.45em,2.496vw,1.56em);
font-weight: 500;
margin-top: 20px;
margin-bottom: 50px;
}
.page-content h3{
/* font-size: 2.25em; */
/* font-size: 1.43em; */
font-size: clamp(1.75em, 2.63vw, 2.25em);
font-weight: 300;
width: 65%;
}
.page-content button{
/* font-size: 1.125em; */
font-size: clamp(1em, 2.7vw, 1.125em);
font-weight: 600;
/* padding: 20px 85px; */
padding: clamp(15px, 1.72vw, 20px) clamp(60px, 6.89vw, 85px); /* minimum values will be activated at 870px*/
/* margin: 70px 0; */
margin: clamp(55px, 6.32vw, 70px) 0;
border: none;
outline: none;
cursor: pointer;
background-color: transparent;
transition: transform 0.4s,color;
box-shadow:
6px 6px 10px rgba(0,0,0,0.05),
-6px -6px 10px rgba(255,255,255,0.65);
}
.page-content button:hover{
transform: scale(1.1);
color: #002fca;
}
.page-content h2{
/* font-size: 2em; */
font-size: clamp(1.75em, 3.218vw,2em);
font-weight: 500;
}
.line{
/* width: 85px; */
width: clamp(65px, 7.47vw, 85px);
background-color: #0E43EF;
height: 5px;
margin-top: 5px;
border-radius: 20px;
}
.related{
display: flex;
justify-content: space-between;
margin-top: 50px;
width: 100%;
}
.related img{
/* height: 38px; */
height: clamp(30px,3.448vw,38px);
transition: transform 0.3s;
}
.related img:hover{
transform: scale(1.1);
}
@media only screen and (max-width: 1000px){
.page-content h3{
width: 75%;
}
}
@media only screen and (max-width: 870px){
.related img{
/* height: 25px; */
height: clamp(25px,3.29vw,30px);
}
}
@media only screen and (max-width: 760px){
.page-content{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: clamp(50px,8.33vw,100px);
}
.not-visible{
display: none;
}
.related{
flex-direction: column;
}
.related img{
height: 35px;
}
.related a:nth-child(2){
margin: 30px 0;
}
.img{
width: clamp(150px,38vw,190px);
}
.page-content h4{
/* font-size: 23.2px; */
font-size: clamp(19px,4.64vw,23.2px);
}
.page-content h3{
/* font-size: 20px; */
width: 100%;
font-size: clamp(20px,5.6vw,28px);
}
.page-content h2{
font-size: clamp(23px,5.6vw,28px);
}
.page-content>a{
/* background-color: red; */
width: fit-content;
height: fit-content;
/* */
margin: clamp(55px, 6.32vw, 70px) 0;
}
.page-content button{
margin: 0;
}
} | 0.264358 | 0.085289 |
@charset "UTF-8";
/*
(c) 2017 <NAME> <<EMAIL>>
licensed under MIT license
based on 'mario' theme
*/
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i);
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
* {
box-sizing: border-box;
}
html {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'Roboto Condensed', 'Noto Sans KR', sans-serif;
}
body {
position: absolute;
bottom: 0;
margin: 0;
width: 100%;
}
#chat_wrapper {
width: 100%;
display: flex;
flex-direction: column;
line-height: 1.5rem;
word-wrap: break-word;
}
.chat_outer_box {
margin: 0.25rem 0;
width: calc(100% - 0.5rem);
}
/* Nickname / Badge */
.chat_upper_box {
display: flex;
}
.chat_nickname_box {
position: relative;
min-width: 8rem;
padding: 0 5rem 0 0.5rem;
color: #fff !important;
background: linear-gradient(to right, rgba(255, 165, 0, 0.75) 30%, rgba(255, 165, 0, 0));
border-left: 0.08rem solid #fa0;
font-size: 1.5rem;
}
.chat_nickname_box::before {
display: block;
content: '';
width: 100%;
height: 0.0625rem;
background: linear-gradient(to right, rgb(255, 165, 0) 20%, rgba(255, 165, 0, 0));
position: absolute;
top: 0;
left: 0;
}
.chat_badge_box {
display: flex;
align-items: center;
justify-content: flex-end;
flex-grow: 1;
}
.chat_badge_box > img {
width: 1.25rem;
height: 1.25rem;
border: 0.08rem solid #fff;
margin: 0 0 0 -0.08rem;
}
/* Messages */
.chat_lower_box {
position: relative;
border: 0.08rem solid rgba(255, 255, 255, 0.9);
border-left-color: #fa0;
background: rgba(31, 31, 31, 0.75);
color: #fff;
}
.chat_msg_box {
padding: 0.375rem;
max-height: 14rem; /* 텍스트 영역 최대 높이 */
overflow: hidden;
font-size: 1.5rem; /* 본문 텍스트 크기만 수정하려면 여기 */
}
.chat_msg_box.image_only {
text-align: center;
}
/* Image Sizes */
.cheer_icon, .twitch_emote, .dccon {
vertical-align: bottom;
}
.cheer_icon {
height: 1.25rem;
}
.twitch_emote {
height: 2rem;
}
.dccon {
height: 6.25rem;
}
/* Special Cases */
@keyframes blinking-text {
from { color: #000; }
33% { color: #AD4711; }
to { color: #FC6C19; }
}
.chat_subscribe_box,
.chat_cheer_box { /* TODO: fix outgoing twip donations */
text-align: right;
font-weight: bold;
padding: 0.125rem 0.25rem 0 0.25rem;
background: #fff;
text-shadow: none;
color: #000;
animation: blinking-text 1s infinite alternate ease;
}
.chat_subscribe_box {
margin: -0.75rem -0.25rem 0.25rem -0.25rem;
}
.chat_cheer_text {
color: #FDCD19;
display: inline-block;
padding: 0.125rem 0.25rem;
background-color: rgba(255, 255, 255, 0.25);
}
/* Clip */
.chat_clip_box {
display: flex;
flex-direction: column;
position: relative;
height: 8rem;
overflow: hidden;
padding: 0.25rem 0.5rem;
}
.chat_clip_box.invalid {
height: 1.5rem;
text-align: center;
color: rgba(255, 0, 0, 0.75);
text-shadow: none;
}
.chat_clip_box > img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
max-width: 100%;
z-index: 0;
}
.chat_clip_title, .chat_clip_by {
position: relative;
}
.chat_clip_title {
flex-grow: 1;
overflow: hidden;
}
.chat_clip_by {
text-align: right;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.5);
}
/* add small credit */
.chat_upper_box[style="display: none;"] + .chat_lower_box > .chat_msg_box::after {
display: block;
content: 'WIP pubg theme by hibiyasleep';
font-size: 0.5rem;
text-align: center;
background: rgba(0, 0, 0, 0.5);
margin: 0 -0.5rem -0.5rem -0.5rem;
padding: 0 0.5rem 0.25rem 0.5rem
} | theme/default/theme.css | @charset "UTF-8";
/*
(c) 2017 <NAME> <<EMAIL>>
licensed under MIT license
based on 'mario' theme
*/
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400i,700,700i);
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
* {
box-sizing: border-box;
}
html {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
font-family: 'Roboto Condensed', 'Noto Sans KR', sans-serif;
}
body {
position: absolute;
bottom: 0;
margin: 0;
width: 100%;
}
#chat_wrapper {
width: 100%;
display: flex;
flex-direction: column;
line-height: 1.5rem;
word-wrap: break-word;
}
.chat_outer_box {
margin: 0.25rem 0;
width: calc(100% - 0.5rem);
}
/* Nickname / Badge */
.chat_upper_box {
display: flex;
}
.chat_nickname_box {
position: relative;
min-width: 8rem;
padding: 0 5rem 0 0.5rem;
color: #fff !important;
background: linear-gradient(to right, rgba(255, 165, 0, 0.75) 30%, rgba(255, 165, 0, 0));
border-left: 0.08rem solid #fa0;
font-size: 1.5rem;
}
.chat_nickname_box::before {
display: block;
content: '';
width: 100%;
height: 0.0625rem;
background: linear-gradient(to right, rgb(255, 165, 0) 20%, rgba(255, 165, 0, 0));
position: absolute;
top: 0;
left: 0;
}
.chat_badge_box {
display: flex;
align-items: center;
justify-content: flex-end;
flex-grow: 1;
}
.chat_badge_box > img {
width: 1.25rem;
height: 1.25rem;
border: 0.08rem solid #fff;
margin: 0 0 0 -0.08rem;
}
/* Messages */
.chat_lower_box {
position: relative;
border: 0.08rem solid rgba(255, 255, 255, 0.9);
border-left-color: #fa0;
background: rgba(31, 31, 31, 0.75);
color: #fff;
}
.chat_msg_box {
padding: 0.375rem;
max-height: 14rem; /* 텍스트 영역 최대 높이 */
overflow: hidden;
font-size: 1.5rem; /* 본문 텍스트 크기만 수정하려면 여기 */
}
.chat_msg_box.image_only {
text-align: center;
}
/* Image Sizes */
.cheer_icon, .twitch_emote, .dccon {
vertical-align: bottom;
}
.cheer_icon {
height: 1.25rem;
}
.twitch_emote {
height: 2rem;
}
.dccon {
height: 6.25rem;
}
/* Special Cases */
@keyframes blinking-text {
from { color: #000; }
33% { color: #AD4711; }
to { color: #FC6C19; }
}
.chat_subscribe_box,
.chat_cheer_box { /* TODO: fix outgoing twip donations */
text-align: right;
font-weight: bold;
padding: 0.125rem 0.25rem 0 0.25rem;
background: #fff;
text-shadow: none;
color: #000;
animation: blinking-text 1s infinite alternate ease;
}
.chat_subscribe_box {
margin: -0.75rem -0.25rem 0.25rem -0.25rem;
}
.chat_cheer_text {
color: #FDCD19;
display: inline-block;
padding: 0.125rem 0.25rem;
background-color: rgba(255, 255, 255, 0.25);
}
/* Clip */
.chat_clip_box {
display: flex;
flex-direction: column;
position: relative;
height: 8rem;
overflow: hidden;
padding: 0.25rem 0.5rem;
}
.chat_clip_box.invalid {
height: 1.5rem;
text-align: center;
color: rgba(255, 0, 0, 0.75);
text-shadow: none;
}
.chat_clip_box > img {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
max-width: 100%;
z-index: 0;
}
.chat_clip_title, .chat_clip_by {
position: relative;
}
.chat_clip_title {
flex-grow: 1;
overflow: hidden;
}
.chat_clip_by {
text-align: right;
font-size: 0.875rem;
color: rgba(255, 255, 255, 0.5);
}
/* add small credit */
.chat_upper_box[style="display: none;"] + .chat_lower_box > .chat_msg_box::after {
display: block;
content: 'WIP pubg theme by hibiyasleep';
font-size: 0.5rem;
text-align: center;
background: rgba(0, 0, 0, 0.5);
margin: 0 -0.5rem -0.5rem -0.5rem;
padding: 0 0.5rem 0.25rem 0.5rem
} | 0.355887 | 0.062962 |
@font-face {
font-family: 'Open sans';
font-style: normal;
font-weight: 700;
src: local('Open sans'), local('Open-sans'), url(../fonts/OpenSans-Regular.ttf) format('truetype');
}
* {
box-sizing: border-box;
}
.card {
position: relative;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(0);
-ms-transform: translateX(-50%) translateY(0);
transform: translateX(-50%) translateY(0);
background: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}
.card:hover {
box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}
.card a {
color: inherit;
text-decoration: none;
}
.card__date {
background: #08c;
position: absolute;
top: 20px;
right: 20px;
width: 45px;
height: 45px;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 13px;
font-weight: bold;
padding-top: 10px;
}
.card__date__day {
display: block;
font-size: 14px;
}
.card__date__month {
display: block;
font-size: 10px;
text-transform: uppercase;
}
.card__thumb {
height: 235px;
overflow: hidden;
background-color: #000;
-webkit-transition: height 0.3s;
transition: height 0.3s;
}
.card__thumb img {
width: 100%;
display: block;
opacity: 1;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.card:hover .card__thumb img {
opacity: 0.6;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.card:hover .card__thumb {
height: 90px;
}
.card__body {
position: relative;
padding: 20px;
height: 185px;
-webkit-transition: height 0.3s;
transition: height 0.3s;
}
.card:hover .card__body {
height: 330px;
}
.card__category {
position: absolute;
top: -25px;
left: 0;
height: 25px;
padding: 0 15px;
background: #08c;
color: #fff;
font-size: 11px;
line-height: 25px;
}
.card__category a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
}
.card__title {
padding: 0 0 10px 0;
margin: 0;
font-size: 22px;
color: #000;
font-weight: bold;
}
.card:hover .card__title {
-webkit-animation: titleBlur 0.3s;
animation: titleBlur 0.3s;
}
.card__subtitle {
margin: 0;
padding: 0 0 10px 0;
color: #08c;
font-size: 19px;
}
.card:hover .card__subtitle {
-webkit-animation: subtitleBlur 0.3s;
animation: subtitleBlur 0.3s;
}
.card__description {
position: absolute;
left: 20px;
right: 20px;
bottom: 85px;
margin: 0;
padding: 0;
color: #666c74;
font-size: 14px;
line-height: 27px;
opacity: 0;
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(25px);
-ms-transform: translateY(25px);
transform: translateY(25px);
}
.card:hover .card__description {
opacity: 1;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.card__keywords {
position: absolute;
color: #a3a9ab;
bottom: 25px;
font-size: 11px;
}
.card__footer {
position: relative;
color: #a3a9ab;
bottom: 20px;
left: 20px;
right: 20px;
font-size: 11px;
}
.card__footer .icon--comment {
margin-left: 10px;
}
.icon {
display: inline-block;
vertical-align: middle;
margin-right: 2px;
}
.icon:before {
display: inline-block;
text-align: center;
height: 14px;
width: 14px;
margin-top: -2px;
margin-right: 6px;
}
.icon--comment:before {
content: "\f0e6 ";
display: inline-block;
font: normal normal normal 16px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.icon--time:before {
content: "\f017 ";
display: inline-block;
font: normal normal normal 16px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
@-webkit-keyframes titleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px transparent;
}
}
@keyframes titleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px transparent;
}
}
@-webkit-keyframes subtitleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0);
}
}
@keyframes subtitleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0);
}
} | user-old/themes/cardstack/css/card.style.css | @font-face {
font-family: 'Open sans';
font-style: normal;
font-weight: 700;
src: local('Open sans'), local('Open-sans'), url(../fonts/OpenSans-Regular.ttf) format('truetype');
}
* {
box-sizing: border-box;
}
.card {
position: relative;
top: 50%;
left: 50%;
-webkit-transform: translateX(-50%) translateY(0);
-ms-transform: translateX(-50%) translateY(0);
transform: translateX(-50%) translateY(0);
background: #fff;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
-webkit-transition: box-shadow 0.3s;
transition: box-shadow 0.3s;
}
.card:hover {
box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}
.card a {
color: inherit;
text-decoration: none;
}
.card__date {
background: #08c;
position: absolute;
top: 20px;
right: 20px;
width: 45px;
height: 45px;
border-radius: 50%;
color: #fff;
text-align: center;
line-height: 13px;
font-weight: bold;
padding-top: 10px;
}
.card__date__day {
display: block;
font-size: 14px;
}
.card__date__month {
display: block;
font-size: 10px;
text-transform: uppercase;
}
.card__thumb {
height: 235px;
overflow: hidden;
background-color: #000;
-webkit-transition: height 0.3s;
transition: height 0.3s;
}
.card__thumb img {
width: 100%;
display: block;
opacity: 1;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.card:hover .card__thumb img {
opacity: 0.6;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.card:hover .card__thumb {
height: 90px;
}
.card__body {
position: relative;
padding: 20px;
height: 185px;
-webkit-transition: height 0.3s;
transition: height 0.3s;
}
.card:hover .card__body {
height: 330px;
}
.card__category {
position: absolute;
top: -25px;
left: 0;
height: 25px;
padding: 0 15px;
background: #08c;
color: #fff;
font-size: 11px;
line-height: 25px;
}
.card__category a {
color: #fff;
text-decoration: none;
text-transform: uppercase;
}
.card__title {
padding: 0 0 10px 0;
margin: 0;
font-size: 22px;
color: #000;
font-weight: bold;
}
.card:hover .card__title {
-webkit-animation: titleBlur 0.3s;
animation: titleBlur 0.3s;
}
.card__subtitle {
margin: 0;
padding: 0 0 10px 0;
color: #08c;
font-size: 19px;
}
.card:hover .card__subtitle {
-webkit-animation: subtitleBlur 0.3s;
animation: subtitleBlur 0.3s;
}
.card__description {
position: absolute;
left: 20px;
right: 20px;
bottom: 85px;
margin: 0;
padding: 0;
color: #666c74;
font-size: 14px;
line-height: 27px;
opacity: 0;
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateY(25px);
-ms-transform: translateY(25px);
transform: translateY(25px);
}
.card:hover .card__description {
opacity: 1;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
}
.card__keywords {
position: absolute;
color: #a3a9ab;
bottom: 25px;
font-size: 11px;
}
.card__footer {
position: relative;
color: #a3a9ab;
bottom: 20px;
left: 20px;
right: 20px;
font-size: 11px;
}
.card__footer .icon--comment {
margin-left: 10px;
}
.icon {
display: inline-block;
vertical-align: middle;
margin-right: 2px;
}
.icon:before {
display: inline-block;
text-align: center;
height: 14px;
width: 14px;
margin-top: -2px;
margin-right: 6px;
}
.icon--comment:before {
content: "\f0e6 ";
display: inline-block;
font: normal normal normal 16px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
.icon--time:before {
content: "\f017 ";
display: inline-block;
font: normal normal normal 16px/1 FontAwesome;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-transform: translate(0, 0);
-ms-transform: translate(0, 0);
transform: translate(0, 0);
}
@-webkit-keyframes titleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px transparent;
}
}
@keyframes titleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 0, 0, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px transparent;
}
}
@-webkit-keyframes subtitleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0);
}
}
@keyframes subtitleBlur {
0% {
opacity: 0.6;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0.6);
}
100% {
opacity: 1;
text-shadow: 0px 5px 5px rgba(0, 136, 204, 0);
}
} | 0.429429 | 0.07393 |
.collab_permission {
background: #ffffff;
border: 1px solid #f1f1f1;
box-shadow: 0px 2px 10px rgba(125, 177, 224, 0.25),
0px 6px 28px -3px rgba(165, 165, 165, 0.4);
border-radius: 9px;
width: 520px;
z-index: 200;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.collab_permission:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.collab_nav {
padding: 10px;
}
.collab_search {
border: 1px solid rgba(153, 153, 153, 0.5);
box-sizing: border-box;
border-radius: 2px;
width: 70%;
}
collab_search input {
width: 80%;
}
.invite_btn {
outline: none;
border: 1px solid #00b876;
border-radius: 3px;
padding: 10px 14px;
color: #00b876;
font-size: 12px;
line-height: 20px;
font-weight: bold;
}
.invite_btn:hover {
background-color: #00b876;
color: #fff;
}
.InviteModalCloseBtn:hover {
transition: 0.4s;
background: rgb(73, 73, 73);
color: white;
}
.collab_body {
width: 96%;
margin: 5px auto;
max-height: 400px;
overflow-y: scroll;
}
text {
margin-left: 7px;
}
text h3 {
color: #3a3a3a;
font-size: 14px;
line-height: 17px;
font-weight: 600;
}
text p {
color: #9a9a9a;
font-size: 12px;
line-height: 14px;
}
ul li {
margin: 10px 0;
}
.collab_footer {
margin-left: 2%;
}
.collab_footer a {
color: #00b876;
font-size: 14px;
line-height: 17px;
font-weight: 600;
}
@media (min-width: 300px) and (max-width: 499px) {
.collab_permission {
width: 98%;
}
.collab_nav {
padding: 5px;
}
.collab_search {
width: 200px;
}
collab_search input {
width: 90%;
}
.collab_body {
width: 98%;
margin: 2px auto;
}
text {
margin-left: 4px;
}
text h3 {
font-size: 10px;
line-height: 14px;
}
text p {
font-size: 8px;
line-height: 12px;
}
.invite_btn {
padding: 8px;
font-size: 9px;
line-height: 18px;
height: 100%;
}
.image img {
display: none;
}
} | frontend/src/components/Collaborators/CollaboratorCard/collab.css | .collab_permission {
background: #ffffff;
border: 1px solid #f1f1f1;
box-shadow: 0px 2px 10px rgba(125, 177, 224, 0.25),
0px 6px 28px -3px rgba(165, 165, 165, 0.4);
border-radius: 9px;
width: 520px;
z-index: 200;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.collab_permission:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
margin-right: -4px;
}
.collab_nav {
padding: 10px;
}
.collab_search {
border: 1px solid rgba(153, 153, 153, 0.5);
box-sizing: border-box;
border-radius: 2px;
width: 70%;
}
collab_search input {
width: 80%;
}
.invite_btn {
outline: none;
border: 1px solid #00b876;
border-radius: 3px;
padding: 10px 14px;
color: #00b876;
font-size: 12px;
line-height: 20px;
font-weight: bold;
}
.invite_btn:hover {
background-color: #00b876;
color: #fff;
}
.InviteModalCloseBtn:hover {
transition: 0.4s;
background: rgb(73, 73, 73);
color: white;
}
.collab_body {
width: 96%;
margin: 5px auto;
max-height: 400px;
overflow-y: scroll;
}
text {
margin-left: 7px;
}
text h3 {
color: #3a3a3a;
font-size: 14px;
line-height: 17px;
font-weight: 600;
}
text p {
color: #9a9a9a;
font-size: 12px;
line-height: 14px;
}
ul li {
margin: 10px 0;
}
.collab_footer {
margin-left: 2%;
}
.collab_footer a {
color: #00b876;
font-size: 14px;
line-height: 17px;
font-weight: 600;
}
@media (min-width: 300px) and (max-width: 499px) {
.collab_permission {
width: 98%;
}
.collab_nav {
padding: 5px;
}
.collab_search {
width: 200px;
}
collab_search input {
width: 90%;
}
.collab_body {
width: 98%;
margin: 2px auto;
}
text {
margin-left: 4px;
}
text h3 {
font-size: 10px;
line-height: 14px;
}
text p {
font-size: 8px;
line-height: 12px;
}
.invite_btn {
padding: 8px;
font-size: 9px;
line-height: 18px;
height: 100%;
}
.image img {
display: none;
}
} | 0.400163 | 0.202443 |
html, body {
font-family: 'Open Sans', 'Helvetica', sans-serif;
}
.necir-avatar {
width: 48px;
height: 48px;
border-radius: 24px;
}
.necir-layout .necir-header .mdl-textfield {
padding: 0px;
margin-top: 41px;
}
.necir-layout .necir-header .mdl-textfield .mdl-textfield__expandable-holder {
bottom: 19px;
}
.necir-layout .mdl-layout__header .mdl-layout__drawer-button {
color: rgba(0, 0, 0, 0.54);
}
.mdl-layout__drawer .avatar {
margin-bottom: 16px;
}
.necir-drawer {
border: none;
}
/* iOS Safari specific workaround */
.necir-drawer .mdl-menu__container {
z-index: -1;
}
.necir-drawer .necir-navigation {
z-index: -2;
}
/* END iOS Safari specific workaround */
.necir-drawer .mdl-menu .mdl-menu__item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.necir-drawer-header {
box-sizing: border-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 16px;
height: 151px;
}
.necir-avatar-dropdown {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
}
.necir-navigation {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.necir-layout .necir-navigation .mdl-navigation__link {
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
color: rgba(255, 255, 255, 0.56);
font-weight: 500;
}
.necir-layout .necir-navigation .mdl-navigation__link:hover {
background-color: #00BCD4;
color: #37474F;
}
.necir-navigation .mdl-navigation__link .material-icons {
font-size: 24px;
color: rgba(255, 255, 255, 0.56);
margin-right: 32px;
}
.necir-content {
max-width: 100vw;
overflow-x: auto;
}
.necir-charts {
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
}
.necir-chart:nth-child(1) {
color: #ACEC00;
}
.necir-chart:nth-child(2) {
color: #00BBD6;
}
.necir-chart:nth-child(3) {
color: #BA65C9;
}
.necir-chart:nth-child(4) {
color: #EF3C79;
}
.necir-graphs {
padding: 16px 32px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
/* TODO: Find a proper solution to have the graphs
* not float around outside their container in IE10/11.
* Using a browserhacks.com solution for now.
*/
_:-ms-input-placeholder, :root .necir-graphs {
min-height: 664px;
}
_:-ms-input-placeholder, :root .necir-graph {
max-height: 300px;
}
/* TODO end */
.necir-graph:nth-child(1) {
color: #00b9d8;
}
.necir-graph:nth-child(2) {
color: #d9006e;
}
.necir-cards {
-webkit-align-items: flex-start;
-ms-flex-align: start;
-ms-grid-row-align: flex-start;
align-items: flex-start;
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
}
.necir-cards .necir-separator {
height: 32px;
}
.necir-cards .mdl-card__title.mdl-card__title {
color: white;
font-size: 24px;
font-weight: 400;
}
.necir-cards ul {
padding: 0;
}
.necir-cards h3 {
font-size: 1em;
}
.necir-updates .mdl-card__title {
min-height: 200px;
background-image: url('../images/dog.png');
background-position: 90% 100%;
background-repeat: no-repeat;
}
.necir-cards .mdl-card__actions a {
color: #00BCD4;
text-decoration: none;
}
.necir-options h3 {
margin: 0;
}
.necir-options .mdl-checkbox__box-outline {
border-color: rgba(255, 255, 255, 0.89);
}
.necir-options ul {
margin: 0;
list-style-type: none;
}
.necir-options li {
margin: 4px 0;
}
.necir-options .material-icons {
color: rgba(255, 255, 255, 0.89);
}
.necir-options .mdl-card__actions {
height: 64px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
box-sizing: border-box;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
/* Custom CSS Below */
#landing {
width: 100vw;
height: 100vh;
background-color: #FAFAFA;
position: fixed;
z-index: 99999;
transition: margin-top 0.5s ease;
}
.landing-card-wide.mdl-card {
width: 512px;
margin: 0 auto;
text-align: center;
display: inline-block;
}
.landing-card-wide > .mdl-card__title {
color: #fff;
height: 176px;
background: url('../images/necir-hack.jpg') center / cover;
background-position: center top;
text-align: center;
}
.landing-card-wide > .mdl-card__title > .mdl-card__title-text {
margin: 0 auto;
}
.landing-card-wide > .mdl-card__menu {
color: #fff;
}
.landing-wrapper {
width: 100%;
text-align: center;
}
.necir-list-three {
width: 650px;
}
#add-entry-wrapper {
position: fixed;
z-index: 9990;
right: 10px;
bottom: 10px;
}
[contenteditable=true]:empty:before {
content: attr(placeholder);
display: block; /* For Firefox */
}
.mdl-list__item--three-line .mdl-list__item-secondary-content {
height: auto !important;
}
#full-report-dialog {
width: 50% !important;
max-height: 75% !important;
overflow-y: auto !important;
top: 12.5% !important;
}
#table-full-report-dialog {
width: 50% !important;
max-height: 75% !important;
overflow-y: auto !important;
top: 12.5% !important;
}
.hidden2 {
visibility: collapse;
}
html, body {
font-size: 16px;
}
#span-wrapper {
padding-bottom: 20px;
}
#categorization-options {
padding-bottom: 20px;
}
.necir-table {
width: 100% !important;
margin-bottom: 20px !important;
}
.mdl-data-table__cell--non-numeric.mdl-data-table__cell--non-numeric {
text-align: center !important;
font-size: 16px!important;
}
.mdl-data-table td:first-of-type, .mdl-data-table th:first-of-type {
padding-left: 0 !important;
text-align: center !important;
font-size: 16px !important;
}
#view-reports-previous, #approve-reports-previous {
float: left;
}
#view-reports-next, #approve-reports-next {
float: right;
}
pre {
white-space: pre-wrap; /* Since CSS 2.1 */
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;
}
#tab-3, #tab-4 {
text-align: center;
}
.error-message {
color: #F44336;
}
#view-reports-loader {
width: 100%;
margin-bottom: 20px;
}
#approve-reports-loader {
width: 100%;
margin-bottom: 20px;
}
#current-report > h3, #current-report-loader {
display: inline-block;
}
#current-report-loader {
margin-left: 20px;
}
.danger:hover {
background-color: rgba(244,67,54, 0.75);
}
.danger:focus:not(:active) {
background-color: rgba(244,67,54, 0.5);
}
.danger:focus:not(:active) {
background-color: rgba(244,67,54, 0.5);
}
.warning:hover {
background-color: rgba(255,152,0, 0.75);
}
.warning:focus:not(:active) {
background-color: rgba(255,152,0, 0.5);
}
.warning:focus:not(:active) {
background-color: rgba(255,152,0, 0.5);
}
.safe:hover {
background-color: rgba(76,175,80, 0.75);
}
.safe:focus:not(:active) {
background-color: rgba(76,175,80, 0.5);
}
.safe:focus:not(:active) {
background-color: rgba(76,175,80, 0.5);
}
.mdl-navigation__link.active {
background-color: #036a77;
color: #fff !important;
}
p {
font-size: 16px;
}
.center {
text-align: center;
}
.necir-drawer {
overflow-y: hidden;
}
.necir-tab {
min-height: 95vh;
}
.footer-link {
transition: color 0.5s ease;
}
.footer-link:hover {
color: white !important;
}
.mdl-layout-title, #user-counter {
margin-right: 50px;
}
#event-progress {
width: 100%;
}
#confetti-wrapper {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
background: #111;
z-index: 99998;
position: fixed;
}
.necir-layout {
overflow-x: auto;
}
#header-grid {
margin: 0;
width: 100%;
}
.text-left {
text-align: left;
height: 32px;
line-height: 32px !important;
vertical-align: middle;
}
.text-center {
text-align: center;
height: 32px;
line-height: 32px;
vertical-align: middle;
}
.text-right {
text-align: right;
height: 32px;
line-height: 32px;
vertical-align: middle;
}
#results-length-wrapper {
display: inline-block;
}
#organization-deep-options, #organization-deep-option-other-text-wrapper, #table-organization-deep-options, #table-organization-deep-option-other-text-wrapper, #is-employer {
display: none;
} | css/styles.css | html, body {
font-family: 'Open Sans', 'Helvetica', sans-serif;
}
.necir-avatar {
width: 48px;
height: 48px;
border-radius: 24px;
}
.necir-layout .necir-header .mdl-textfield {
padding: 0px;
margin-top: 41px;
}
.necir-layout .necir-header .mdl-textfield .mdl-textfield__expandable-holder {
bottom: 19px;
}
.necir-layout .mdl-layout__header .mdl-layout__drawer-button {
color: rgba(0, 0, 0, 0.54);
}
.mdl-layout__drawer .avatar {
margin-bottom: 16px;
}
.necir-drawer {
border: none;
}
/* iOS Safari specific workaround */
.necir-drawer .mdl-menu__container {
z-index: -1;
}
.necir-drawer .necir-navigation {
z-index: -2;
}
/* END iOS Safari specific workaround */
.necir-drawer .mdl-menu .mdl-menu__item {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.necir-drawer-header {
box-sizing: border-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
padding: 16px;
height: 151px;
}
.necir-avatar-dropdown {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
position: relative;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
}
.necir-navigation {
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
}
.necir-layout .necir-navigation .mdl-navigation__link {
display: -webkit-flex !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
color: rgba(255, 255, 255, 0.56);
font-weight: 500;
}
.necir-layout .necir-navigation .mdl-navigation__link:hover {
background-color: #00BCD4;
color: #37474F;
}
.necir-navigation .mdl-navigation__link .material-icons {
font-size: 24px;
color: rgba(255, 255, 255, 0.56);
margin-right: 32px;
}
.necir-content {
max-width: 100vw;
overflow-x: auto;
}
.necir-charts {
-webkit-align-items: center;
-ms-flex-align: center;
-ms-grid-row-align: center;
align-items: center;
}
.necir-chart:nth-child(1) {
color: #ACEC00;
}
.necir-chart:nth-child(2) {
color: #00BBD6;
}
.necir-chart:nth-child(3) {
color: #BA65C9;
}
.necir-chart:nth-child(4) {
color: #EF3C79;
}
.necir-graphs {
padding: 16px 32px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
}
/* TODO: Find a proper solution to have the graphs
* not float around outside their container in IE10/11.
* Using a browserhacks.com solution for now.
*/
_:-ms-input-placeholder, :root .necir-graphs {
min-height: 664px;
}
_:-ms-input-placeholder, :root .necir-graph {
max-height: 300px;
}
/* TODO end */
.necir-graph:nth-child(1) {
color: #00b9d8;
}
.necir-graph:nth-child(2) {
color: #d9006e;
}
.necir-cards {
-webkit-align-items: flex-start;
-ms-flex-align: start;
-ms-grid-row-align: flex-start;
align-items: flex-start;
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
}
.necir-cards .necir-separator {
height: 32px;
}
.necir-cards .mdl-card__title.mdl-card__title {
color: white;
font-size: 24px;
font-weight: 400;
}
.necir-cards ul {
padding: 0;
}
.necir-cards h3 {
font-size: 1em;
}
.necir-updates .mdl-card__title {
min-height: 200px;
background-image: url('../images/dog.png');
background-position: 90% 100%;
background-repeat: no-repeat;
}
.necir-cards .mdl-card__actions a {
color: #00BCD4;
text-decoration: none;
}
.necir-options h3 {
margin: 0;
}
.necir-options .mdl-checkbox__box-outline {
border-color: rgba(255, 255, 255, 0.89);
}
.necir-options ul {
margin: 0;
list-style-type: none;
}
.necir-options li {
margin: 4px 0;
}
.necir-options .material-icons {
color: rgba(255, 255, 255, 0.89);
}
.necir-options .mdl-card__actions {
height: 64px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
box-sizing: border-box;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
/* Custom CSS Below */
#landing {
width: 100vw;
height: 100vh;
background-color: #FAFAFA;
position: fixed;
z-index: 99999;
transition: margin-top 0.5s ease;
}
.landing-card-wide.mdl-card {
width: 512px;
margin: 0 auto;
text-align: center;
display: inline-block;
}
.landing-card-wide > .mdl-card__title {
color: #fff;
height: 176px;
background: url('../images/necir-hack.jpg') center / cover;
background-position: center top;
text-align: center;
}
.landing-card-wide > .mdl-card__title > .mdl-card__title-text {
margin: 0 auto;
}
.landing-card-wide > .mdl-card__menu {
color: #fff;
}
.landing-wrapper {
width: 100%;
text-align: center;
}
.necir-list-three {
width: 650px;
}
#add-entry-wrapper {
position: fixed;
z-index: 9990;
right: 10px;
bottom: 10px;
}
[contenteditable=true]:empty:before {
content: attr(placeholder);
display: block; /* For Firefox */
}
.mdl-list__item--three-line .mdl-list__item-secondary-content {
height: auto !important;
}
#full-report-dialog {
width: 50% !important;
max-height: 75% !important;
overflow-y: auto !important;
top: 12.5% !important;
}
#table-full-report-dialog {
width: 50% !important;
max-height: 75% !important;
overflow-y: auto !important;
top: 12.5% !important;
}
.hidden2 {
visibility: collapse;
}
html, body {
font-size: 16px;
}
#span-wrapper {
padding-bottom: 20px;
}
#categorization-options {
padding-bottom: 20px;
}
.necir-table {
width: 100% !important;
margin-bottom: 20px !important;
}
.mdl-data-table__cell--non-numeric.mdl-data-table__cell--non-numeric {
text-align: center !important;
font-size: 16px!important;
}
.mdl-data-table td:first-of-type, .mdl-data-table th:first-of-type {
padding-left: 0 !important;
text-align: center !important;
font-size: 16px !important;
}
#view-reports-previous, #approve-reports-previous {
float: left;
}
#view-reports-next, #approve-reports-next {
float: right;
}
pre {
white-space: pre-wrap; /* Since CSS 2.1 */
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;
}
#tab-3, #tab-4 {
text-align: center;
}
.error-message {
color: #F44336;
}
#view-reports-loader {
width: 100%;
margin-bottom: 20px;
}
#approve-reports-loader {
width: 100%;
margin-bottom: 20px;
}
#current-report > h3, #current-report-loader {
display: inline-block;
}
#current-report-loader {
margin-left: 20px;
}
.danger:hover {
background-color: rgba(244,67,54, 0.75);
}
.danger:focus:not(:active) {
background-color: rgba(244,67,54, 0.5);
}
.danger:focus:not(:active) {
background-color: rgba(244,67,54, 0.5);
}
.warning:hover {
background-color: rgba(255,152,0, 0.75);
}
.warning:focus:not(:active) {
background-color: rgba(255,152,0, 0.5);
}
.warning:focus:not(:active) {
background-color: rgba(255,152,0, 0.5);
}
.safe:hover {
background-color: rgba(76,175,80, 0.75);
}
.safe:focus:not(:active) {
background-color: rgba(76,175,80, 0.5);
}
.safe:focus:not(:active) {
background-color: rgba(76,175,80, 0.5);
}
.mdl-navigation__link.active {
background-color: #036a77;
color: #fff !important;
}
p {
font-size: 16px;
}
.center {
text-align: center;
}
.necir-drawer {
overflow-y: hidden;
}
.necir-tab {
min-height: 95vh;
}
.footer-link {
transition: color 0.5s ease;
}
.footer-link:hover {
color: white !important;
}
.mdl-layout-title, #user-counter {
margin-right: 50px;
}
#event-progress {
width: 100%;
}
#confetti-wrapper {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
background: #111;
z-index: 99998;
position: fixed;
}
.necir-layout {
overflow-x: auto;
}
#header-grid {
margin: 0;
width: 100%;
}
.text-left {
text-align: left;
height: 32px;
line-height: 32px !important;
vertical-align: middle;
}
.text-center {
text-align: center;
height: 32px;
line-height: 32px;
vertical-align: middle;
}
.text-right {
text-align: right;
height: 32px;
line-height: 32px;
vertical-align: middle;
}
#results-length-wrapper {
display: inline-block;
}
#organization-deep-options, #organization-deep-option-other-text-wrapper, #table-organization-deep-options, #table-organization-deep-option-other-text-wrapper, #is-employer {
display: none;
} | 0.311532 | 0.045353 |
body {
background-image: url('../images/satinweave.png');
}
h1, h2, h3, h4, h5, .navbar, label {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 700;
}
h2 {
color: #758451;
}
h5 {
margin: 5px 0;
}
p {
line-height: 1.8em;
}
/******* Index *******/
.jumbotron {
min-height: 400px;
text-align: center;
background: url('../images/baseball5.jpg') no-repeat center fixed;
background-size: cover;
margin-bottom: 0;
margin-top: 50px;
}
.jumbo-container {
margin-top: 40px;
}
.navbar-collapse {
clear: right;
}
.navbar-inverse .navbar-nav>li>a {
color: #f0ad4e;
}
.navbar-inverse {
background-color: #050404;
z-index: 10;
}
#title, .page-title {
color: #eee;
text-shadow: 1px 1px 5px #050404;
}
.page-title {
margin-top: 40px;
}
.tagline, #brand {
color: #f0ad4e;
text-shadow: 1px 1px 5px #050404;
font-weight: 700;
}
.content {
margin-bottom: 100px;
}
/******* Splash Page *******/
.about-main {
padding: 0 20px 40px 20px;
}
.widget-wrap {
padding: 0;
}
.login-widget {
background-color: #fff;
border: 1px solid #758451;
border-radius: 1em;
padding: 10px;
box-shadow: 2px 2px 10px #bbb;
}
.alert-warning {
display: none;
margin: 20px;
}
#forgot-password {
font-size: .8em;
cursor: pointer;
}
h2 .glyphicon {
padding-right: 8px;
}
.glyphicon{
color: lightgray;
}
.row{
margin: 0 16.6666%;
}
/******** Login / Logout pages *********/
.change-pw-container {
padding: 0 20px 40px 20px;
margin: 40px auto;
}
.login-container {
margin: 80px 25% 140px 25%;
}
/******** Teams Page *********/
.league-wrap {
padding-top: 30px;
padding-bottom: 50px;
}
.league-logo {
height: 250px;
margin: 0 auto;
display: block;
}
.division-wrap {
margin-left: 45%;
}
.division-wrap ul {
list-style-type: none;
font-size: 1.5em;
padding: 0;
}
.division-wrap ul a {
display: block;
}
/********** Tickets Page **********/
.park-pic {
height:150px;
width:180px;
display: block;
margin-left: auto;
margin-right: auto;
float: none;
}
.ticket-sidebar h2 {
text-align: center;
clear: left;
margin: 10px auto 0 auto;
float: none;
}
.ticket-sidebar h4 {
text-align: center
}
.ticket-sidebar .avg-rating {
display: block;
text-align: center;
}
.ticket-sidebar .btn {
display: block;
margin: 10px auto;
}
.comments-wrap {
height: 400px;
overflow-y: scroll;
word-break: break-word;
}
.user-comments {
margin: 10px 0;
list-style: none;
}
.comment-rating {
color: rgb(224, 204, 96);
}
.comment-date {
color: #758451;
}
.ticket-results-wrap, .ticket-sidebar {
margin-top: 80px;
margin-bottom: 80px;
}
.ticket-results-wrap {
border-right: 2px solid #ddd;
}
.ticket-results-wrap ul{
margin-left: 30px;
}
.ticket-results-wrap ul li{
margin-bottom: 20px;
}
.table>tbody>tr>td {
vertical-align: middle;
}
.game-date {
border-right: 1px solid #ddd;
color: #758451;
font-weight: bold;
}
dir-pagination-controls {
text-align: center;
}
/********* My Progress **********/
.trophy-wrap {
width: 220px;
margin: 0 auto
}
.trophy {
display: inline-block;
background: linear-gradient(45deg, #BAD3FA, #4C5F73);
border-radius: 50%;
border: 3px solid #F0AD4E;
padding: 5px;
width: 60px;
height: 60px;
margin-top: 10px;
position: relative;
}
.trophy:nth-child(2) {
margin-left: 10px;
margin-right: 10px;
}
.trophy img {
height: 40px;
display: block;
margin: auto;
}
.trophy h3 {
position: absolute;
left: 15px;
top: 5px;
}
.unachieved {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
transition: filter 500ms ease;
-webkit-transition: -webkit-filter 350ms ease;
}
.prog-welcome {
text-align: center;
}
.progress {
margin: 45px auto;
height: 25px;
width: 40%;
border: 1px solid #758451;
}
.progress-bar {
background-color: #758451;
}
.teams {
display: block;
height: 150px;
width: 150px;
margin: auto;
}
.progress-team-name {
text-align: center;
font-weight: bold;
}
.unvisited {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
transition: filter 500ms ease;
-webkit-transition: -webkit-filter 350ms ease;
}
.unvisited:hover {
filter: grayscale(0);
-webkit-filter: grayscale(0);
}
.my-visits-wrap {
display: inline-block;
margin: 35px 25px;
}
.my-visits-wrap:last-child {
margin-bottom: 150px;
}
.my-visits-wrap .btn {
display: block;
margin: 0 auto;
}
.stars {
color: rgb(224, 204, 96);
font-size: 1.25em;
}
.my-visits-wrap {
height: 300px;
width: 200px;
float: left;
}
.trip-details{
margin-top: 5px;
height: 150px;
overflow: scroll;
}
.my-visits-wrap .trip-details .btn {
float: left;
margin-top: 10px;
}
.my-visits-wrap .btn {
margin-top: 30px;
}
.modal-pic {
height: 100px;
width: 100px;
border-radius: 50%;
border: 1px solid #758451;
display: inline-block;
margin-right: 5px;
}
#myModalLabel {
color: #758451;
display: inline-block;
}
textarea, select {
display: block;
} | css/main.css | body {
background-image: url('../images/satinweave.png');
}
h1, h2, h3, h4, h5, .navbar, label {
font-family: 'Roboto Condensed', sans-serif;
font-weight: 700;
}
h2 {
color: #758451;
}
h5 {
margin: 5px 0;
}
p {
line-height: 1.8em;
}
/******* Index *******/
.jumbotron {
min-height: 400px;
text-align: center;
background: url('../images/baseball5.jpg') no-repeat center fixed;
background-size: cover;
margin-bottom: 0;
margin-top: 50px;
}
.jumbo-container {
margin-top: 40px;
}
.navbar-collapse {
clear: right;
}
.navbar-inverse .navbar-nav>li>a {
color: #f0ad4e;
}
.navbar-inverse {
background-color: #050404;
z-index: 10;
}
#title, .page-title {
color: #eee;
text-shadow: 1px 1px 5px #050404;
}
.page-title {
margin-top: 40px;
}
.tagline, #brand {
color: #f0ad4e;
text-shadow: 1px 1px 5px #050404;
font-weight: 700;
}
.content {
margin-bottom: 100px;
}
/******* Splash Page *******/
.about-main {
padding: 0 20px 40px 20px;
}
.widget-wrap {
padding: 0;
}
.login-widget {
background-color: #fff;
border: 1px solid #758451;
border-radius: 1em;
padding: 10px;
box-shadow: 2px 2px 10px #bbb;
}
.alert-warning {
display: none;
margin: 20px;
}
#forgot-password {
font-size: .8em;
cursor: pointer;
}
h2 .glyphicon {
padding-right: 8px;
}
.glyphicon{
color: lightgray;
}
.row{
margin: 0 16.6666%;
}
/******** Login / Logout pages *********/
.change-pw-container {
padding: 0 20px 40px 20px;
margin: 40px auto;
}
.login-container {
margin: 80px 25% 140px 25%;
}
/******** Teams Page *********/
.league-wrap {
padding-top: 30px;
padding-bottom: 50px;
}
.league-logo {
height: 250px;
margin: 0 auto;
display: block;
}
.division-wrap {
margin-left: 45%;
}
.division-wrap ul {
list-style-type: none;
font-size: 1.5em;
padding: 0;
}
.division-wrap ul a {
display: block;
}
/********** Tickets Page **********/
.park-pic {
height:150px;
width:180px;
display: block;
margin-left: auto;
margin-right: auto;
float: none;
}
.ticket-sidebar h2 {
text-align: center;
clear: left;
margin: 10px auto 0 auto;
float: none;
}
.ticket-sidebar h4 {
text-align: center
}
.ticket-sidebar .avg-rating {
display: block;
text-align: center;
}
.ticket-sidebar .btn {
display: block;
margin: 10px auto;
}
.comments-wrap {
height: 400px;
overflow-y: scroll;
word-break: break-word;
}
.user-comments {
margin: 10px 0;
list-style: none;
}
.comment-rating {
color: rgb(224, 204, 96);
}
.comment-date {
color: #758451;
}
.ticket-results-wrap, .ticket-sidebar {
margin-top: 80px;
margin-bottom: 80px;
}
.ticket-results-wrap {
border-right: 2px solid #ddd;
}
.ticket-results-wrap ul{
margin-left: 30px;
}
.ticket-results-wrap ul li{
margin-bottom: 20px;
}
.table>tbody>tr>td {
vertical-align: middle;
}
.game-date {
border-right: 1px solid #ddd;
color: #758451;
font-weight: bold;
}
dir-pagination-controls {
text-align: center;
}
/********* My Progress **********/
.trophy-wrap {
width: 220px;
margin: 0 auto
}
.trophy {
display: inline-block;
background: linear-gradient(45deg, #BAD3FA, #4C5F73);
border-radius: 50%;
border: 3px solid #F0AD4E;
padding: 5px;
width: 60px;
height: 60px;
margin-top: 10px;
position: relative;
}
.trophy:nth-child(2) {
margin-left: 10px;
margin-right: 10px;
}
.trophy img {
height: 40px;
display: block;
margin: auto;
}
.trophy h3 {
position: absolute;
left: 15px;
top: 5px;
}
.unachieved {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
transition: filter 500ms ease;
-webkit-transition: -webkit-filter 350ms ease;
}
.prog-welcome {
text-align: center;
}
.progress {
margin: 45px auto;
height: 25px;
width: 40%;
border: 1px solid #758451;
}
.progress-bar {
background-color: #758451;
}
.teams {
display: block;
height: 150px;
width: 150px;
margin: auto;
}
.progress-team-name {
text-align: center;
font-weight: bold;
}
.unvisited {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
transition: filter 500ms ease;
-webkit-transition: -webkit-filter 350ms ease;
}
.unvisited:hover {
filter: grayscale(0);
-webkit-filter: grayscale(0);
}
.my-visits-wrap {
display: inline-block;
margin: 35px 25px;
}
.my-visits-wrap:last-child {
margin-bottom: 150px;
}
.my-visits-wrap .btn {
display: block;
margin: 0 auto;
}
.stars {
color: rgb(224, 204, 96);
font-size: 1.25em;
}
.my-visits-wrap {
height: 300px;
width: 200px;
float: left;
}
.trip-details{
margin-top: 5px;
height: 150px;
overflow: scroll;
}
.my-visits-wrap .trip-details .btn {
float: left;
margin-top: 10px;
}
.my-visits-wrap .btn {
margin-top: 30px;
}
.modal-pic {
height: 100px;
width: 100px;
border-radius: 50%;
border: 1px solid #758451;
display: inline-block;
margin-right: 5px;
}
#myModalLabel {
color: #758451;
display: inline-block;
}
textarea, select {
display: block;
} | 0.344443 | 0.070113 |
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;
}
/* HTML5 display-role reset for older browsers */
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;
}
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-webkit-border-radius: 0;
}
/*end reset*/
html {
font-size: 16px;
}
body {
background-image: url("/images/one-small.jpg");
background-size: cover;
padding: 5%;
}
#container {
padding: 5%;
background-color: #e4edf4;
max-width: 1024px;
}
.bold {
font-weight: bold;
}
p {
font-family: 'Khula', sans-serif;
font-size: .6rem;
margin-top: 1rem;
}
#intro {
font-family: 'Satisfy', cursive;
font-size: 1.25rem;
margin-bottom: .6rem;
}
h1 {
margin: 0;
font-family: 'Fjalla One', sans-serif;
font-size: 2rem;
}
label h2 {
font-family: 'Khula', sans-serif;
margin-top: 2vh;
}
input[type="search"] {
width: 100%;
margin: 2vh 0;
padding: 1vh;
}
input[type="submit"] {
margin-bottom: 2vh;
color: #2a4d7f;
font-family: 'Khula', sans-serif;
padding-top: 1vh;
padding-left: 2vh;
padding-right: 2vh;
background-color: rgba(255,255,255, .5);
border-style: none;
border: #2a4d7f solid 2px;
}
nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.items a {
text-decoration: none;
font-family: 'Khula', sans-serif;
color: #2a4d7f;
font-size: .75rem;
}
img#footer-logo {
height: 5vh;
padding-right: 10px;
float: left;
}
#service-areas {
font-family: 'Khula', sans-serif;
font-size: .6rem;
}
#service-areas h4 {
margin-bottom: .6rem;
}
@media only screen and (min-width: 768px)
{
html {
font-size: 18px;
}
body {
background-image: url('/images/one.jpg');
}
}
@media only screen and (min-width: 1024px)
{
html {
font-size: 24px;
}
#container {
min-width: 960px;
}
} | public/css/landing.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;
}
/* HTML5 display-role reset for older browsers */
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;
}
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-appearance: none;
-webkit-border-radius: 0;
}
/*end reset*/
html {
font-size: 16px;
}
body {
background-image: url("/images/one-small.jpg");
background-size: cover;
padding: 5%;
}
#container {
padding: 5%;
background-color: #e4edf4;
max-width: 1024px;
}
.bold {
font-weight: bold;
}
p {
font-family: 'Khula', sans-serif;
font-size: .6rem;
margin-top: 1rem;
}
#intro {
font-family: 'Satisfy', cursive;
font-size: 1.25rem;
margin-bottom: .6rem;
}
h1 {
margin: 0;
font-family: 'Fjalla One', sans-serif;
font-size: 2rem;
}
label h2 {
font-family: 'Khula', sans-serif;
margin-top: 2vh;
}
input[type="search"] {
width: 100%;
margin: 2vh 0;
padding: 1vh;
}
input[type="submit"] {
margin-bottom: 2vh;
color: #2a4d7f;
font-family: 'Khula', sans-serif;
padding-top: 1vh;
padding-left: 2vh;
padding-right: 2vh;
background-color: rgba(255,255,255, .5);
border-style: none;
border: #2a4d7f solid 2px;
}
nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
.items a {
text-decoration: none;
font-family: 'Khula', sans-serif;
color: #2a4d7f;
font-size: .75rem;
}
img#footer-logo {
height: 5vh;
padding-right: 10px;
float: left;
}
#service-areas {
font-family: 'Khula', sans-serif;
font-size: .6rem;
}
#service-areas h4 {
margin-bottom: .6rem;
}
@media only screen and (min-width: 768px)
{
html {
font-size: 18px;
}
body {
background-image: url('/images/one.jpg');
}
}
@media only screen and (min-width: 1024px)
{
html {
font-size: 24px;
}
#container {
min-width: 960px;
}
} | 0.357455 | 0.091951 |
font-size:10pt;
}
#microbit {
width: 300px;
height: 236px;
background-image: url('mb.png');
position: relative;
transition: all 0.5s;
}
.mb_btn {
width: 22px;
height: 22px;
border-radius: 11px;
background-color: #333;
transition: all 0.25s;
position: absolute;
opacity: 0.9;
}
.mb_led {
width: 6px;
height: 6px;
transition: all 0.1s;
position: absolute;
}
.mb_info {
font-size: 8pt;
}
.mb_help_link {
width: 100%;
display: block;
font-size: 10px;
color: #FFFFFF;
background-color: #3785ce;
text-align: center;
transition: all 0.5s;
margin: 2px 0;
padding: 10px 0;
}
.mb_help_link:hover {
background: linear-gradient(90deg, rgba(255, 46, 46, 0) 0%, rgba(255, 46, 46, 0.6) 5%, rgba(255, 46, 46, 0.6) 95%, rgba(255, 46, 46, 0) 100%);
}
.mb_led_brightness_0 { background-color: #000; }
.mb_led_brightness_1 { background-color: #300; }
.mb_led_brightness_2 { background-color: #500; }
.mb_led_brightness_3 { background-color: #700; }
.mb_led_brightness_4 { background-color: #900; }
.mb_led_brightness_5 { background-color: #a00; }
.mb_led_brightness_6 { background-color: #b00; }
.mb_led_brightness_7 { background-color: #c00; }
.mb_led_brightness_8 { background-color: #d00; }
.mb_led_brightness_9 { background-color: #f00; }
.mb_led_row_0 { top: 73px; }
.mb_led_row_1 { top: 96px; }
.mb_led_row_2 { top: 119px; }
.mb_led_row_3 { top: 141px; }
.mb_led_row_4 { top: 164px; }
.mb_led_col_0 { left: 104px; }
.mb_led_col_1 { left: 126px; }
.mb_led_col_2 { left: 149px; }
.mb_led_col_3 { left: 171px; }
.mb_led_col_4 { left: 195px; }
#mb_btn_A {
left: 24px;
top: 101px;
}
#mb_btn_B {
left: 256px;
top: 101px;
}
.mb_btn:hover {
background-color: #F00;
}
.mb_slider {
width: 100px;
display: inline-block;
margin: 0px 10px 0px 10px;
}
#mb_com_heading {
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
vertical-align: center;
background-image: url('compassbk.jpg');
position: relative;
}
#mb_com_value_heading {
font-size: 2em;
}
#mb_compass_pointer {
position: absolute;
left: 0px;
top: 0px;
width: 100px;
height: 100px;
/*transition: all 0.5s;*/
background-image: url('compassarrow.png');
}
.mb_slider_com {
width: 100px;
display: inline-block;
margin: 0px 10px 0px 10px;
}
#mb_gesture_list {
border-style: solid;
border-width: 1px;
border-color: #000;
min-height: 1em;
}
.mb_current_gesture {
color: #F00;
margin: 1em;
}
.mb_active_gesture_down {
transform: rotate(180deg);
}
.mb_active_gesture_left, .mb_active_gesture_right {
-webkit-transform: rotateY(80deg);transform: rotateY(80deg);
}
.mb_active_gesture_facedown {
-webkit-transform: rotateY(180deg);transform: rotateY(180deg);
}
.mb_active_gesture_freefall {
transform: scale(0.2,0.2);
}
@keyframes shake {
0% {transform: scale(1,1);}
50% {transform: scale(0.8,0.8);}
100% {transform: scale(1,1);}
}
.mb_active_gesture_shake {
animation-name: shake;
animation-duration: 0.3s;
animation-iteration-count: infinite;
}
.mb_active_gesture_3g {
animation-name: shake;
animation-duration: 0.5s;
}
.mb_active_gesture_6g {
animation-name: shake;
animation-duration: 0.3s;
}
.mb_active_gesture_8g {
animation-name: shake;
animation-duration: 0.1s;
}
/* Thermometer */
#mb_therm_slider
{
height: 320px; width: 12px;
position: absolute;
left: 320px;
bottom: 0;
float: right;
background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 66%, rgba(0, 255, 255, 1) 100%);
}
.mb_pin {
position: absolute;
bottom: -8px;
background-color: green;
height: 34px;
border-radius: 0 0 3px 3px;
opacity: 0;
}
.mb_pin_dgtl {
width: 5px;
background: linear-gradient(0deg, rgb(3, 231, 3) 0%, rgba(3, 231, 3, 1) 30%, rgba(3, 231, 3, 0) 100%);
}
.mb_pin_anlg {
width: 5px;
background: linear-gradient(0deg, rgb(7, 7, 207) 0%, rgba(7, 7, 207, 1) 30%, rgba(7, 7, 207, 0) 100%)
}
.mb_pin_tch {
width: 24px;
background: linear-gradient(0deg, rgb(255, 17, 17) 0%, rgba(255, 17, 17, 1) 30%, rgba(255, 17, 17, 0) 100%)
}
#mb_pin_num {
font-size: 0.8em;
}
#mb_pin_analog {
height: 240px; width: 12px;
left: 320px; bottom: 0;
float: left;
border: none;
background: rgb(3, 3, 121);
}
#mb_pin_analog span {
height: 20px; width: 30px;
position: absolute;
left: -18px;
border: none;
border-radius: 10px 0 0 10px;
background: rgb(7, 7, 207);
cursor: pointer;
}
/* Touch Pins */
#mb_pin_0 { left: 15px; opacity: 1; }
#mb_pin_1 { left: 74px; }
#mb_pin_2 { left: 141px; }
/* Analogue Pins */
#mb_pin_3 { left: 5px; }
#mb_pin_4 { left: 42.5px; }
#mb_pin_10 { left: 117px; }
/* Digital Pins */
#mb_pin_5 { left: 50px; }
#mb_pin_6 { left: 57.5px; }
#mb_pin_7 { left: 65.5px; }
#mb_pin_8 { left: 102px; }
#mb_pin_9 { left: 109px; }
#mb_pin_11 { left: 125px; }
#mb_pin_12 { left: 132px; }
#mb_pin_13 { left: 168.5px; }
#mb_pin_14 { left: 176px; }
#mb_pin_15 { left: 184px; }
#mb_pin_16 { left: 191px; }
#mb_pin_17 { left: 198px; }
#mb_pin_18 { left: 234.5px; }
#mb_pin_19 { left: 242.5px; }
#mb_pin_20 { left: 249px; }
#mb_pin_type {
margin: 10px 0;
padding: 0 0 0 0;
color: #FFFFFF;
}
#mb_pin_type strong { font-weight: 700; }
#mb_pin_type strong.Analog { color: rgb(7, 7, 207); }
#mb_pin_type strong.Digital { color: rgb(3, 231, 3); }
#mb_pin_type strong.Touch { color: #FFFFFF; }
#mb_pin_type strong.threeVolts { color: #eed814; }
#mb_btn_pin_touch {
color: #FFFFFF;
background: #3785ce;
border-radius: 5px;
border: none;
}
#mb_btn_pin_digital {
color: #FFFFFF;
background: rgb(3, 231, 3);
border-radius: 5px;
border: none;
} | lib/skulpt/microbit/mb.css | font-size:10pt;
}
#microbit {
width: 300px;
height: 236px;
background-image: url('mb.png');
position: relative;
transition: all 0.5s;
}
.mb_btn {
width: 22px;
height: 22px;
border-radius: 11px;
background-color: #333;
transition: all 0.25s;
position: absolute;
opacity: 0.9;
}
.mb_led {
width: 6px;
height: 6px;
transition: all 0.1s;
position: absolute;
}
.mb_info {
font-size: 8pt;
}
.mb_help_link {
width: 100%;
display: block;
font-size: 10px;
color: #FFFFFF;
background-color: #3785ce;
text-align: center;
transition: all 0.5s;
margin: 2px 0;
padding: 10px 0;
}
.mb_help_link:hover {
background: linear-gradient(90deg, rgba(255, 46, 46, 0) 0%, rgba(255, 46, 46, 0.6) 5%, rgba(255, 46, 46, 0.6) 95%, rgba(255, 46, 46, 0) 100%);
}
.mb_led_brightness_0 { background-color: #000; }
.mb_led_brightness_1 { background-color: #300; }
.mb_led_brightness_2 { background-color: #500; }
.mb_led_brightness_3 { background-color: #700; }
.mb_led_brightness_4 { background-color: #900; }
.mb_led_brightness_5 { background-color: #a00; }
.mb_led_brightness_6 { background-color: #b00; }
.mb_led_brightness_7 { background-color: #c00; }
.mb_led_brightness_8 { background-color: #d00; }
.mb_led_brightness_9 { background-color: #f00; }
.mb_led_row_0 { top: 73px; }
.mb_led_row_1 { top: 96px; }
.mb_led_row_2 { top: 119px; }
.mb_led_row_3 { top: 141px; }
.mb_led_row_4 { top: 164px; }
.mb_led_col_0 { left: 104px; }
.mb_led_col_1 { left: 126px; }
.mb_led_col_2 { left: 149px; }
.mb_led_col_3 { left: 171px; }
.mb_led_col_4 { left: 195px; }
#mb_btn_A {
left: 24px;
top: 101px;
}
#mb_btn_B {
left: 256px;
top: 101px;
}
.mb_btn:hover {
background-color: #F00;
}
.mb_slider {
width: 100px;
display: inline-block;
margin: 0px 10px 0px 10px;
}
#mb_com_heading {
width: 100px;
height: 100px;
line-height: 100px;
text-align: center;
vertical-align: center;
background-image: url('compassbk.jpg');
position: relative;
}
#mb_com_value_heading {
font-size: 2em;
}
#mb_compass_pointer {
position: absolute;
left: 0px;
top: 0px;
width: 100px;
height: 100px;
/*transition: all 0.5s;*/
background-image: url('compassarrow.png');
}
.mb_slider_com {
width: 100px;
display: inline-block;
margin: 0px 10px 0px 10px;
}
#mb_gesture_list {
border-style: solid;
border-width: 1px;
border-color: #000;
min-height: 1em;
}
.mb_current_gesture {
color: #F00;
margin: 1em;
}
.mb_active_gesture_down {
transform: rotate(180deg);
}
.mb_active_gesture_left, .mb_active_gesture_right {
-webkit-transform: rotateY(80deg);transform: rotateY(80deg);
}
.mb_active_gesture_facedown {
-webkit-transform: rotateY(180deg);transform: rotateY(180deg);
}
.mb_active_gesture_freefall {
transform: scale(0.2,0.2);
}
@keyframes shake {
0% {transform: scale(1,1);}
50% {transform: scale(0.8,0.8);}
100% {transform: scale(1,1);}
}
.mb_active_gesture_shake {
animation-name: shake;
animation-duration: 0.3s;
animation-iteration-count: infinite;
}
.mb_active_gesture_3g {
animation-name: shake;
animation-duration: 0.5s;
}
.mb_active_gesture_6g {
animation-name: shake;
animation-duration: 0.3s;
}
.mb_active_gesture_8g {
animation-name: shake;
animation-duration: 0.1s;
}
/* Thermometer */
#mb_therm_slider
{
height: 320px; width: 12px;
position: absolute;
left: 320px;
bottom: 0;
float: right;
background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(255, 255, 255, 1) 66%, rgba(0, 255, 255, 1) 100%);
}
.mb_pin {
position: absolute;
bottom: -8px;
background-color: green;
height: 34px;
border-radius: 0 0 3px 3px;
opacity: 0;
}
.mb_pin_dgtl {
width: 5px;
background: linear-gradient(0deg, rgb(3, 231, 3) 0%, rgba(3, 231, 3, 1) 30%, rgba(3, 231, 3, 0) 100%);
}
.mb_pin_anlg {
width: 5px;
background: linear-gradient(0deg, rgb(7, 7, 207) 0%, rgba(7, 7, 207, 1) 30%, rgba(7, 7, 207, 0) 100%)
}
.mb_pin_tch {
width: 24px;
background: linear-gradient(0deg, rgb(255, 17, 17) 0%, rgba(255, 17, 17, 1) 30%, rgba(255, 17, 17, 0) 100%)
}
#mb_pin_num {
font-size: 0.8em;
}
#mb_pin_analog {
height: 240px; width: 12px;
left: 320px; bottom: 0;
float: left;
border: none;
background: rgb(3, 3, 121);
}
#mb_pin_analog span {
height: 20px; width: 30px;
position: absolute;
left: -18px;
border: none;
border-radius: 10px 0 0 10px;
background: rgb(7, 7, 207);
cursor: pointer;
}
/* Touch Pins */
#mb_pin_0 { left: 15px; opacity: 1; }
#mb_pin_1 { left: 74px; }
#mb_pin_2 { left: 141px; }
/* Analogue Pins */
#mb_pin_3 { left: 5px; }
#mb_pin_4 { left: 42.5px; }
#mb_pin_10 { left: 117px; }
/* Digital Pins */
#mb_pin_5 { left: 50px; }
#mb_pin_6 { left: 57.5px; }
#mb_pin_7 { left: 65.5px; }
#mb_pin_8 { left: 102px; }
#mb_pin_9 { left: 109px; }
#mb_pin_11 { left: 125px; }
#mb_pin_12 { left: 132px; }
#mb_pin_13 { left: 168.5px; }
#mb_pin_14 { left: 176px; }
#mb_pin_15 { left: 184px; }
#mb_pin_16 { left: 191px; }
#mb_pin_17 { left: 198px; }
#mb_pin_18 { left: 234.5px; }
#mb_pin_19 { left: 242.5px; }
#mb_pin_20 { left: 249px; }
#mb_pin_type {
margin: 10px 0;
padding: 0 0 0 0;
color: #FFFFFF;
}
#mb_pin_type strong { font-weight: 700; }
#mb_pin_type strong.Analog { color: rgb(7, 7, 207); }
#mb_pin_type strong.Digital { color: rgb(3, 231, 3); }
#mb_pin_type strong.Touch { color: #FFFFFF; }
#mb_pin_type strong.threeVolts { color: #eed814; }
#mb_btn_pin_touch {
color: #FFFFFF;
background: #3785ce;
border-radius: 5px;
border: none;
}
#mb_btn_pin_digital {
color: #FFFFFF;
background: rgb(3, 231, 3);
border-radius: 5px;
border: none;
} | 0.417153 | 0.078395 |
.container {
min-height: 100vh;
padding: 0 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #333333;
font-family: monospace, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 14px;
/* margin-top: 120px; */
/* z-index: 0; */
/* margin-top: 400px; */
}
.main {
padding: 5rem 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
z-index: 2;
/* margin-top: 100px; */
/* width: 100%;
background-color: #E6E6E6; */
}
.footer {
width: 100%;
height: 100px;
border-top: 1px solid #eaeaea;
display: flex;
justify-content: center;
align-items: center;
}
.footer img {
margin-left: 0.5rem;
}
.footer a {
display: flex;
justify-content: center;
align-items: center;
}
.title a {
color: #0070f3;
text-decoration: none;
}
.title a:hover,
.title a:focus,
.title a:active {
text-decoration: underline;
}
.card_border {
margin-bottom: 16px;
cursor: pointer;
/* border: 1px solid hotpink; */
text-align: left;
padding-top: 16px;
padding-bottom: 16px;
border-radius: 15px;
}
.card_title {
margin: 0;
line-height: 1.15;
font-size: 1.4rem;
color: #22BAD9;
margin-bottom: 16px;
}
.card_description {
margin: 0;
line-height: 1.3;
font-size: 1.2rem;
color: hotpink;
}
.card_link {
margin: 0;
line-height: 1.3;
font-size: 1rem;
color: #22BAD9;
text-align: right;
margin-top: 10px;
}
.title,
.description {
text-align: center;
}
.contact_description {
text-align: center;
justify-content: center;
align-items: center;
}
.description {
line-height: 1.5;
font-size: 1.5rem;
}
.discription_bottom_margin_16 {
line-height: 1.5;
font-size: 1.5rem;
margin-bottom: 16px;
}
.code {
background: #fafafa;
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
}
.grid {
/* display: flex; */
align-items: center;
justify-content: center;
flex-wrap: wrap;
/* max-width: 800px; */
max-width: 800px;
margin-top: 1rem;
/* background-color: transparent; */
}
.card {
margin: 1rem;
flex-basis: 45%;
padding: 1.5rem;
text-align: left;
color: inherit;
text-decoration: none;
border: 1px solid #eaeaea;
border-radius: 10px;
/* height: 500px; */
margin-bottom: 100px;
/* width: 100%; */
/* background-color: red; */
/* background-color: rgba(255, 255, 255, 0.5); */
transition: color 0.15s ease, border-color 0.15s ease;
}
.segments_margin_bottom {
/* margin-bottom: 24px; */
/* For Full width */
/* width: -webkit-fill-available; */
/* width: 90%; */
/* background-color: rgba(255, 255, 255, 0.5); */
/* margin-left: -20px;
margin-right: -20px; */
}
.card:hover,
.card:focus,
.card:active {
/* color: #0070f3; */
border-color: #0070f3;
}
.card h3 {
margin: 0 0 1rem 0;
font-size: 1.5rem;
}
.card p {
margin: 0;
font-size: 1.25rem;
line-height: 1.5;
}
.logo {
height: 1em;
}
.bottom_sticky_bar {
position: fixed;
bottom: 0;
right: 0;
margin: 2em;
animation: 'back-to-docs 1.5s ease-in-out infinite';
z-index: 6;
}
.fader {
height: 50vw;
position: relative;
overflow: hidden;
width: 100%;
}
.fader__slide {
width: 100%;
height: 100%;
position: absolute;
top: 0;
}
.fader_img {
width: 100%;
height: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit-transform: translateY(-50%) translateX(-50%);
}
#ReactBackgroundSlider {
opacity: 0.6;
}
.button_container {
margin-left: 40px;
margin-right: 40px;
}
@media (max-width: 768px) {
.grid {
/* width: 90%; */
flex-direction: column;
/* margin-left: 5%; */
}
.fader {
height: 300px;
}
} | 2021/styles/Home.module.css | .container {
min-height: 100vh;
padding: 0 0.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #333333;
font-family: monospace, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 14px;
/* margin-top: 120px; */
/* z-index: 0; */
/* margin-top: 400px; */
}
.main {
padding: 5rem 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
z-index: 2;
/* margin-top: 100px; */
/* width: 100%;
background-color: #E6E6E6; */
}
.footer {
width: 100%;
height: 100px;
border-top: 1px solid #eaeaea;
display: flex;
justify-content: center;
align-items: center;
}
.footer img {
margin-left: 0.5rem;
}
.footer a {
display: flex;
justify-content: center;
align-items: center;
}
.title a {
color: #0070f3;
text-decoration: none;
}
.title a:hover,
.title a:focus,
.title a:active {
text-decoration: underline;
}
.card_border {
margin-bottom: 16px;
cursor: pointer;
/* border: 1px solid hotpink; */
text-align: left;
padding-top: 16px;
padding-bottom: 16px;
border-radius: 15px;
}
.card_title {
margin: 0;
line-height: 1.15;
font-size: 1.4rem;
color: #22BAD9;
margin-bottom: 16px;
}
.card_description {
margin: 0;
line-height: 1.3;
font-size: 1.2rem;
color: hotpink;
}
.card_link {
margin: 0;
line-height: 1.3;
font-size: 1rem;
color: #22BAD9;
text-align: right;
margin-top: 10px;
}
.title,
.description {
text-align: center;
}
.contact_description {
text-align: center;
justify-content: center;
align-items: center;
}
.description {
line-height: 1.5;
font-size: 1.5rem;
}
.discription_bottom_margin_16 {
line-height: 1.5;
font-size: 1.5rem;
margin-bottom: 16px;
}
.code {
background: #fafafa;
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
}
.grid {
/* display: flex; */
align-items: center;
justify-content: center;
flex-wrap: wrap;
/* max-width: 800px; */
max-width: 800px;
margin-top: 1rem;
/* background-color: transparent; */
}
.card {
margin: 1rem;
flex-basis: 45%;
padding: 1.5rem;
text-align: left;
color: inherit;
text-decoration: none;
border: 1px solid #eaeaea;
border-radius: 10px;
/* height: 500px; */
margin-bottom: 100px;
/* width: 100%; */
/* background-color: red; */
/* background-color: rgba(255, 255, 255, 0.5); */
transition: color 0.15s ease, border-color 0.15s ease;
}
.segments_margin_bottom {
/* margin-bottom: 24px; */
/* For Full width */
/* width: -webkit-fill-available; */
/* width: 90%; */
/* background-color: rgba(255, 255, 255, 0.5); */
/* margin-left: -20px;
margin-right: -20px; */
}
.card:hover,
.card:focus,
.card:active {
/* color: #0070f3; */
border-color: #0070f3;
}
.card h3 {
margin: 0 0 1rem 0;
font-size: 1.5rem;
}
.card p {
margin: 0;
font-size: 1.25rem;
line-height: 1.5;
}
.logo {
height: 1em;
}
.bottom_sticky_bar {
position: fixed;
bottom: 0;
right: 0;
margin: 2em;
animation: 'back-to-docs 1.5s ease-in-out infinite';
z-index: 6;
}
.fader {
height: 50vw;
position: relative;
overflow: hidden;
width: 100%;
}
.fader__slide {
width: 100%;
height: 100%;
position: absolute;
top: 0;
}
.fader_img {
width: 100%;
height: auto;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit-transform: translateY(-50%) translateX(-50%);
}
#ReactBackgroundSlider {
opacity: 0.6;
}
.button_container {
margin-left: 40px;
margin-right: 40px;
}
@media (max-width: 768px) {
.grid {
/* width: 90%; */
flex-direction: column;
/* margin-left: 5%; */
}
.fader {
height: 300px;
}
} | 0.393851 | 0.064772 |
.left {
margin-right: auto;
text-align: left;
}
.right {
margin-left: auto;
text-align: right;
}
.center {
text-align: center;
margin-left: auto;
margin-right: auto;
}
/* Container style and Grid Flow */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
/* Grid System w3 css starts from here */
.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,
.col-auto, .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,
.col-sm-auto{
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
@media (min-width: 576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
}
/* End of Grid System */ | public/css/styles/components/grid.css | .left {
margin-right: auto;
text-align: left;
}
.right {
margin-left: auto;
text-align: right;
}
.center {
text-align: center;
margin-left: auto;
margin-right: auto;
}
/* Container style and Grid Flow */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
width: 100%;
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
.container, .container-sm {
max-width: 540px;
}
}
@media (min-width: 768px) {
.container, .container-sm, .container-md {
max-width: 720px;
}
}
@media (min-width: 992px) {
.container, .container-sm, .container-md, .container-lg {
max-width: 960px;
}
}
@media (min-width: 1200px) {
.container, .container-sm, .container-md, .container-lg, .container-xl {
max-width: 1140px;
}
}
.row {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-right: -15px;
margin-left: -15px;
}
/* Grid System w3 css starts from here */
.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,
.col-auto, .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,
.col-sm-auto{
position: relative;
width: 100%;
padding-right: 15px;
padding-left: 15px;
}
.col {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.row-cols-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
.col-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.col-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
.col-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
.col-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
.col-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
.col-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
.col-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
@media (min-width: 576px) {
.col-sm {
-ms-flex-preferred-size: 0;
flex-basis: 0;
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
max-width: 100%;
}
.row-cols-sm-1 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
.row-cols-sm-2 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.row-cols-sm-3 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.row-cols-sm-4 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.row-cols-sm-5 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 20%;
flex: 0 0 20%;
max-width: 20%;
}
.row-cols-sm-6 > * {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-sm-auto {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: 100%;
}
.col-sm-1 {
-webkit-box-flex: 0;
-ms-flex: 0 0 8.3333333333%;
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%;
}
.col-sm-2 {
-webkit-box-flex: 0;
-ms-flex: 0 0 16.6666666667%;
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%;
}
.col-sm-3 {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}
.col-sm-4 {
-webkit-box-flex: 0;
-ms-flex: 0 0 33.3333333333%;
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%;
}
.col-sm-5 {
-webkit-box-flex: 0;
-ms-flex: 0 0 41.6666666667%;
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%;
}
.col-sm-6 {
-webkit-box-flex: 0;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%;
}
.col-sm-7 {
-webkit-box-flex: 0;
-ms-flex: 0 0 58.3333333333%;
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%;
}
.col-sm-8 {
-webkit-box-flex: 0;
-ms-flex: 0 0 66.6666666667%;
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%;
}
.col-sm-9 {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
.col-sm-10 {
-webkit-box-flex: 0;
-ms-flex: 0 0 83.3333333333%;
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%;
}
.col-sm-11 {
-webkit-box-flex: 0;
-ms-flex: 0 0 91.6666666667%;
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%;
}
.col-sm-12 {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}
}
/* End of Grid System */ | 0.42919 | 0.076857 |
@-moz-document domain("hootsuite.com") {
.message p {font-family: tahoma, serif; line-height: 1.6; direction: rtl; clear:right!important;}
.stream .message, .stream .noMessage, .originalMessage .message {
padding: 4px 42px 5px 6px!important;}
.message .networkAvatarLink, .message .networkAvatar {right:5px; left: auto!important;}
.stream .stream-scroll .messageOptions {
left: 0; right:auto!important;}
.message span.status {
left: 5px; right:auto!important;}
.message .networkName {
float:right!important;}
.message .messageDetails, .message .messageDescription {
clear: right!important;
float: right!important;
margin-bottom: 0.4em;
}
.message .postTime {
float:right!important; clear:right!important;}
.moreOptionsMenu {
right:-80px!important;}
.message .previousMessages .comment p.commentContent {
margin: 0 38px 0 0!important;
}
input, select, button, textarea {
direction: rtl!important;
font-family: tahoma,serif!important;
}
.hootlet, .globalNav .promo {
display: none!important;
}
p:last-child {
margin-bottom: 5px!important;
}
.message .icon-19.retweet {
float: right!important;
margin: 0 0 -3px 3px!important;
}
.message .retweetedBy {
float: right;
}
.icon-left {
float: right!important;}
.stream .header .btns {
left: 5px!important; right: auto!important;}
.stream .header .streamName {
text-align: right!important; margin-left:75px!important; margin-right:0!important;}
.stream .header .streamName .new {
right: 18px!important; left:auto!important;}
.message .icon-13.preview {
margin-left: 3px!important; margin-right: 3px!important;
}
.message .showConversation {
clear: right!important;
float: right!important;
}
.message .icon-13.conversation {
float: right!important;
margin: 0 0 0 3px!important;
}
.message .postAttachment {
clear: right!important;
}
.message .messageComments {
text-align: right!important;
}
.message .messageComments .comment {
padding: 5px 40px 5px 6px!important;
font-family: tahoma, serif!important;
line-height: 1.4;
}
.message .messageComments .comment .networkName {
padding-left: 5px!important;
}
.message .messageComments .comment.details {
padding: 5px!important;
}
.message .messageComments .arrow {
left: auto!important;
right: 10px!important;
}
.message .attachedLink {
float: right!important;
margin: 0 0 5px 5px!important;
}
.message .postAttachment .title, .message .postAttachment .caption {
text-align: right;
font-family: tahoma, serif;
line-height: 1.4;
}
.message .postAttachment .description, .message .postAttachment .caption {
text-align: right!important;
direction: rtl!important;
text-align: right;
font-family: tahoma, serif;
float: right!important;
}
.message .messageSource {
clear: right!important;
float: right!important;
font-weight: bold;
}
} | data/usercss/83488.user.css | @-moz-document domain("hootsuite.com") {
.message p {font-family: tahoma, serif; line-height: 1.6; direction: rtl; clear:right!important;}
.stream .message, .stream .noMessage, .originalMessage .message {
padding: 4px 42px 5px 6px!important;}
.message .networkAvatarLink, .message .networkAvatar {right:5px; left: auto!important;}
.stream .stream-scroll .messageOptions {
left: 0; right:auto!important;}
.message span.status {
left: 5px; right:auto!important;}
.message .networkName {
float:right!important;}
.message .messageDetails, .message .messageDescription {
clear: right!important;
float: right!important;
margin-bottom: 0.4em;
}
.message .postTime {
float:right!important; clear:right!important;}
.moreOptionsMenu {
right:-80px!important;}
.message .previousMessages .comment p.commentContent {
margin: 0 38px 0 0!important;
}
input, select, button, textarea {
direction: rtl!important;
font-family: tahoma,serif!important;
}
.hootlet, .globalNav .promo {
display: none!important;
}
p:last-child {
margin-bottom: 5px!important;
}
.message .icon-19.retweet {
float: right!important;
margin: 0 0 -3px 3px!important;
}
.message .retweetedBy {
float: right;
}
.icon-left {
float: right!important;}
.stream .header .btns {
left: 5px!important; right: auto!important;}
.stream .header .streamName {
text-align: right!important; margin-left:75px!important; margin-right:0!important;}
.stream .header .streamName .new {
right: 18px!important; left:auto!important;}
.message .icon-13.preview {
margin-left: 3px!important; margin-right: 3px!important;
}
.message .showConversation {
clear: right!important;
float: right!important;
}
.message .icon-13.conversation {
float: right!important;
margin: 0 0 0 3px!important;
}
.message .postAttachment {
clear: right!important;
}
.message .messageComments {
text-align: right!important;
}
.message .messageComments .comment {
padding: 5px 40px 5px 6px!important;
font-family: tahoma, serif!important;
line-height: 1.4;
}
.message .messageComments .comment .networkName {
padding-left: 5px!important;
}
.message .messageComments .comment.details {
padding: 5px!important;
}
.message .messageComments .arrow {
left: auto!important;
right: 10px!important;
}
.message .attachedLink {
float: right!important;
margin: 0 0 5px 5px!important;
}
.message .postAttachment .title, .message .postAttachment .caption {
text-align: right;
font-family: tahoma, serif;
line-height: 1.4;
}
.message .postAttachment .description, .message .postAttachment .caption {
text-align: right!important;
direction: rtl!important;
text-align: right;
font-family: tahoma, serif;
float: right!important;
}
.message .messageSource {
clear: right!important;
float: right!important;
font-weight: bold;
}
} | 0.253491 | 0.053157 |
.projects-sidebar #projects-index ul.projects li:before {
position: absolute;
float: left;
color: #4aa3b3 !important;
top: 12px;
left: -5px;
}
.projects-sidebar #projects-index ul.projects li.child:before {
top: 3px;
}
.projects-sidebar #projects-index ul.projects .wiki.description {
display: none !important;
}
.projects-sidebar #projects-index ul.projects ul {
margin-bottom: 0;
}
.projects-sidebar #projects-index ul.projects a.project {
padding: 0;
margin-left: 25px;
}
.projects-sidebar #projects-index ul.projects .fa a.icon {
padding-left: 0px;
}
.projects-sidebar #projects-index .icon-fav::before {
content: "\f005";
color: #df8b3b;
}
.projects-sidebar #projects-index ul.projects li.child {
margin-top: 0;
}
.projects-sidebar #projects-index ul.projects li a {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.projects-sidebar #projects-index ul.projects .icon-fav+.description p {
padding-left: 39px;
}
.projects-sidebar #projects-index {
margin: 0 0 9.75px 0;
overflow-y: auto;
padding-left: 5px;
}
.projects-sidebar #projects-index ul.projects ul.projects {
border-left: 3px solid #e7e7e7;
padding-left: 15px;
margin-left: 0px;
}
.projects-sidebar #projects-index ul.projects li.root {
padding: 9.75px 0;
border: 0;
border-bottom: 1px solid #e6eaef;
}
.projects-sidebar #projects-index ul.projects div.root a.project {
font-size: 14px;
}
.projects-sidebar #projects-index ul.projects .wiki.description {
margin-top: 9.75px;
}
.projects-sidebar #projects-index ul.projects div.root .child a {
font-size: 13px !important;
}
.projects-sidebar #projects-index ul.projects a.parent {
font-weight: bold;
}
.projects-sidebar #projects-index ul.projects li.fa {
position: relative;
cursor: pointer;
}
.projects-sidebar ul.projects {
margin: 0;
padding-left: 19.5px;
}
.projects-sidebar ul.projects ul {
padding-left: 1.6em;
}
.projects-sidebar ul.projects li {
list-style-type: none;
}
.projects-sidebar ul.projects li.fa {
display: list-item;
}
.projects-sidebar a.toogle-projects-tree {
color: inherit;
text-decoration: none;
cursor: pointer;
} | assets/stylesheets/projects_sidebar.css | .projects-sidebar #projects-index ul.projects li:before {
position: absolute;
float: left;
color: #4aa3b3 !important;
top: 12px;
left: -5px;
}
.projects-sidebar #projects-index ul.projects li.child:before {
top: 3px;
}
.projects-sidebar #projects-index ul.projects .wiki.description {
display: none !important;
}
.projects-sidebar #projects-index ul.projects ul {
margin-bottom: 0;
}
.projects-sidebar #projects-index ul.projects a.project {
padding: 0;
margin-left: 25px;
}
.projects-sidebar #projects-index ul.projects .fa a.icon {
padding-left: 0px;
}
.projects-sidebar #projects-index .icon-fav::before {
content: "\f005";
color: #df8b3b;
}
.projects-sidebar #projects-index ul.projects li.child {
margin-top: 0;
}
.projects-sidebar #projects-index ul.projects li a {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
}
.projects-sidebar #projects-index ul.projects .icon-fav+.description p {
padding-left: 39px;
}
.projects-sidebar #projects-index {
margin: 0 0 9.75px 0;
overflow-y: auto;
padding-left: 5px;
}
.projects-sidebar #projects-index ul.projects ul.projects {
border-left: 3px solid #e7e7e7;
padding-left: 15px;
margin-left: 0px;
}
.projects-sidebar #projects-index ul.projects li.root {
padding: 9.75px 0;
border: 0;
border-bottom: 1px solid #e6eaef;
}
.projects-sidebar #projects-index ul.projects div.root a.project {
font-size: 14px;
}
.projects-sidebar #projects-index ul.projects .wiki.description {
margin-top: 9.75px;
}
.projects-sidebar #projects-index ul.projects div.root .child a {
font-size: 13px !important;
}
.projects-sidebar #projects-index ul.projects a.parent {
font-weight: bold;
}
.projects-sidebar #projects-index ul.projects li.fa {
position: relative;
cursor: pointer;
}
.projects-sidebar ul.projects {
margin: 0;
padding-left: 19.5px;
}
.projects-sidebar ul.projects ul {
padding-left: 1.6em;
}
.projects-sidebar ul.projects li {
list-style-type: none;
}
.projects-sidebar ul.projects li.fa {
display: list-item;
}
.projects-sidebar a.toogle-projects-tree {
color: inherit;
text-decoration: none;
cursor: pointer;
} | 0.312265 | 0.118003 |
@namespace
url(http://www.w3.org/1999/xhtml);
@-moz-document
url("krautchan.net"),
url-prefix(http://krautchan.net),
url-prefix(https://krautchan.net),
domain("www.krautchan.net") {
div.site_name, div.site_slogan, h1, .postsubject {
font-family: Courier, monospace !important;
color: #00c000 !important;
}
h2, .postername, .tripcode {
font-family: Courier, monospace !important;
}
span.hidden_thread, span.board_newposts, li.board_newposts, span.nav_group_button, .postreply, .postreply_highlighted, .file_reply {
background: #222 !important;
}
div.desuchan_version .desu {color: #666 !important; }
div.desuchan_version .chan {color: #444 !important; }
span.hidden_thread {
border: 1px solid #333 !important;
}
div.postform_info_notice {
background: #333 !important;
border: 1px solid #00c000 !important;
color: #aaa !important;
}
div.postform_info_error {
background: #333 !important;
border: 1px solid #f00 !important;
color: #aaa !important;
}
body { background: #111 !important; }
p { color: #aaaaaa; }
a {text-decoration: none !important; }
hr {
background-color: #222;
height: 1px;
border: 0;
}
ul { color: #aaa; }
div.radio_onair, div.radio_idle, div.radio_offline { /* Radio-Tooltip*/
color:#00c000 !important;
background-color: #222 !important;
border: 1px solid #00c000 !important;
}
img#button_radio_details + span { /* Radio-Leiste*/
color:#555 !important;
font-weight:normal !important;
}
body > div > b > a { /* Radio-Stream-Links */
font-weight: normal !important;
}
body > div > b { /*Klammern zwischen Radio-Streams etc., so ein Krebs */
color: #555 !important;
font-weight: normal !important;
}
div { /* Löschen-Leiste, Datum, Dateiinfos etc. */
color: #555 !important;
}
.boardlist a:hover {
background: #00c000 !important;
color: #333 !important;
}
form > div > table, td {
border-style: none !important;
}
span.nav_group_button {
color: #00c000 !important;
border: 1px solid #00c000 !important;
}
h2 {
color: #ddd !important;
background: #333 !important;
font-size: 120% !important;
}
center h2 {
font-family: sans-serif !important;
font-size: 100% !important;
color: #00c000 !important;
background-color: #222 !important;
border: 1px solid #00c000 !important;
}
.invalidquotelink {color: #555 !important; }
a.quotelink:active, a.quotelink:link, a.quotelink:visited {
color:#cccccc !important;
}
a.quotelink:hover{
font-weight: normal !important;
color: #00c000 !important;
}
table.postform td.label{
color: #aaaaaa !important;
background: #222 !important;
}
table.postform td.label_highlighted {
background: #222;
}
form td {/* "zum Löschen von Posts" und Zeile darüber*/
color:#aaaaaa;
}
td.message_notice.firstrow_left { /* Meldungen beim Datei hochladen */
background-color: #222 !important;
color: #555 !important;
}
td.message_text.firstrow_right, td.message_text.lastrow_right {
background-color: #222 !important;
color: #aaa !important;
}
td.message_info.lastrow_left {
background-color: #00c000 !important;
color: #222 !important;
}
span.linkbox {
background-color: #222 !important;
}
span.linkbox a, a:link, .authority_mod{
color: #00c000 !important;
}
a:visited, .quote { color: #070 !important; }
input[type=file] * {/* Datei-Hochlade-Feld*/
color: #555 !important;
}
center form { /* Shi-Painter */
color: #333 !important;
}
form textarea * {
background-color: #222 !important;
color: #00c000 !important;
border: none !important;
}
form input * {
background-color: #222 !important;
color: #ccc !important;
}
.postername {
color: #ccc !important;
font-size: 120%;
}
.tripcode {
color: #aaa !important;
font-size: 120%;}
.postsubject {
font-weight: bold !important;
font-size: 150% !important;
}
.omittedinfo { color: #555 !important; }
.postreply_highlighted {
border: 1px solid #00c000 !important;
}
span.spoiler:hover { color: #aaa !important; }
.file_thread {
background: #222 !important;
border: #555 1px solid !important;
}
.file_reply {
border: #555 1px solid !important;
}
.file_thread a, .file_reply a { color: #aaa !important; } /* Links über Vorschaubildern*/
div.box_title {
background-color: #333 !important;
color: #00c000 !important;
}
div.menu_title {
background: #333 !important;
}
div.box {
background-color: #222 !important;
border-left: solid 1px #333 !important;
border-right: solid 1px #333 !important;
border-bottom: solid 1px #333 !important;
}
div.newsbody {
background-color: #222 !important;
border-left: solid 1px #333 !important;
border-right: solid 1px #333 !important;
border-bottom: solid 1px #333 !important;
}
img[src*="/images/button-expand.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAAD<KEY>FTkSuQmCC) no-repeat !important; }
img[src*="/images/icon-report.png"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAErSURBVCiRpY9NSsNwEMXff2bSNKEf0GVWbgRx1WMIrqSC4BnsAURwJ95EunDtzhN4AXEraCIaIzUVazLjorUooRbjwGzmzW/ePNfv99eI6NQ5twtAsLoKMztX1UNh5pOiKAaTyUTMbCXpnJMwDAciohxF0SjPc68sS5jZotOdFPEwhrKied38oakq+76/QQA8Va04ZFsZNFRk21lFm+97tOw9eptJnPPSCEvhRtwAAHix93fYu5tB3n0d+OEfML/MsvJrjczyJJBHAY9rwPzM6Fx24CU13k6GCdK9FMlB8is8Jare+MpK46o2359yFEXrzLypquycAxGBiNC+aiO4CdC76IFAizkzIwiCDyIaiYgcmVnZarX2nXP+d4fubRcIf7qa2TuAMxE5/gSPEHH6cgzc1AAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-paint.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFpSURBVCiRjdKxaxRREMfx77ydd5vd7EKiBzYGbEJid3B/SkwR/wfBlCLYiaWC/4Ok0H/GxgspbCxVhIXdy+6+eRbqceveeQ68bj7zewMjs9nsgXPulYg8ApTd1ccY35vZM02S5GXf92d1XWuMcdSZJAnihL7rARARzfP8TFXNAedN0/gQAmY2eM459u7ukU5TVBUzI4RA0zQeOFfAm9koUVXJphk3T24wb5y8OYGv0LYtv/u927TUOqzv1yzvLbl+ek06TZlMJqu+Ef4b/qn1Aep1jLfBVVLnwCBaHOJdMP+Sc/z2mOW3JSGEId6/s0/1sNoJu64b7yxBKD4XHH04+i84wFEii8sFhx8PVwP+BWH9HAXag5bF5YLT16f4ylN+KrdCAJnP57dVVU3ygxyHg/hrkCVG873ZnKhKWZatAldZll3UP2q/7bYHaSJkWdYBV6qqz2OMoSiKxyKSbvzfWsUYb4F3qvriJ+qHu9Mz4vKoAAAAAElFTkSuQmCC) no-repeat !important; }
img[src*="/images/button-open.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFeSURBVCiRnVKxSgNBEH2zO5fjjlxyiV2aWFoGUmsfEBFio79gYyuCndha+AM2aqEgkl8w35F0QZAcCUk07u5YJDmJR0jwwbIwb968mdmlWq22rZS6JqIjAIz1MCLy5Jw7Z631lTGmOR6PWUTWKomIwzBsMrPTlUrlcTQaedZaiEh6BnsD9E57oAkh180tcc457fv+jgLgOecyDv2DPsyWQbKfZLh5vqdWtSd6NoLzs4UXWCneBOl2h7tD9A/7qZMLZreNLDq3HQAAGUL5uYziW3HZOWkkMCUDFzq40AE0JwhpzBYsksbvDlJx3IrBHww90NADDSxeTZDGvHcPcSvOth21I0TtKCW6N13YgoUealTPqsvDqj/O/8FKsfqcUWRpVQoUgKlS2Rrxawyv56H0UsqKZvlTqtfrd8aY48lk4m34txEEwTczPzAzX4iIzefzJ0TkrxOLyBeAe2a+/AGNkZXAp4DZlwAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-close.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADySURBVCiRpZFNSgNBEIVfdb8h9DBNxpzAIwzM2gNkp8SVNxHBnXgTySLucgVznRkYGHSm7XKRIMQQOjEPitrUV69+pKqqa2PMq4jcAyDSCqq6ijE+0lr7EkJY9H1PVU2SIsI8zxcko9R1PXRdl4UQTjDdiiS896MBkMUYTwYBYFefmbOoP7oI/r1ud9OhuW0QJ8dXkCCYvc8w/Zjuw+28RbhKH62dt4dwuS7R3DXQ7Pi7zKdBuS4Px/YbD7/xSedtl730P10MD8ac12NXPxgAS+fcSBLW2mSQhHNuBLAkySdV/S6K4kFEJilXVf0C8Eby+QfkcUyUL+ocQgAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-checkmark.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAGfSURBVCiRjZK9bhNBFIW/OztjtI5/1kGOi0QIKgooLLkgJQ1PkFj8VLQUeQCEhEQR8QIIGlLQQIMQVVIgKtq0vEFANpEtEjme2J7dSxFYZGWDmW7mnk/33HtG2u32VWPMcxHZBCyLT1DV91mWPbZRFG2HEDbG47FV1YWkiNhyubxhrc0s0PXeuzRN/wlpSelt9ZCZsPZyzVWr1a4BXJZlCzsePjzE3/CkScpvvTP/MSNHd44YrY8wE0PzdTN/XwifXj9leHcIQHOnSel76TycxRnq5hcWGoH+oz5qlGQ3YWl/aa6eR3Pw7AAEVrdXiX5GAAy7Q9JaSvw1ZvnD8jlXeWf3wxEuB3pbPdQp0ytTRrdGyFRY2VmBgp3mcOtVC9d3TK5NGNwbMNgcgED9cz13ciFsTgytFy3I4Pj2Mf6mx3hDspsUgnMwQOlbidqXGsjZPdlLMCcXB2KAqTF/BY2PDWQmGG+of6oXQ2f6qXQ6nTchhPvee/fnb6tTZCaFoIgQx/HMWvvOWmufqGpaqVQeiMilXBUXW1XVCfDWWvv0F38yk9XbXpVNAAAAAElFTkSuQmCC) no-repeat !important; }
img[src*="/images/button-refresh.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHuSURBVCiRhZK/ahRRFMZ/Z+buZCbOrsukcAVjItiohSEJ+ACWlskWxt7SQmyMIDZiJT6DhVrEVD5AQATJAxiIVmKyJCz548LM3Zmde6/FmknWDXjgNh/fx/c7nCtzc3Oznue9EpFlQPH/KZ1zH621T5Xv+y/LslzKskw550Zc+oYGC9F2VGkioiYnJ5eUUtYD2lrrmjEGa+3I6z7o0nnSoX+5X2nGGLTWNaDtATVr7WmdQDqfctg+RB0onHJ0H3bBO7X89ddGdhxcGrD3eI9BazCCn8/mHN87pvmpOaJXYXPR0FntYJoG/9gn3owpk5JsPsP5Dhta/p0Kpne3h2kagl8B06vTRN8i0sUUgKl3UyRryVi4aj4xJusJXuohAyH8HpKsJ4Tb4VhwJGwnhliqO5SirYhoa3gipxz7j/YJfgYk66cEFbb/2wegf70/1pAupmS3M/Qtff7O9c91AI6Wj8iv5ZWhmC44WDkAIN6Mz8euf6mT3knRNzW7L3YJdgLECPnVHATCHyGNjcZYc+F5HlIKrTctGhsNpBCKKwX5TI5YIf4a03rdQgoZhjwPoJCFhYW3ZVne11rXTv62vWDpz/QRKwSdAL/nV20iQhRFA6XUB6WUeuacM3Ecr4jIROXaOcN3htY5lwPvlVLP/wBLsdJXdtEBqAAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-animation.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuP<KEY>ABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-question.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAG4SURBVCiRhZC9bhNB<KEY>dL0oiJ1hxRJBAiALZcgEPgIRoaJKKB+ABqIgi0SFaGiRKKkSBeICkJfAANJRpMEVCFP9kWa93ZyhIHCyW+Ei3uTrnnnOuarfb17TWL5VSW4AwH7n3/oNzbluMMS/yPN9MkkS893OVSimp1WqbIuJUt9vNhsOhzfMcbzz9h31Gd0fkjRz9S1M5qBB8C6jv1VGFAkBEiKJoIoB1zgFw+OSQ0b0RAPaHxVc8SSch6SScdk5Zeb2CGRjO+Fb/HWm8MQYg3A9pbbdYf7pO400DgPRWysmjk5kKMw9afbVKej0l+hzBWf3wS0j/QZ/xxpjkTsISS+Vi27PYnsUFjuJKQREWpDdTslY2rfJf53MM7g843jqe/XKmiPfi+eJzmKFBfgr2u2Xx4yJyNEsvFetEI0fC2s4aOtVllD+8smX1oEq8G4O5LFeJswscvWc9fMUzuTph+e3ypc6Z1hcB1ERNo+pheeQzfmaazeYNY8xt55xRSqHR1D/VWfi6QLwfo5VG64sxxhAEwURr/V5EZMd7X4Rh+FgpVZ2e7wHRv67e+zHwTkSe/wauBJQmvoYWsAAAAABJRU5ErkJggg==) no-repeat !important; }
} | data/usercss/83490.user.css | @namespace
url(http://www.w3.org/1999/xhtml);
@-moz-document
url("krautchan.net"),
url-prefix(http://krautchan.net),
url-prefix(https://krautchan.net),
domain("www.krautchan.net") {
div.site_name, div.site_slogan, h1, .postsubject {
font-family: Courier, monospace !important;
color: #00c000 !important;
}
h2, .postername, .tripcode {
font-family: Courier, monospace !important;
}
span.hidden_thread, span.board_newposts, li.board_newposts, span.nav_group_button, .postreply, .postreply_highlighted, .file_reply {
background: #222 !important;
}
div.desuchan_version .desu {color: #666 !important; }
div.desuchan_version .chan {color: #444 !important; }
span.hidden_thread {
border: 1px solid #333 !important;
}
div.postform_info_notice {
background: #333 !important;
border: 1px solid #00c000 !important;
color: #aaa !important;
}
div.postform_info_error {
background: #333 !important;
border: 1px solid #f00 !important;
color: #aaa !important;
}
body { background: #111 !important; }
p { color: #aaaaaa; }
a {text-decoration: none !important; }
hr {
background-color: #222;
height: 1px;
border: 0;
}
ul { color: #aaa; }
div.radio_onair, div.radio_idle, div.radio_offline { /* Radio-Tooltip*/
color:#00c000 !important;
background-color: #222 !important;
border: 1px solid #00c000 !important;
}
img#button_radio_details + span { /* Radio-Leiste*/
color:#555 !important;
font-weight:normal !important;
}
body > div > b > a { /* Radio-Stream-Links */
font-weight: normal !important;
}
body > div > b { /*Klammern zwischen Radio-Streams etc., so ein Krebs */
color: #555 !important;
font-weight: normal !important;
}
div { /* Löschen-Leiste, Datum, Dateiinfos etc. */
color: #555 !important;
}
.boardlist a:hover {
background: #00c000 !important;
color: #333 !important;
}
form > div > table, td {
border-style: none !important;
}
span.nav_group_button {
color: #00c000 !important;
border: 1px solid #00c000 !important;
}
h2 {
color: #ddd !important;
background: #333 !important;
font-size: 120% !important;
}
center h2 {
font-family: sans-serif !important;
font-size: 100% !important;
color: #00c000 !important;
background-color: #222 !important;
border: 1px solid #00c000 !important;
}
.invalidquotelink {color: #555 !important; }
a.quotelink:active, a.quotelink:link, a.quotelink:visited {
color:#cccccc !important;
}
a.quotelink:hover{
font-weight: normal !important;
color: #00c000 !important;
}
table.postform td.label{
color: #aaaaaa !important;
background: #222 !important;
}
table.postform td.label_highlighted {
background: #222;
}
form td {/* "zum Löschen von Posts" und Zeile darüber*/
color:#aaaaaa;
}
td.message_notice.firstrow_left { /* Meldungen beim Datei hochladen */
background-color: #222 !important;
color: #555 !important;
}
td.message_text.firstrow_right, td.message_text.lastrow_right {
background-color: #222 !important;
color: #aaa !important;
}
td.message_info.lastrow_left {
background-color: #00c000 !important;
color: #222 !important;
}
span.linkbox {
background-color: #222 !important;
}
span.linkbox a, a:link, .authority_mod{
color: #00c000 !important;
}
a:visited, .quote { color: #070 !important; }
input[type=file] * {/* Datei-Hochlade-Feld*/
color: #555 !important;
}
center form { /* Shi-Painter */
color: #333 !important;
}
form textarea * {
background-color: #222 !important;
color: #00c000 !important;
border: none !important;
}
form input * {
background-color: #222 !important;
color: #ccc !important;
}
.postername {
color: #ccc !important;
font-size: 120%;
}
.tripcode {
color: #aaa !important;
font-size: 120%;}
.postsubject {
font-weight: bold !important;
font-size: 150% !important;
}
.omittedinfo { color: #555 !important; }
.postreply_highlighted {
border: 1px solid #00c000 !important;
}
span.spoiler:hover { color: #aaa !important; }
.file_thread {
background: #222 !important;
border: #555 1px solid !important;
}
.file_reply {
border: #555 1px solid !important;
}
.file_thread a, .file_reply a { color: #aaa !important; } /* Links über Vorschaubildern*/
div.box_title {
background-color: #333 !important;
color: #00c000 !important;
}
div.menu_title {
background: #333 !important;
}
div.box {
background-color: #222 !important;
border-left: solid 1px #333 !important;
border-right: solid 1px #333 !important;
border-bottom: solid 1px #333 !important;
}
div.newsbody {
background-color: #222 !important;
border-left: solid 1px #333 !important;
border-right: solid 1px #333 !important;
border-bottom: solid 1px #333 !important;
}
img[src*="/images/button-expand.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAAD<KEY>FTkSuQmCC) no-repeat !important; }
img[src*="/images/icon-report.png"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAErSURBVCiRpY9NSsNwEMXff2bSNKEf0GVWbgRx1WMIrqSC4BnsAURwJ95EunDtzhN4AXEraCIaIzUVazLjorUooRbjwGzmzW/ePNfv99eI6NQ5twtAsLoKMztX1UNh5pOiKAaTyUTMbCXpnJMwDAciohxF0SjPc68sS5jZotOdFPEwhrKied38oakq+76/QQA8Va04ZFsZNFRk21lFm+97tOw9eptJnPPSCEvhRtwAAHix93fYu5tB3n0d+OEfML/MsvJrjczyJJBHAY9rwPzM6Fx24CU13k6GCdK9FMlB8is8Jare+MpK46o2359yFEXrzLypquycAxGBiNC+aiO4CdC76IFAizkzIwiCDyIaiYgcmVnZarX2nXP+d4fubRcIf7qa2TuAMxE5/gSPEHH6cgzc1AAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-paint.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFpSURBVCiRjdKxaxRREMfx77ydd5vd7EKiBzYGbEJid3B/SkwR/wfBlCLYiaWC/4Ok0H/GxgspbCxVhIXdy+6+eRbqceveeQ68bj7zewMjs9nsgXPulYg8ApTd1ccY35vZM02S5GXf92d1XWuMcdSZJAnihL7rARARzfP8TFXNAedN0/gQAmY2eM459u7ukU5TVBUzI4RA0zQeOFfAm9koUVXJphk3T24wb5y8OYGv0LYtv/u927TUOqzv1yzvLbl+ek06TZlMJqu+Ef4b/qn1Aep1jLfBVVLnwCBaHOJdMP+Sc/z2mOW3JSGEId6/s0/1sNoJu64b7yxBKD4XHH04+i84wFEii8sFhx8PVwP+BWH9HAXag5bF5YLT16f4ylN+KrdCAJnP57dVVU3ygxyHg/hrkCVG873ZnKhKWZatAldZll3UP2q/7bYHaSJkWdYBV6qqz2OMoSiKxyKSbvzfWsUYb4F3qvriJ+qHu9Mz4vKoAAAAAElFTkSuQmCC) no-repeat !important; }
img[src*="/images/button-open.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAFeSURBVCiRnVKxSgNBEH2zO5fjjlxyiV2aWFoGUmsfEBFio79gYyuCndha+AM2aqEgkl8w35F0QZAcCUk07u5YJDmJR0jwwbIwb968mdmlWq22rZS6JqIjAIz1MCLy5Jw7Z631lTGmOR6PWUTWKomIwzBsMrPTlUrlcTQaedZaiEh6BnsD9E57oAkh180tcc457fv+jgLgOecyDv2DPsyWQbKfZLh5vqdWtSd6NoLzs4UXWCneBOl2h7tD9A/7qZMLZreNLDq3HQAAGUL5uYziW3HZOWkkMCUDFzq40AE0JwhpzBYsksbvDlJx3IrBHww90NADDSxeTZDGvHcPcSvOth21I0TtKCW6N13YgoUealTPqsvDqj/O/8FKsfqcUWRpVQoUgKlS2Rrxawyv56H0UsqKZvlTqtfrd8aY48lk4m34txEEwTczPzAzX4iIzefzJ0TkrxOLyBeAe2a+/AGNkZXAp4DZlwAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-close.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADySURBVCiRpZFNSgNBEIVfdb8h9DBNxpzAIwzM2gNkp8SVNxHBnXgTySLucgVznRkYGHSm7XKRIMQQOjEPitrUV69+pKqqa2PMq4jcAyDSCqq6ijE+0lr7EkJY9H1PVU2SIsI8zxcko9R1PXRdl4UQTjDdiiS896MBkMUYTwYBYFefmbOoP7oI/r1ud9OhuW0QJ8dXkCCYvc8w/Zjuw+28RbhKH62dt4dwuS7R3DXQ7Pi7zKdBuS4Px/YbD7/xSedtl730P10MD8ac12NXPxgAS+fcSBLW2mSQhHNuBLAkySdV/S6K4kFEJilXVf0C8Eby+QfkcUyUL+ocQgAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-checkmark.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAGfSURBVCiRjZK9bhNBFIW/OztjtI5/1kGOi0QIKgooLLkgJQ1PkFj8VLQUeQCEhEQR8QIIGlLQQIMQVVIgKtq0vEFANpEtEjme2J7dSxFYZGWDmW7mnk/33HtG2u32VWPMcxHZBCyLT1DV91mWPbZRFG2HEDbG47FV1YWkiNhyubxhrc0s0PXeuzRN/wlpSelt9ZCZsPZyzVWr1a4BXJZlCzsePjzE3/CkScpvvTP/MSNHd44YrY8wE0PzdTN/XwifXj9leHcIQHOnSel76TycxRnq5hcWGoH+oz5qlGQ3YWl/aa6eR3Pw7AAEVrdXiX5GAAy7Q9JaSvw1ZvnD8jlXeWf3wxEuB3pbPdQp0ytTRrdGyFRY2VmBgp3mcOtVC9d3TK5NGNwbMNgcgED9cz13ciFsTgytFy3I4Pj2Mf6mx3hDspsUgnMwQOlbidqXGsjZPdlLMCcXB2KAqTF/BY2PDWQmGG+of6oXQ2f6qXQ6nTchhPvee/fnb6tTZCaFoIgQx/HMWvvOWmufqGpaqVQeiMilXBUXW1XVCfDWWvv0F38yk9XbXpVNAAAAAElFTkSuQmCC) no-repeat !important; }
img[src*="/images/button-refresh.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHuSURBVCiRhZK/ahRRFMZ/Z+buZCbOrsukcAVjItiohSEJ+ACWlskWxt7SQmyMIDZiJT6DhVrEVD5AQATJAxiIVmKyJCz548LM3Zmde6/FmknWDXjgNh/fx/c7nCtzc3Oznue9EpFlQPH/KZ1zH621T5Xv+y/LslzKskw550Zc+oYGC9F2VGkioiYnJ5eUUtYD2lrrmjEGa+3I6z7o0nnSoX+5X2nGGLTWNaDtATVr7WmdQDqfctg+RB0onHJ0H3bBO7X89ddGdhxcGrD3eI9BazCCn8/mHN87pvmpOaJXYXPR0FntYJoG/9gn3owpk5JsPsP5Dhta/p0Kpne3h2kagl8B06vTRN8i0sUUgKl3UyRryVi4aj4xJusJXuohAyH8HpKsJ4Tb4VhwJGwnhliqO5SirYhoa3gipxz7j/YJfgYk66cEFbb/2wegf70/1pAupmS3M/Qtff7O9c91AI6Wj8iv5ZWhmC44WDkAIN6Mz8euf6mT3knRNzW7L3YJdgLECPnVHATCHyGNjcZYc+F5HlIKrTctGhsNpBCKKwX5TI5YIf4a03rdQgoZhjwPoJCFhYW3ZVne11rXTv62vWDpz/QRKwSdAL/nV20iQhRFA6XUB6WUeuacM3Ecr4jIROXaOcN3htY5lwPvlVLP/wBLsdJXdtEBqAAAAABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-animation.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuP<KEY>ABJRU5ErkJggg==) no-repeat !important; }
img[src*="/images/button-question.gif"] {
padding: 0px 0px 15px 15px !important; width:0px !important; height:0px !important;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAG4SURBVCiRhZC9bhNB<KEY>dL0oiJ1hxRJBAiALZcgEPgIRoaJKKB+ABqIgi0SFaGiRKKkSBeICkJfAANJRpMEVCFP9kWa93ZyhIHCyW+Ei3uTrnnnOuarfb17TWL5VSW4AwH7n3/oNzbluMMS/yPN9MkkS893OVSimp1WqbIuJUt9vNhsOhzfMcbzz9h31Gd0fkjRz9S1M5qBB8C6jv1VGFAkBEiKJoIoB1zgFw+OSQ0b0RAPaHxVc8SSch6SScdk5Zeb2CGRjO+Fb/HWm8MQYg3A9pbbdYf7pO400DgPRWysmjk5kKMw9afbVKej0l+hzBWf3wS0j/QZ/xxpjkTsISS+Vi27PYnsUFjuJKQREWpDdTslY2rfJf53MM7g843jqe/XKmiPfi+eJzmKFBfgr2u2Xx4yJyNEsvFetEI0fC2s4aOtVllD+8smX1oEq8G4O5LFeJswscvWc9fMUzuTph+e3ypc6Z1hcB1ERNo+pheeQzfmaazeYNY8xt55xRSqHR1D/VWfi6QLwfo5VG64sxxhAEwURr/V5EZMd7X4Rh+FgpVZ2e7wHRv67e+zHwTkSe/wauBJQmvoYWsAAAAABJRU5ErkJggg==) no-repeat !important; }
} | 0.200793 | 0.101367 |
.dcjq-vertical-mega-menu .menu {
line-height: 16px;
position: relative;
font-family: Arial;
font-size: 14px;
/* Required */
;
}
.dcjq-vertical-mega-menu .menu li a {
display: block;
color: #000;
padding: 11px 38px 11px 25px;
text-decoration: none;
border-bottom: 1px solid #ebeef2;
background: url(../images/bg_nav.png) repeat-x 0 0;
}
.dcjq-vertical-mega-menu .menu li a i {
margin-right: 5px;
}
.dcjq-vertical-mega-menu .menu li a:hover, .dcjq-vertical-mega-menu .menu li.mega-hover a {
color: #38b04a;
}
.dcjq-vertical-mega-menu .menu li a.dc-mega {
position: relative;
}
/* Add arrow icon to parent links */
.dcjq-vertical-mega-menu .menu li a .dc-mega-icon {
display: block;
position: absolute;
top: 14px;
right: 15px;
width: 6px;
height: 8px;
background: url(../images/arrow_right.png) no-repeat -6px 0;
}
/* Mega menu container */
.dcjq-vertical-mega-menu .menu li .sub-container {
position: absolute;
/* Required */
overflow: hidden;
background: url(../images/bg_menu.png) no-repeat 100% 100%;
/* Add the drop shadow */
padding: 0 13px 17px 0;
/* Padding for drop shadow */
;
}
.dcjq-vertical-mega-menu .menu li .sub-container .sub {
padding: 15px 15px 5px 15px;
background: #fff;
}
.dcjq-vertical-mega-menu .menu li .sub .row {
width: 100%;
overflow: hidden;
/* Clear floats */
;
}
.dcjq-vertical-mega-menu .menu li .sub li {
float: none;
width: 160px;
font-size: 1em;
font-weight: normal;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr {
float: left;
/* Required */
margin: 0 5px 10px 5px;
}
.dcjq-vertical-mega-menu .menu li .sub a, .dcjq-vertical-mega-menu .menu.left li .sub a {
background: none;
border: none;
text-shadow: none;
float: none;
color: #000;
display: block;
text-decoration: none;
font-size: 0.9em;
margin-bottom: 0;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr a.mega-hdr-a {
padding: 5px;
margin-bottom: 5px;
text-transform: uppercase;
color: #6cc550;
text-align: center;
font-size: 13px;
font-weight: bold;
background: none;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr a.mega-hdr-a:hover {
color: #000;
}
.dcjq-vertical-mega-menu .menu .sub li.mega-hdr li {
margin-bottom: 3px;
}
.dcjq-vertical-mega-menu .menu .sub li a {
padding: 3px 3px 3px 15px;
background: url(../images/bullet.png) no-repeat 3px 8px;
font-weight: normal;
text-transform: capitalize;
}
/* Styling for menu items with only 2 levels */
.dcjq-vertical-mega-menu .menu li .sub-container.non-mega .sub {
padding: 10px;
background: #fff;
}
.dcjq-vertical-mega-menu .menu li .sub-container.non-mega li {
padding: 0;
margin: 0;
width: 150px;
float: none;
} | public/layouts/wp-content/themes/kenshop/css/vertical-menu.css | .dcjq-vertical-mega-menu .menu {
line-height: 16px;
position: relative;
font-family: Arial;
font-size: 14px;
/* Required */
;
}
.dcjq-vertical-mega-menu .menu li a {
display: block;
color: #000;
padding: 11px 38px 11px 25px;
text-decoration: none;
border-bottom: 1px solid #ebeef2;
background: url(../images/bg_nav.png) repeat-x 0 0;
}
.dcjq-vertical-mega-menu .menu li a i {
margin-right: 5px;
}
.dcjq-vertical-mega-menu .menu li a:hover, .dcjq-vertical-mega-menu .menu li.mega-hover a {
color: #38b04a;
}
.dcjq-vertical-mega-menu .menu li a.dc-mega {
position: relative;
}
/* Add arrow icon to parent links */
.dcjq-vertical-mega-menu .menu li a .dc-mega-icon {
display: block;
position: absolute;
top: 14px;
right: 15px;
width: 6px;
height: 8px;
background: url(../images/arrow_right.png) no-repeat -6px 0;
}
/* Mega menu container */
.dcjq-vertical-mega-menu .menu li .sub-container {
position: absolute;
/* Required */
overflow: hidden;
background: url(../images/bg_menu.png) no-repeat 100% 100%;
/* Add the drop shadow */
padding: 0 13px 17px 0;
/* Padding for drop shadow */
;
}
.dcjq-vertical-mega-menu .menu li .sub-container .sub {
padding: 15px 15px 5px 15px;
background: #fff;
}
.dcjq-vertical-mega-menu .menu li .sub .row {
width: 100%;
overflow: hidden;
/* Clear floats */
;
}
.dcjq-vertical-mega-menu .menu li .sub li {
float: none;
width: 160px;
font-size: 1em;
font-weight: normal;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr {
float: left;
/* Required */
margin: 0 5px 10px 5px;
}
.dcjq-vertical-mega-menu .menu li .sub a, .dcjq-vertical-mega-menu .menu.left li .sub a {
background: none;
border: none;
text-shadow: none;
float: none;
color: #000;
display: block;
text-decoration: none;
font-size: 0.9em;
margin-bottom: 0;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr a.mega-hdr-a {
padding: 5px;
margin-bottom: 5px;
text-transform: uppercase;
color: #6cc550;
text-align: center;
font-size: 13px;
font-weight: bold;
background: none;
}
.dcjq-vertical-mega-menu .menu li .sub li.mega-hdr a.mega-hdr-a:hover {
color: #000;
}
.dcjq-vertical-mega-menu .menu .sub li.mega-hdr li {
margin-bottom: 3px;
}
.dcjq-vertical-mega-menu .menu .sub li a {
padding: 3px 3px 3px 15px;
background: url(../images/bullet.png) no-repeat 3px 8px;
font-weight: normal;
text-transform: capitalize;
}
/* Styling for menu items with only 2 levels */
.dcjq-vertical-mega-menu .menu li .sub-container.non-mega .sub {
padding: 10px;
background: #fff;
}
.dcjq-vertical-mega-menu .menu li .sub-container.non-mega li {
padding: 0;
margin: 0;
width: 150px;
float: none;
} | 0.325842 | 0.05634 |
:root {
--header-font: 'Satisfy';
--content-font: 'Montserrat';
--main-text-color: black;
}
#set-height {
display: block
}
#v0 {
position: fixed;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
min-height: 100vh;
min-width: 100vw;
z-index: -1;
}
body {
min-height: 100vh;
scroll-behavior: smooth;
color: var(--main-text-color);
font-size: 36px;
font-family: var(--content-font);
z-index: -2;
}
header, .nav, main, footer {
z-index: 0;
}
a {
text-decoration: none;
color: black;
}
nav > a {
/* color: skyblue; */
color: rgb(0, 71, 204);
}
#particles-js {
position: fixed;
min-height: 100vh;
height: 100%;
width: 100%;
overflow: hidden;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
z-index: -1;
}
canvas .particles-js-canvas-el {
z-index: -1;
}
header {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 25vh;
overflow: hidden;
z-index: 1;
color: rgb(0, 71, 204);
}
.profile-img {
width: 400px;
}
h1, h2 {
font-family: var(--header-font);
text-align: center;
}
h1 {
font-size: 350%;
}
h2 {
font-size: 200%;
}
h3 {
font-size: 90%;
color: black;
}
nav {
display: flex;
flex-flow: row wrap;
justify-content: center;
z-index: 2;
}
nav > a {
padding: 10px;
z-index: 2;
}
.sticky-nav {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.7);
}
.sticky-nav + main {
padding-top: 50px;
}
main {
margin-top: 30vh;
display: flex;
flex-direction: column;
align-items: center;
gap: 300px;
}
main > section {
padding-top: 200px;
width: 40vw;
z-index: 1;
}
#full {
padding-top: 0;
margin-top: 0;
}
p {
padding-bottom: 30px;
line-height: 50px;
}
#skills {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#skills > ul {
padding-top: 20px;
text-align: center;
display: flex;
flex-flow: row wrap;
justify-content: center;
gap: 20px;
}
#skills > ul > li {
display: block;
flex: 1 0 40%;
}
#projects {
display: flex;
flex-flow: row-reverse wrap-reverse;
gap: 30px;
}
#full-portfolio > #projects {
flex-flow: column-reverse;
}
summary {
overflow: hidden;
height: 35vh;
flex: 1 0 40%;
border-radius: 5px;
z-index: 1;
}
summary > h4 {
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.screenshot {
min-height: 100%;
min-width: 100%;
object-fit: cover;
border-radius: 5px;
}
summary:last-child {
flex: 1 1 100%;
}
#resume {
display: flex;
flex-direction: column;
align-items: center;
}
#portfolio > p, #resume > p {
text-align: center;
}
#resume > embed {
width: 100%;
height: 250px;
z-index: 1;
}
#full > #resume > embed {
height: 600px;
}
#employments {
margin-top: 100px;
display: flex;
flex-direction: column;
gap: 50px;
}
#contact-box {
display: flex;
justify-content: center;
margin-bottom: 400px;
gap: 50px;
}
.social-link {
text-align: center;
z-index: 1;
}
.social-icon {
height: 100px;
width: 100px;
/* filter: invert(1); */
padding-top: 20px;
z-index: 1;
}
footer {
text-align: center;
font-size: 80%;
bottom: 0;
margin-bottom: 30px;
align-self: center;
}
#full-footer {
margin-top: 200px;
}
@media screen and (max-width: 1600px) {
main > section {
width: 50vw;
}
summary > h4 {
font-size: 80%;
}
}
@media screen and (max-width: 768px) {
body {
font-size: 24px;
}
.profile-img {
width: 300px;
}
main > section {
width: 80vw;
}
}
@media screen and (max-width: 480px) {
nav > a {
text-align: center;
flex: 1 0 25%;
}
main {
gap: 200px;
}
main > section {
width: 90vw;
}
#contact-box {
gap: 10px;
}
} | public/css/style.css | :root {
--header-font: 'Satisfy';
--content-font: 'Montserrat';
--main-text-color: black;
}
#set-height {
display: block
}
#v0 {
position: fixed;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
min-height: 100vh;
min-width: 100vw;
z-index: -1;
}
body {
min-height: 100vh;
scroll-behavior: smooth;
color: var(--main-text-color);
font-size: 36px;
font-family: var(--content-font);
z-index: -2;
}
header, .nav, main, footer {
z-index: 0;
}
a {
text-decoration: none;
color: black;
}
nav > a {
/* color: skyblue; */
color: rgb(0, 71, 204);
}
#particles-js {
position: fixed;
min-height: 100vh;
height: 100%;
width: 100%;
overflow: hidden;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
z-index: -1;
}
canvas .particles-js-canvas-el {
z-index: -1;
}
header {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 25vh;
overflow: hidden;
z-index: 1;
color: rgb(0, 71, 204);
}
.profile-img {
width: 400px;
}
h1, h2 {
font-family: var(--header-font);
text-align: center;
}
h1 {
font-size: 350%;
}
h2 {
font-size: 200%;
}
h3 {
font-size: 90%;
color: black;
}
nav {
display: flex;
flex-flow: row wrap;
justify-content: center;
z-index: 2;
}
nav > a {
padding: 10px;
z-index: 2;
}
.sticky-nav {
position: fixed;
top: 0;
width: 100%;
background-color: rgba(255, 255, 255, 0.7);
}
.sticky-nav + main {
padding-top: 50px;
}
main {
margin-top: 30vh;
display: flex;
flex-direction: column;
align-items: center;
gap: 300px;
}
main > section {
padding-top: 200px;
width: 40vw;
z-index: 1;
}
#full {
padding-top: 0;
margin-top: 0;
}
p {
padding-bottom: 30px;
line-height: 50px;
}
#skills {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#skills > ul {
padding-top: 20px;
text-align: center;
display: flex;
flex-flow: row wrap;
justify-content: center;
gap: 20px;
}
#skills > ul > li {
display: block;
flex: 1 0 40%;
}
#projects {
display: flex;
flex-flow: row-reverse wrap-reverse;
gap: 30px;
}
#full-portfolio > #projects {
flex-flow: column-reverse;
}
summary {
overflow: hidden;
height: 35vh;
flex: 1 0 40%;
border-radius: 5px;
z-index: 1;
}
summary > h4 {
display: flex;
justify-content: space-between;
align-items: flex-end;
}
.screenshot {
min-height: 100%;
min-width: 100%;
object-fit: cover;
border-radius: 5px;
}
summary:last-child {
flex: 1 1 100%;
}
#resume {
display: flex;
flex-direction: column;
align-items: center;
}
#portfolio > p, #resume > p {
text-align: center;
}
#resume > embed {
width: 100%;
height: 250px;
z-index: 1;
}
#full > #resume > embed {
height: 600px;
}
#employments {
margin-top: 100px;
display: flex;
flex-direction: column;
gap: 50px;
}
#contact-box {
display: flex;
justify-content: center;
margin-bottom: 400px;
gap: 50px;
}
.social-link {
text-align: center;
z-index: 1;
}
.social-icon {
height: 100px;
width: 100px;
/* filter: invert(1); */
padding-top: 20px;
z-index: 1;
}
footer {
text-align: center;
font-size: 80%;
bottom: 0;
margin-bottom: 30px;
align-self: center;
}
#full-footer {
margin-top: 200px;
}
@media screen and (max-width: 1600px) {
main > section {
width: 50vw;
}
summary > h4 {
font-size: 80%;
}
}
@media screen and (max-width: 768px) {
body {
font-size: 24px;
}
.profile-img {
width: 300px;
}
main > section {
width: 80vw;
}
}
@media screen and (max-width: 480px) {
nav > a {
text-align: center;
flex: 1 0 25%;
}
main {
gap: 200px;
}
main > section {
width: 90vw;
}
#contact-box {
gap: 10px;
}
} | 0.525856 | 0.160924 |
Author's custom styles
========================================================================== */
html,
body {
background-color: #ffffff;
font-size: 20px;
color: #202020;
width: 100%;
padding: 0;
margin-left: 0;
margin-right: 0;
font-family: 'open_sanslight';
font-weight: 300;
}
/*==========================================
PRE LOADER
==========================================*/
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fefefe;
z-index: 99999;
height: 100%;
width: 100%;
overflow: hidden !important;
}
.loaded {
width: 60px;
height: 60px;
position: absolute;
left: 50%;
top: 50%;
background-image: url(../images/loading.gif);
background-repeat: no-repeat;
background-position: center;
-moz-background-size: cover;
background-size: cover;
margin: -20px 0 0 -20px;
}
img {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag: none;
user-drag: none;
}
a,
a:hover,
a:active,
a:focus {
text-decoration: none;
outline: none;
}
a,
button,
a span {
-webkit-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.btn.extra-width {
padding: 13px 40px;
}
.btn:focus,
.btn:active {
outline: inherit;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* direction: rtl;*/
}
p {
margin: 0 0 15px;
}
.clear {
clear: both;
}
ol,
ul {
list-style: none;
padding: 0;
}
img {
max-width: 100%;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
outline: none;
}
.form-control {
border: 1px solid rgba(0, 0, 0, 0.08);
font-size: 16px;
height: 45px;
}
.form-control:focus {
border-color: #f56363;
}
h1,
h2,
h3 {
/*font-family: 'Lane', sans-serif;*/
font-weight: 300;
margin: 0;
}
h4,
h5 {
/*font-family: 'roboto', sans-serif;*/
font-weight: 300;
margin: 0;
line-height: 2rem;
}
h1 {
font-size: 3rem;
line-height: 4rem;
font-weight: 300;
}
h2 {
font-size: 2.5rem;
line-height: 3rem;
margin-bottom: .9rem;
}
h3 {
font-weight: 300;
margin-bottom: .9rem;
font-size: 2.1rem;
line-height: 2.5rem;
}
h4 {
font-size: 1.6rem;
line-height: 2.2rem;
margin-bottom: 1.1rem;
}
h5 {
font-size: 1.3rem;
margin-bottom: 1rem;
}
h6 {
font-size: 1rem;
margin-bottom: .9rem;
}
p {
line-height: 1.5rem;
font-size: 1.1rem;
}
p:last-child {
margin-bottom: 0px;
}
/*.home-wrap h1,*/
.home-wrap h2,
.home-wrap h3,
.home-wrap h4,
.home-wrap h5,
.home-wrap p {
color: #ffffff;
/*font-family: 'roboto', sans-serif;*/
}
.text {
color: #333333;
}
.colorstext {
color: #f56363;
}
.coloricon i {
color: #f56363;
}
.colorsbg {
background: #f56363;
color: #ffffff;
}
.lightbg {
background-color: #f9f9f9;
}
.transition {
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
-ms-transition: all 300ms linear;
transition: all 300ms linear;
}
/*
Section
*/
.sections {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
overflow: hidden;
}
.sections.footer {
padding-bottom: 80px;
}
section .subtitle h5 {
margin-top: 10px;
font-size: 1.3rem;
font-family: 'roboto', sans-serif;
}
.parallax-section {
max-width: 100%;
color: #ffffff;
}
section .title-half h2 {
font-size: 3rem;
line-height: 4rem;
font-weight: 300;
margin-bottom: 1.4rem;
}
section .subtitle-half h5 {
font-weight: 100;
font-size: 17px;
}
.overlay {
background-color: rgba(0, 0, 0, .55);
width: 100%;
min-height:700px;
}
.overlay-fluid-block {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
}
.home-overlay-fluid {
background-color: rgba(41, 41, 41, 0.68);
width: 80%;
margin: auto;
}
.overlay-img {
background: rgba(0, 0, 0, 0.3);
width: 100%;
padding-top: 100px;
padding-bottom: 100px;
color: #ffffff;
}
.no-padding {
padding: 0 !important;
}
.fluid-blocks-col {
padding: 70px 40px 0 80px;
}
.fluid-blocks-col-right {
padding: 70px 80px 0 40px;
}
/*
Separator
*/
.separator {
height: 1px;
width: 150px;
margin: auto;
background: #f56363;
}
/*
Button
*/
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.disabled,
.btn-primary.disabled:hover {
color: #ffffff;
background-color: #f56363;
border-color: #f56363;
}
/*.btn-default:active, .btn-default:hover {
background: transparent;
}*/
/*
Extra height css
*/
.margin-top-20 {
margin-top: 20px;
}
.margin-bottom-20 {
margin-bottom: 20px;
}
.margin-top-40 {
margin-top: 40px;
}
.margin-bottom-40 {
margin-bottom: 40px;
}
.margin-top-60 {
margin-top: 60px;
}
.margin-80 {
margin-top: 80px;
margin-bottom: 80px;
}
.margin-bottom-60 {
margin-bottom: 60px;
}
.margin-top-80 {
margin-top: 80px;
}
.margin-bottom-80 {
margin-bottom: 80px;
}
.padding-top-20 {
padding-top: 1.33rem;
}
.padding-bottom-20 {
padding-bottom: 1.33rem;
}
.padding-top-40 {
padding-top: 2.66rem;
}
.padding-bottom-40 {
padding-bottom: 2.66rem;
}
.padding-top-60 {
padding-top: 5rem;
}
.padding-bottom-60 {
padding-bottom: 5rem;
}
.padding-bottom-0 {
padding-bottom: 0;
}
/*padding*/
.padding-twenty {
padding: 10px 0;
}
.padding-fourty {
padding: 20px 0;
}
.padding-sixty {
padding: 30px 0;
}
.padding-eighty {
padding: 40px 0;
}
h1 span {
color: #f56363;
font-weight: 400;
}
/*for placeholder changes*/
/*input::-webkit-input-placeholder {
color: #CACACA;
font-size: 18px;
}
input::-moz-placeholder {
color: #CACACA;
font-size: 18px;
}
input:-ms-input-placeholder {
color: #CACACA;
font-size: 18px;
}
textarea::-webkit-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
textarea::-moz-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
textarea::-ms-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
*/
/* For Our Global CSSS */
.scroll-down{
margin-top:100px;
text-transform:uppercase;
text-align:center;
}
.scroll-down h5{
font-size:18px;
font-family: 'nexa_boldregular';
color:#f1f1f1;
letter-spacing:2px;
}
.scroll-down a{
font-size:50px;
color:#f1f1f1;
transition:.3s ease-in-out;
-webkit-transition:.3s ease-in-out;
-moz-transition:.3s ease-in-out;
}
.scroll-down a:hover{
color:red;
}
.heading {
margin-bottom: 4rem;
}
.heading h3{
font-size:45px;
text-transform:uppercase;
letter-spacing:2px;
}
.heading p{
line-height:40px;
}
/* For Menu Section */
.navbar-default {
background-color: transparent;
border-color: #e7e7e7;
margin:0 auto;
}
.navbar-default .navbar-nav>li>a {
color: #f1f1f1;
text-transform: uppercase;
padding-top:45px;
padding-bottom:45px;
font-size:20px;
font-family:'nexa_lightregular';
letter-spacing:2px;
line-height:0;
}
.navbar-default .navbar-nav>.active>a {
color: #f1f1f1;
background-color: transparent;
}
.navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus{
color: red;
background-color: transparent;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
color: red;
background-color: transparent;
}
.navbar-nav {
text-align: center;
}
.navbar-toggle {
background-color:#fff;
border:0;
border-radius:0;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #000;
}
.menu-bg{
background:#474747;
}
/* For Home Section */
.home{
background: url(../images/header-bg.jpg) no-repeat center top fixed;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
width: 100%;
overflow: hidden;
}
.home-details{
margin-top:150px;
color:#f1f1f1;
text-transform:uppercase;
}
.home-details .logo{
margin-bottom:50px;
}
.home-details .home-title h1{
font-size:60px;
font-family: 'nexa_lightregular';
letter-spacing:1px;
}
.home-details .home-title h1 span{
font-family: 'nexa_boldregular';
color:#f1f1f1;
}
/* For About Section */
.about-content{
margin-top:40px;
}
.about-content .signature{
margin-top:50px;
}
/* For Portfolio Section */
.portfolio{
background: url(../images/portfolio-bg.jpg) no-repeat center top fixed;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
width: 100%;
overflow: hidden;
}
.portfolio .title h3{
color:#f1f1f1;
}
.portfolio-wrapper{
width:100%;
margin-left:-20px;
text-align:center;
}
.portfolio-item {
display:inline-block;
overflow:hidden;
width:17%;
margin-left:20px;
margin-bottom:20px;
}
.portfolio-details{
width:100%;
}
.portfolio-details img{
width:100%;
}
/* For Contact Section */
.contact-details{
text-transform:uppercase;
}
.contact-details .contact-category{
margin-top:30px;
}
.contact-details .contact-category h4{
font-size:25px;
font-family:'nexa_boldregular';
}
.contact-details .contact-category .mail h2{
font-size:50px;
font-family:'nexa_lightregular';
}
.contact-details .contact-category .phone h5{
font-size:40px;
font-family:'nexa_lightregular';
}
.contact-details .contact-category .social a {
font-size: 26px;
color: #202020;
border: 2px solid #202020;
border-radius: 100%;
height: 45px;
width: 45px;
margin: 10px;
line-height: 45px;
text-align: center;
display: inline-block;
transition:.3s ease-in-out;
-webkit-transition:.3s ease-in-out;
-moz-transition:.3s ease-in-out;
}
.contact-details .contact-category .social a :hover{
color:red;
}
/* For Footer Section */
.copyright{
border-top:1px solid #bebebe;
padding:30px 0;
}
.copyright p{
color:#bebebe;
font-size:16px;
text-transform:uppercase;
font-family:'nexa_lightregular';
} | assets/css/style.css | Author's custom styles
========================================================================== */
html,
body {
background-color: #ffffff;
font-size: 20px;
color: #202020;
width: 100%;
padding: 0;
margin-left: 0;
margin-right: 0;
font-family: 'open_sanslight';
font-weight: 300;
}
/*==========================================
PRE LOADER
==========================================*/
.preloader {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #fefefe;
z-index: 99999;
height: 100%;
width: 100%;
overflow: hidden !important;
}
.loaded {
width: 60px;
height: 60px;
position: absolute;
left: 50%;
top: 50%;
background-image: url(../images/loading.gif);
background-repeat: no-repeat;
background-position: center;
-moz-background-size: cover;
background-size: cover;
margin: -20px 0 0 -20px;
}
img {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag: none;
user-drag: none;
}
a,
a:hover,
a:active,
a:focus {
text-decoration: none;
outline: none;
}
a,
button,
a span {
-webkit-transition: 0.2s ease-in-out;
-o-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}
.btn.extra-width {
padding: 13px 40px;
}
.btn:focus,
.btn:active {
outline: inherit;
}
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* direction: rtl;*/
}
p {
margin: 0 0 15px;
}
.clear {
clear: both;
}
ol,
ul {
list-style: none;
padding: 0;
}
img {
max-width: 100%;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
outline: none;
}
.form-control {
border: 1px solid rgba(0, 0, 0, 0.08);
font-size: 16px;
height: 45px;
}
.form-control:focus {
border-color: #f56363;
}
h1,
h2,
h3 {
/*font-family: 'Lane', sans-serif;*/
font-weight: 300;
margin: 0;
}
h4,
h5 {
/*font-family: 'roboto', sans-serif;*/
font-weight: 300;
margin: 0;
line-height: 2rem;
}
h1 {
font-size: 3rem;
line-height: 4rem;
font-weight: 300;
}
h2 {
font-size: 2.5rem;
line-height: 3rem;
margin-bottom: .9rem;
}
h3 {
font-weight: 300;
margin-bottom: .9rem;
font-size: 2.1rem;
line-height: 2.5rem;
}
h4 {
font-size: 1.6rem;
line-height: 2.2rem;
margin-bottom: 1.1rem;
}
h5 {
font-size: 1.3rem;
margin-bottom: 1rem;
}
h6 {
font-size: 1rem;
margin-bottom: .9rem;
}
p {
line-height: 1.5rem;
font-size: 1.1rem;
}
p:last-child {
margin-bottom: 0px;
}
/*.home-wrap h1,*/
.home-wrap h2,
.home-wrap h3,
.home-wrap h4,
.home-wrap h5,
.home-wrap p {
color: #ffffff;
/*font-family: 'roboto', sans-serif;*/
}
.text {
color: #333333;
}
.colorstext {
color: #f56363;
}
.coloricon i {
color: #f56363;
}
.colorsbg {
background: #f56363;
color: #ffffff;
}
.lightbg {
background-color: #f9f9f9;
}
.transition {
-webkit-transition: all 300ms linear;
-moz-transition: all 300ms linear;
-o-transition: all 300ms linear;
-ms-transition: all 300ms linear;
transition: all 300ms linear;
}
/*
Section
*/
.sections {
padding-top: 100px;
padding-bottom: 100px;
position: relative;
overflow: hidden;
}
.sections.footer {
padding-bottom: 80px;
}
section .subtitle h5 {
margin-top: 10px;
font-size: 1.3rem;
font-family: 'roboto', sans-serif;
}
.parallax-section {
max-width: 100%;
color: #ffffff;
}
section .title-half h2 {
font-size: 3rem;
line-height: 4rem;
font-weight: 300;
margin-bottom: 1.4rem;
}
section .subtitle-half h5 {
font-weight: 100;
font-size: 17px;
}
.overlay {
background-color: rgba(0, 0, 0, .55);
width: 100%;
min-height:700px;
}
.overlay-fluid-block {
background-color: rgba(0, 0, 0, 0.5);
width: 100%;
}
.home-overlay-fluid {
background-color: rgba(41, 41, 41, 0.68);
width: 80%;
margin: auto;
}
.overlay-img {
background: rgba(0, 0, 0, 0.3);
width: 100%;
padding-top: 100px;
padding-bottom: 100px;
color: #ffffff;
}
.no-padding {
padding: 0 !important;
}
.fluid-blocks-col {
padding: 70px 40px 0 80px;
}
.fluid-blocks-col-right {
padding: 70px 80px 0 40px;
}
/*
Separator
*/
.separator {
height: 1px;
width: 150px;
margin: auto;
background: #f56363;
}
/*
Button
*/
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.btn-primary.focus,
.btn-primary:focus,
.btn-primary.disabled,
.btn-primary.disabled:hover {
color: #ffffff;
background-color: #f56363;
border-color: #f56363;
}
/*.btn-default:active, .btn-default:hover {
background: transparent;
}*/
/*
Extra height css
*/
.margin-top-20 {
margin-top: 20px;
}
.margin-bottom-20 {
margin-bottom: 20px;
}
.margin-top-40 {
margin-top: 40px;
}
.margin-bottom-40 {
margin-bottom: 40px;
}
.margin-top-60 {
margin-top: 60px;
}
.margin-80 {
margin-top: 80px;
margin-bottom: 80px;
}
.margin-bottom-60 {
margin-bottom: 60px;
}
.margin-top-80 {
margin-top: 80px;
}
.margin-bottom-80 {
margin-bottom: 80px;
}
.padding-top-20 {
padding-top: 1.33rem;
}
.padding-bottom-20 {
padding-bottom: 1.33rem;
}
.padding-top-40 {
padding-top: 2.66rem;
}
.padding-bottom-40 {
padding-bottom: 2.66rem;
}
.padding-top-60 {
padding-top: 5rem;
}
.padding-bottom-60 {
padding-bottom: 5rem;
}
.padding-bottom-0 {
padding-bottom: 0;
}
/*padding*/
.padding-twenty {
padding: 10px 0;
}
.padding-fourty {
padding: 20px 0;
}
.padding-sixty {
padding: 30px 0;
}
.padding-eighty {
padding: 40px 0;
}
h1 span {
color: #f56363;
font-weight: 400;
}
/*for placeholder changes*/
/*input::-webkit-input-placeholder {
color: #CACACA;
font-size: 18px;
}
input::-moz-placeholder {
color: #CACACA;
font-size: 18px;
}
input:-ms-input-placeholder {
color: #CACACA;
font-size: 18px;
}
textarea::-webkit-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
textarea::-moz-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
textarea::-ms-input-placeholder
{
color: #CACACA;
font-size: 18px;
text-align:center;
}
*/
/* For Our Global CSSS */
.scroll-down{
margin-top:100px;
text-transform:uppercase;
text-align:center;
}
.scroll-down h5{
font-size:18px;
font-family: 'nexa_boldregular';
color:#f1f1f1;
letter-spacing:2px;
}
.scroll-down a{
font-size:50px;
color:#f1f1f1;
transition:.3s ease-in-out;
-webkit-transition:.3s ease-in-out;
-moz-transition:.3s ease-in-out;
}
.scroll-down a:hover{
color:red;
}
.heading {
margin-bottom: 4rem;
}
.heading h3{
font-size:45px;
text-transform:uppercase;
letter-spacing:2px;
}
.heading p{
line-height:40px;
}
/* For Menu Section */
.navbar-default {
background-color: transparent;
border-color: #e7e7e7;
margin:0 auto;
}
.navbar-default .navbar-nav>li>a {
color: #f1f1f1;
text-transform: uppercase;
padding-top:45px;
padding-bottom:45px;
font-size:20px;
font-family:'nexa_lightregular';
letter-spacing:2px;
line-height:0;
}
.navbar-default .navbar-nav>.active>a {
color: #f1f1f1;
background-color: transparent;
}
.navbar-default .navbar-nav>.active>a:hover, .navbar-default .navbar-nav>.active>a:focus{
color: red;
background-color: transparent;
}
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus {
color: red;
background-color: transparent;
}
.navbar-nav {
text-align: center;
}
.navbar-toggle {
background-color:#fff;
border:0;
border-radius:0;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #000;
}
.menu-bg{
background:#474747;
}
/* For Home Section */
.home{
background: url(../images/header-bg.jpg) no-repeat center top fixed;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
width: 100%;
overflow: hidden;
}
.home-details{
margin-top:150px;
color:#f1f1f1;
text-transform:uppercase;
}
.home-details .logo{
margin-bottom:50px;
}
.home-details .home-title h1{
font-size:60px;
font-family: 'nexa_lightregular';
letter-spacing:1px;
}
.home-details .home-title h1 span{
font-family: 'nexa_boldregular';
color:#f1f1f1;
}
/* For About Section */
.about-content{
margin-top:40px;
}
.about-content .signature{
margin-top:50px;
}
/* For Portfolio Section */
.portfolio{
background: url(../images/portfolio-bg.jpg) no-repeat center top fixed;
background-size: cover;
-moz-background-size: cover;
-webkit-background-size: cover;
-o-background-size: cover;
width: 100%;
overflow: hidden;
}
.portfolio .title h3{
color:#f1f1f1;
}
.portfolio-wrapper{
width:100%;
margin-left:-20px;
text-align:center;
}
.portfolio-item {
display:inline-block;
overflow:hidden;
width:17%;
margin-left:20px;
margin-bottom:20px;
}
.portfolio-details{
width:100%;
}
.portfolio-details img{
width:100%;
}
/* For Contact Section */
.contact-details{
text-transform:uppercase;
}
.contact-details .contact-category{
margin-top:30px;
}
.contact-details .contact-category h4{
font-size:25px;
font-family:'nexa_boldregular';
}
.contact-details .contact-category .mail h2{
font-size:50px;
font-family:'nexa_lightregular';
}
.contact-details .contact-category .phone h5{
font-size:40px;
font-family:'nexa_lightregular';
}
.contact-details .contact-category .social a {
font-size: 26px;
color: #202020;
border: 2px solid #202020;
border-radius: 100%;
height: 45px;
width: 45px;
margin: 10px;
line-height: 45px;
text-align: center;
display: inline-block;
transition:.3s ease-in-out;
-webkit-transition:.3s ease-in-out;
-moz-transition:.3s ease-in-out;
}
.contact-details .contact-category .social a :hover{
color:red;
}
/* For Footer Section */
.copyright{
border-top:1px solid #bebebe;
padding:30px 0;
}
.copyright p{
color:#bebebe;
font-size:16px;
text-transform:uppercase;
font-family:'nexa_lightregular';
} | 0.403449 | 0.102844 |
body {
background-color: #000000;
background-image: url("data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
text-align: left;
margin-left: 50px;
margin-right: 50px;
}
h1 {
text-align: center;
border-bottom: 3px solid green;
}
h2 {
color: WHITE;
border-top: 3px solid green;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
border-bottom: 3px solid green;
}
h3 {
color: WHITE;
border-top: 3px solid green;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
border-bottom: 3px solid green;
}
h4 {
position: sticky;
text-align: left;
color: limegreen;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
h5 {
text-align: center;
text-size-adjust: 38;
border-bottom: green;
text-align: center;
color: WHITE;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
table {
font-family: "Times New Roman", Times, serif;
border-right: 4px solid green;
border-left: 4px solid green;
border-top: 4px solid green;
border-bottom: 4px solid green;
}
th {
color: WHITE;
border-left: 2px solid green;
border-right: 2px solid green;
}
td {
color: gold;
border-left: 2px solid green;
border-right: 2px solid green;
border-top: 2px solid green;
border-bottom: 2px solid green;
}
p {
color: gold;
text-size-adjust: 22px;
}
ul {
color: gold;
}
label {
color: gold;
}
svg {
fill: rgb(5, 138, 0);
}
form{
text-align: center;
}
.navigation {
padding: 10px 16px;
color: #34c76c;
}
.RLLogo {
float: left;
margin-right: 15px;
width: 300px;
height: 300px;
background-color: black;
border-radius: 5px;
padding: 1em;
}
.art {
float: left;
margin-right: 15px;
width: 400px;
height: 325px;
border-radius: 5px;
padding: 1em;
}
.AboutIMG {
float: left;
margin-right: 15px;
width: 200px;
height: 325px;
border-radius: 5px;
padding: 1em;
}
.caption {
background-color: rgb(63, 0, 0);
padding: 10px;
color: #fff;
} | style.css | body {
background-color: #000000;
background-image: url("data:image/svg+xml,%3Csvg width='24' height='40' viewBox='0 0 24 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40c5.523 0 10-4.477 10-10V0C4.477 0 0 4.477 0 10v30zm22 0c-5.523 0-10-4.477-10-10V0c5.523 0 10 4.477 10 10v30z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
text-align: left;
margin-left: 50px;
margin-right: 50px;
}
h1 {
text-align: center;
border-bottom: 3px solid green;
}
h2 {
color: WHITE;
border-top: 3px solid green;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
border-bottom: 3px solid green;
}
h3 {
color: WHITE;
border-top: 3px solid green;
font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
border-bottom: 3px solid green;
}
h4 {
position: sticky;
text-align: left;
color: limegreen;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
h5 {
text-align: center;
text-size-adjust: 38;
border-bottom: green;
text-align: center;
color: WHITE;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
table {
font-family: "Times New Roman", Times, serif;
border-right: 4px solid green;
border-left: 4px solid green;
border-top: 4px solid green;
border-bottom: 4px solid green;
}
th {
color: WHITE;
border-left: 2px solid green;
border-right: 2px solid green;
}
td {
color: gold;
border-left: 2px solid green;
border-right: 2px solid green;
border-top: 2px solid green;
border-bottom: 2px solid green;
}
p {
color: gold;
text-size-adjust: 22px;
}
ul {
color: gold;
}
label {
color: gold;
}
svg {
fill: rgb(5, 138, 0);
}
form{
text-align: center;
}
.navigation {
padding: 10px 16px;
color: #34c76c;
}
.RLLogo {
float: left;
margin-right: 15px;
width: 300px;
height: 300px;
background-color: black;
border-radius: 5px;
padding: 1em;
}
.art {
float: left;
margin-right: 15px;
width: 400px;
height: 325px;
border-radius: 5px;
padding: 1em;
}
.AboutIMG {
float: left;
margin-right: 15px;
width: 200px;
height: 325px;
border-radius: 5px;
padding: 1em;
}
.caption {
background-color: rgb(63, 0, 0);
padding: 10px;
color: #fff;
} | 0.520984 | 0.129899 |
.education {
background-image: url("newframe.png");
background-size: cover;
padding-bottom: 40px;
float: left;
width: 100%;
height: 850px;
margin-bottom: 20px;
}
.skills {
margin-top: 60px;
padding-top: 40px;
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
border-bottom: 10px solid white;
}
.welcome {
padding-top: 90px;
}
.projects {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.projects h1 , p {
padding-left: 50px;
}
.certifications {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.extra-curricular {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.content {
padding-top: 10px;
padding-left: 50px;
padding-right: 100px;
padding-bottom: 10px;
}
.welcome img {
/* box-sizing: border-box; */
image-resolution: 200px;
padding: 50px 50px;
}
.title img {
width: 25%;
padding: 10px 20px;
}
.welcome {
background-image: url("back2.jpeg");
background-size: cover;
color: white;
margin-bottom: 40px;
}
.content {
padding: 50px 100px;
}
p {
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 25px;
width: 50%;
font-weight: normal;
}
h3 {
font-size: 30px;
text-align: left;
}
h1 {
font-style: normal;
}
.photo {
float: right;
margin-bottom: 50px;
padding-right: 50px;
}
.top-wrapper p , h1 {
padding-left: 10px;
}
.e1 {
float: right;
width: 45%;
height: 620px;
padding-right: 50px;
}
header li {
list-style: none;
float: left;
}
header{
background-color: #26d0c9;
color: #fff;
height: 90px;
position: fixed;
width: 100%;
}
.header-logo{
float: left;
font-size: 36px;
padding: 10px 40px;
}
.header-list li{
float: left;
padding: 33px 20px;
}
.header-list {
padding-left:60px;
}
.projects h1 , p {
padding-left: 10px;
}
.btn {
padding: 20px 44px;
color: white;
display: inline-block;
opacity: 0.8;
border-radius: 4px;
text-align: center;
}
.btn:hover {
opacity: 1;
}
.fa {
margin-right: 10px;
}
.github {
background-color: grey;
}
.linkedin {
background-color: #3b5998;
margin-right: 10px;
}
.mail {
background-color: #ee5555;
}
footer a {
width: 22%;
}
.btn {
padding-left: 10px;
}
.welcome p {
font-size: 30px;
} | stylesheet.css | .education {
background-image: url("newframe.png");
background-size: cover;
padding-bottom: 40px;
float: left;
width: 100%;
height: 850px;
margin-bottom: 20px;
}
.skills {
margin-top: 60px;
padding-top: 40px;
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
border-bottom: 10px solid white;
}
.welcome {
padding-top: 90px;
}
.projects {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.projects h1 , p {
padding-left: 50px;
}
.certifications {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.extra-curricular {
background-image: url("newframe.png");
background-size: cover;
margin-bottom: 20px;
}
.content {
padding-top: 10px;
padding-left: 50px;
padding-right: 100px;
padding-bottom: 10px;
}
.welcome img {
/* box-sizing: border-box; */
image-resolution: 200px;
padding: 50px 50px;
}
.title img {
width: 25%;
padding: 10px 20px;
}
.welcome {
background-image: url("back2.jpeg");
background-size: cover;
color: white;
margin-bottom: 40px;
}
.content {
padding: 50px 100px;
}
p {
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 25px;
width: 50%;
font-weight: normal;
}
h3 {
font-size: 30px;
text-align: left;
}
h1 {
font-style: normal;
}
.photo {
float: right;
margin-bottom: 50px;
padding-right: 50px;
}
.top-wrapper p , h1 {
padding-left: 10px;
}
.e1 {
float: right;
width: 45%;
height: 620px;
padding-right: 50px;
}
header li {
list-style: none;
float: left;
}
header{
background-color: #26d0c9;
color: #fff;
height: 90px;
position: fixed;
width: 100%;
}
.header-logo{
float: left;
font-size: 36px;
padding: 10px 40px;
}
.header-list li{
float: left;
padding: 33px 20px;
}
.header-list {
padding-left:60px;
}
.projects h1 , p {
padding-left: 10px;
}
.btn {
padding: 20px 44px;
color: white;
display: inline-block;
opacity: 0.8;
border-radius: 4px;
text-align: center;
}
.btn:hover {
opacity: 1;
}
.fa {
margin-right: 10px;
}
.github {
background-color: grey;
}
.linkedin {
background-color: #3b5998;
margin-right: 10px;
}
.mail {
background-color: #ee5555;
}
footer a {
width: 22%;
}
.btn {
padding-left: 10px;
}
.welcome p {
font-size: 30px;
} | 0.400749 | 0.129733 |
html {
overflow-y:hidden;
}
body {
padding:1em;
}
h1 {
margin-bottom:0.5em;
}
.yui3-ss-event-log-widget ul {
max-height:8em;
}
#control-buttons {
padding: 0.5em;
margin: 0.5em 0;
background-color: #eee;
border-radius: 10px;
}
#control-buttons input {
max-width: 11em;
}
#file-backup-open {
visibility:hidden;
position:absolute;
}
#backup-explorer {
white-space:nowrap;
}
.ss-smugmug-backup-pane {
display:inline-block;
vertical-align:top;
overflow-y:auto;
}
.ss-smugmug-backup-structure-pane {
width:20em;
}
.ss-smugmug-backup-node-pane {
margin-left:1em;
padding-bottom:4em;
}
.ss-field-list .field-title {
padding:0.5em 1.5em 0.5em 0;
vertical-align:top;
min-width: 10em;
font-weight:bold;
text-align:right;
}
.ss-field-list .field-value {
padding:0.5em 0;
vertical-align:top;
width:100%;
}
.ss-field-list .field-value input[type="text"] {
width: 80%;
max-width: 50em;
}
.ss-field-list .alert {
margin-bottom:0;
}
.ss-collapsable-section > dt, .ss-collapsable-section > dd {
overflow:hidden;
width:auto;
}
.ss-collapsable-section > dt {
}
.ss-collapsable-section > dd {
margin-bottom: 1.5em;
padding-left: 3em;
}
.CodeMirror {
height:auto;
font-size:14px;
margin-right:1em;
color: #555555;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.CodeMirror-focused {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.CodeMirror-scroll {
max-height:20em;
width:100%;
}
.colour-swatch {
width: 28px;
height: 28px;
display: inline-block;
vertical-align: middle;
border: 1px solid black;
border-radius: 4px;
}
.field-node-feature-image .smugmug-image {
max-width: 500px;
max-height: 230px;
}
.smugmug-images li {
display: inline-block;
vertical-align: top;
width:150px;
height:150px;
margin-right:8px;
margin-bottom:8px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
} | src/backup.css | html {
overflow-y:hidden;
}
body {
padding:1em;
}
h1 {
margin-bottom:0.5em;
}
.yui3-ss-event-log-widget ul {
max-height:8em;
}
#control-buttons {
padding: 0.5em;
margin: 0.5em 0;
background-color: #eee;
border-radius: 10px;
}
#control-buttons input {
max-width: 11em;
}
#file-backup-open {
visibility:hidden;
position:absolute;
}
#backup-explorer {
white-space:nowrap;
}
.ss-smugmug-backup-pane {
display:inline-block;
vertical-align:top;
overflow-y:auto;
}
.ss-smugmug-backup-structure-pane {
width:20em;
}
.ss-smugmug-backup-node-pane {
margin-left:1em;
padding-bottom:4em;
}
.ss-field-list .field-title {
padding:0.5em 1.5em 0.5em 0;
vertical-align:top;
min-width: 10em;
font-weight:bold;
text-align:right;
}
.ss-field-list .field-value {
padding:0.5em 0;
vertical-align:top;
width:100%;
}
.ss-field-list .field-value input[type="text"] {
width: 80%;
max-width: 50em;
}
.ss-field-list .alert {
margin-bottom:0;
}
.ss-collapsable-section > dt, .ss-collapsable-section > dd {
overflow:hidden;
width:auto;
}
.ss-collapsable-section > dt {
}
.ss-collapsable-section > dd {
margin-bottom: 1.5em;
padding-left: 3em;
}
.CodeMirror {
height:auto;
font-size:14px;
margin-right:1em;
color: #555555;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.CodeMirror-focused {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.CodeMirror-scroll {
max-height:20em;
width:100%;
}
.colour-swatch {
width: 28px;
height: 28px;
display: inline-block;
vertical-align: middle;
border: 1px solid black;
border-radius: 4px;
}
.field-node-feature-image .smugmug-image {
max-width: 500px;
max-height: 230px;
}
.smugmug-images li {
display: inline-block;
vertical-align: top;
width:150px;
height:150px;
margin-right:8px;
margin-bottom:8px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
} | 0.341363 | 0.111725 |
#placeholder {
margin-top: 13%;
}
h1 {
text-align: center;
font-family: "Roboto";
font-weight: 100;
font-size: 1900%;
line-height: 0%;
color: #FFFDF2 ;
}
h5 {
line-height: 1%;
text-align: center;
font-weight: lighter;
font-size: 125%;
color: #D5D3D5 ;
margin-bottom: 5%;
}
input[type="text"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1%;
}
input[type="password"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 2%;
}
a {
color: #E8E8E8;
text-decoration: none;
}
input[type="submit"] {
font-weight: 300;
text-align: center;
height: 40px;
font-size: 1.3em;
margin-left: 47%;
color: #DCD9D2;
background-color: #444349;
width: 6%;
border-radius: 6px;
}
#sign_up {
font-weight: 300;
text-align: center;
margin-left: 45.5%;
color: #DCD9D2;
font-size: 1.7em;
height: 50px;
background-color: #444349;
width: 9%;
border-radius: 6px;
margin-top: 3.5%;
margin-bottom: 3.5%;
}
.layout-header {
display: none;
}
/*---------------------------------------------------------------------*/
/*CUBE*/
/*---------------------------------------------------------------------*/
/*#placeholder {
margin-top: 13%;
}
h1 {
text-align: center;
font-weight: lighter;
font-style: italic;
font-size: 1500%;
line-height: 0%;
color: #1C1C1C ;
}
h5 {
line-height: 1%;
text-align: center;
font-weight: lighter;
font-size: 125%;
color: #747474 ;
margin-bottom: 6%;
}
input[type="text"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1%;
}
input[type="password"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1.5%;
}
a {
color: #E8E8E8;
text-decoration: none;
}
input[type="submit"] {
font-weight: lighter;
text-align: center;
height: 40px;
font-size: 1.1em;
margin-left: 47%;
color: #E8E8E8;
background-color: #656565;
width: 6%;
border-radius: 6px;
}
#sign_up {
font-weight: lighter;
text-align: center;
margin-left: 46.5%;
color: #E8E8E8;
font-size: 1.3em;
height: 45px;
background-color: #656565;
width: 7%;
border-radius: 6px;
margin-top: 3.5%;
margin-bottom: 3.5%;
}
#selections {
display: none;
}*/ | public/css/homepage.css |
#placeholder {
margin-top: 13%;
}
h1 {
text-align: center;
font-family: "Roboto";
font-weight: 100;
font-size: 1900%;
line-height: 0%;
color: #FFFDF2 ;
}
h5 {
line-height: 1%;
text-align: center;
font-weight: lighter;
font-size: 125%;
color: #D5D3D5 ;
margin-bottom: 5%;
}
input[type="text"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1%;
}
input[type="password"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 2%;
}
a {
color: #E8E8E8;
text-decoration: none;
}
input[type="submit"] {
font-weight: 300;
text-align: center;
height: 40px;
font-size: 1.3em;
margin-left: 47%;
color: #DCD9D2;
background-color: #444349;
width: 6%;
border-radius: 6px;
}
#sign_up {
font-weight: 300;
text-align: center;
margin-left: 45.5%;
color: #DCD9D2;
font-size: 1.7em;
height: 50px;
background-color: #444349;
width: 9%;
border-radius: 6px;
margin-top: 3.5%;
margin-bottom: 3.5%;
}
.layout-header {
display: none;
}
/*---------------------------------------------------------------------*/
/*CUBE*/
/*---------------------------------------------------------------------*/
/*#placeholder {
margin-top: 13%;
}
h1 {
text-align: center;
font-weight: lighter;
font-style: italic;
font-size: 1500%;
line-height: 0%;
color: #1C1C1C ;
}
h5 {
line-height: 1%;
text-align: center;
font-weight: lighter;
font-size: 125%;
color: #747474 ;
margin-bottom: 6%;
}
input[type="text"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1%;
}
input[type="password"] {
height: 25px;
margin-left: 44.5%;
text-align: center;
font-size: 1.1em;
width: 11%;
border-radius: 6px;
margin-bottom: 1.5%;
}
a {
color: #E8E8E8;
text-decoration: none;
}
input[type="submit"] {
font-weight: lighter;
text-align: center;
height: 40px;
font-size: 1.1em;
margin-left: 47%;
color: #E8E8E8;
background-color: #656565;
width: 6%;
border-radius: 6px;
}
#sign_up {
font-weight: lighter;
text-align: center;
margin-left: 46.5%;
color: #E8E8E8;
font-size: 1.3em;
height: 45px;
background-color: #656565;
width: 7%;
border-radius: 6px;
margin-top: 3.5%;
margin-bottom: 3.5%;
}
#selections {
display: none;
}*/ | 0.289773 | 0.076167 |